Browse Source

2026-05-20

工单申请记录页面上传附件时串单
master
fengyuan_yang 3 weeks ago
parent
commit
149c1c8c94
  1. 12
      src/views/modules/tooling/searchToolApply.vue

12
src/views/modules/tooling/searchToolApply.vue

@ -448,7 +448,7 @@
</el-form>
</el-tab-pane>
<el-tab-pane label="附件信息" name="down">
<oss-components ref="oss1" height="25vh" :visibleFlag="dataForm.status === '草稿' || (dataForm.status === '审批中' && operatorFlag)" :dataList="fileList" label="附件" :columns="ossColumns" :order-ref1="currentRow.site" :order-ref2="currentRow.applyNo"></oss-components>
<oss-components ref="oss1" height="25vh" :visibleFlag="dataForm.status === '草稿' || (dataForm.status === '审批中' && operatorFlag)" :dataList="fileList" label="附件" :columns="ossColumns" :order-ref1="dataForm.site" :order-ref2="dataForm.applyNo"></oss-components>
</el-tab-pane>
</el-tabs>
<el-footer style="height:35px;margin-top:15px;text-align:center">
@ -642,7 +642,7 @@
</el-form>
</el-tab-pane>
<el-tab-pane label="附件信息" name="down">
<oss-components ref="oss2" height="25vh" :dataList="fileList" :visibleFlag="dataForm.status === '草稿' || (dataForm.status === '审批中' && operatorFlag)" label="附件" :columns="ossColumns" :order-ref1="currentRow.site" :order-ref2="currentRow.applyNo"></oss-components>
<oss-components ref="oss2" height="25vh" :dataList="fileList" :visibleFlag="dataForm.status === '草稿' || (dataForm.status === '审批中' && operatorFlag)" label="附件" :columns="ossColumns" :order-ref1="dataForm.site" :order-ref2="dataForm.applyNo"></oss-components>
</el-tab-pane>
</el-tabs>
<el-footer style="height:35px;margin-top:15px;text-align:center">
@ -986,7 +986,7 @@
</el-form>
</el-tab-pane>
<el-tab-pane label="附件信息" name="down">
<oss-components ref="oss3" height="25vh" :readonly="visibleD" :dataList="fileList" label="附件" :columns="ossColumns" :order-ref1="currentRow.site" :order-ref2="currentRow.applyNo"></oss-components>
<oss-components ref="oss3" height="25vh" :readonly="visibleD" :dataList="fileList" label="附件" :columns="ossColumns" :order-ref1="dataForm.site" :order-ref2="dataForm.applyNo"></oss-components>
</el-tab-pane>
</el-tabs>
<el-footer style="height:35px;margin-top:15px;text-align:center">
@ -2577,6 +2577,8 @@ export default {
//
editModal(row) {
this.currentRow = JSON.parse(JSON.stringify(row));
this.currentRow2 = row;
this.getNodeAuthority(row)
this.checkSuperAdmin()
this.dataForm = {
@ -2621,6 +2623,8 @@ export default {
})
},
detail(row) {
this.currentRow = JSON.parse(JSON.stringify(row));
this.currentRow2 = row;
this.getNodeAuthority(row)
this.checkSuperAdmin()
this.dataForm = {
@ -2665,6 +2669,8 @@ export default {
})
},
editModalU(row) {
this.currentRow = JSON.parse(JSON.stringify(row));
this.currentRow2 = row;
this.getNodeAuthority(row)
this.dataForm = {
site: row.site,

Loading…
Cancel
Save