Compare commits
No commits in common. "13ac36c60f9317bdcdf64e0b29e4bb4c8b09e7f1" and "fc3df5a162f568d89429dd6c6410d0fbc87f6183" have entirely different histories.
13ac36c60f
...
fc3df5a162
|
@ -263,26 +263,6 @@
|
||||||
<td style="width: 180px">{{ item.SPECIAL_TYPE_NAME }}</td>
|
<td style="width: 180px">{{ item.SPECIAL_TYPE_NAME }}</td>
|
||||||
<th style="width: 150px">操作项目</th>
|
<th style="width: 150px">操作项目</th>
|
||||||
<td>{{ item.OPERATION_TYPE_NAME }}</td>
|
<td>{{ item.OPERATION_TYPE_NAME }}</td>
|
||||||
<th style="width: 100px">证书照片</th>
|
|
||||||
<td>
|
|
||||||
<span>
|
|
||||||
<div class="img-flex">
|
|
||||||
<viewer>
|
|
||||||
<img
|
|
||||||
:src="config.fileUrl + item.FILEPATH"
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
style="object-fit: cover;">
|
|
||||||
<img
|
|
||||||
v-if="item.FILEPATH_BACK"
|
|
||||||
:src="config.fileUrl + item.FILEPATH_BACK"
|
|
||||||
width="40"
|
|
||||||
height="40"
|
|
||||||
style="object-fit: cover;">
|
|
||||||
</viewer>
|
|
||||||
</div>
|
|
||||||
</span>
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<th>特种作业证书编号</th>
|
<th>特种作业证书编号</th>
|
||||||
|
|
|
@ -419,6 +419,11 @@ export default {
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
const treeData = this.listTransTree(JSON.parse(data.zTreeNodes), 'id', 'pId', 'nodes')
|
const treeData = this.listTransTree(JSON.parse(data.zTreeNodes), 'id', 'pId', 'nodes')
|
||||||
this.treeData = this.removeEmptyChildren(treeData)
|
this.treeData = this.removeEmptyChildren(treeData)
|
||||||
|
this.treeData.push({
|
||||||
|
id: '0',
|
||||||
|
name: '无',
|
||||||
|
nodes: []
|
||||||
|
})
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
|
@ -539,6 +539,11 @@ export default {
|
||||||
).then((data) => {
|
).then((data) => {
|
||||||
const treeData = this.listTransTree(JSON.parse(data.zTreeNodes), 'id', 'pId', 'nodes')
|
const treeData = this.listTransTree(JSON.parse(data.zTreeNodes), 'id', 'pId', 'nodes')
|
||||||
this.treeData = this.removeEmptyChildren(treeData)
|
this.treeData = this.removeEmptyChildren(treeData)
|
||||||
|
this.treeData.push({
|
||||||
|
id: '0',
|
||||||
|
name: '无',
|
||||||
|
nodes: []
|
||||||
|
})
|
||||||
console.log(this.treeData)
|
console.log(this.treeData)
|
||||||
}).catch((e) => {
|
}).catch((e) => {
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue