n20-common-lib 2.11.14 → 2.11.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -301,14 +301,7 @@
|
|
|
301
301
|
</span>
|
|
302
302
|
</cl-dialog>
|
|
303
303
|
<!-- 选择审批人 -->
|
|
304
|
-
<cl-dialog
|
|
305
|
-
v-drag
|
|
306
|
-
:visible.sync="setSpr"
|
|
307
|
-
:title="'设置审批节点/审批人' | $lc"
|
|
308
|
-
width="1100px"
|
|
309
|
-
append-to-body
|
|
310
|
-
top="7.5vh"
|
|
311
|
-
>
|
|
304
|
+
<cl-dialog v-drag :visible.sync="setSpr" :title="'设置下一步' | $lc" width="1100px" append-to-body top="7.5vh">
|
|
312
305
|
<selectSpr :select-spr-list="selectSprList" @close="setSpr = false" @confirm="selectSprListFn" />
|
|
313
306
|
</cl-dialog>
|
|
314
307
|
</div>
|
|
@@ -535,6 +528,7 @@ export default {
|
|
|
535
528
|
console.log(data)
|
|
536
529
|
this.nextEgwOutgoingNodeId = data.nextEgwOutgoingNodeId
|
|
537
530
|
this.nextNodeApproveUnos = data.nextNodeApproveUnos
|
|
531
|
+
this.setSpr = false
|
|
538
532
|
this.checkFlowFn()
|
|
539
533
|
},
|
|
540
534
|
async getIsShowUploadWidget() {
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
@select="sltChange"
|
|
12
12
|
@select-all="sltChange"
|
|
13
13
|
>
|
|
14
|
-
<el-table-column header-align="center" align="center" :label="'
|
|
14
|
+
<el-table-column header-align="center" align="center" :label="'审批节点' | $lc">
|
|
15
15
|
<template slot-scope="scope">
|
|
16
16
|
<el-radio v-model="nextEgwOutgoingNodeId" :label="scope.row.nodeId" @change="sltChange(scope.row)">{{
|
|
17
17
|
scope.row.nodeName
|
|
@@ -41,9 +41,9 @@
|
|
|
41
41
|
header-align="center"
|
|
42
42
|
align="center"
|
|
43
43
|
/>
|
|
44
|
-
<el-table-column prop="uno" :label="'
|
|
45
|
-
<el-table-column prop="uname" :label="'
|
|
46
|
-
<el-table-column prop="deptName" :label="'
|
|
44
|
+
<el-table-column prop="uno" :label="'审批人编号' | $lc" header-align="center" align="center" />
|
|
45
|
+
<el-table-column prop="uname" :label="'审批人名称' | $lc" header-align="center" align="center" />
|
|
46
|
+
<el-table-column prop="deptName" :label="'审批人所属部门' | $lc" header-align="center" align="center" />
|
|
47
47
|
</el-table>
|
|
48
48
|
</div>
|
|
49
49
|
<template slot="footer">
|