|
@@ -29,7 +29,7 @@
|
|
|
</td>
|
|
|
<td class="title white" style="width: 100px">质量审核</td>
|
|
|
<td class="content" style="width: 450px;display:flex;border:0px;align-items:center;justify-content: center;">
|
|
|
- <div style="text-align: center;line-height: 50px;">{{ fqUser1 }} 时间: {{ shenheTime1 }}</div>
|
|
|
+ <div style="text-align: center;line-height: 50px;">{{ fqUserName1 }} 时间: {{ shenheTime1 }}</div>
|
|
|
<div class="btn" style="margin-right:1.1%" @click="addSubTable1">保存</div>
|
|
|
</td>
|
|
|
</tr>
|
|
@@ -63,7 +63,7 @@
|
|
|
<!-- <td class="content" style="width: 100px" colspan="2"></td> -->
|
|
|
<td class="title white" style="width: 100px">报告归档</td>
|
|
|
<td class="content" style="width: 450px;display:flex;border:0px;align-items:center;justify-content: center;">
|
|
|
- <div style="text-align: center;line-height: 50px;">{{ fqUser2 }} 时间: {{ shenheTime2 }}</div>
|
|
|
+ <div style="text-align: center;line-height: 50px;">{{ fqUserName2 }} 时间: {{ shenheTime2 }}</div>
|
|
|
<div class="btn" style="margin-right:1.1%" @click="addSubTable2">保存</div>
|
|
|
<!-- <input v-model="tableData2.shuruLeixing" style="text-align: center" /> -->
|
|
|
</td>
|
|
@@ -104,9 +104,9 @@ export default {
|
|
|
// excel: '',
|
|
|
disabled1: true,
|
|
|
disabled2: true,
|
|
|
- fqUser1: '',
|
|
|
+ fqUserName1: '',
|
|
|
shenheTime1: '',
|
|
|
- fqUser2: '',
|
|
|
+ fqUserName2: '',
|
|
|
shenheTime2: ''
|
|
|
}
|
|
|
},
|
|
@@ -119,12 +119,12 @@ export default {
|
|
|
if(newV && newV[0]){
|
|
|
if (newV[0].saveData != null) {
|
|
|
this.tableData1 = JSON.parse(newV[0].saveData)
|
|
|
- this.fqUser1 = newV[0].fqUser
|
|
|
+ this.fqUserName1 = newV[0].fqUserName
|
|
|
this.shenheTime1 = newV[0].shenheTime
|
|
|
}
|
|
|
if (newV[1].saveData != null) {
|
|
|
this.tableData2 = JSON.parse(newV[1].saveData)
|
|
|
- this.fqUser2 = newV[1].fqUser
|
|
|
+ this.fqUserName2 = newV[1].fqUserName
|
|
|
this.shenheTime2 = newV[1].shenheTime
|
|
|
}
|
|
|
if (newV[0].dangqian == true && newV[0].isUpdate == true) {
|