Merge branch 'nice' into develop
This commit is contained in:
commit
dae8c1b70e
2 changed files with 5 additions and 3 deletions
|
|
@ -284,7 +284,7 @@ async function fetchDataSigner() {
|
|||
subject.value = data.subjectDoc2;
|
||||
assignedPosition.value = data.assignedPosition;
|
||||
|
||||
nameOfWork.value = data.subjectDoc2[0];
|
||||
nameOfWork.value = data.subjectDoc2 ? data.subjectDoc2[0] : '';
|
||||
nameOfOwner.value = data.authorDoc2;
|
||||
position.value = data.assignedPosition;
|
||||
evaluationResult.value = data.evaluationResult;
|
||||
|
|
|
|||
|
|
@ -383,10 +383,12 @@ onMounted(async () => {
|
|||
</div>
|
||||
|
||||
<div v-else-if="col.name === 'agency'">
|
||||
<div class="text-html">{{ props.row.agency }}</div>
|
||||
<div class="text-html">
|
||||
{{ !props.row.agency ? "-" : props.row.agency }}
|
||||
</div>
|
||||
</div>
|
||||
<div v-else>
|
||||
{{ col.value ?? "-" }}
|
||||
{{ !col.value ? "-" : col.value }}
|
||||
</div>
|
||||
</q-td>
|
||||
</q-tr>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue