n20-common-lib 2.11.29 → 2.11.31
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
|
@@ -796,7 +796,7 @@ export default {
|
|
|
796
796
|
|
|
797
797
|
this.beforeFn(this.beforeReject, () => {
|
|
798
798
|
axios.post('/bems/activiti/admin/todo/reject', this.getParam()).then(({ data }) => {
|
|
799
|
-
this.thenMsg(data, $lc('驳回至发起人'))
|
|
799
|
+
this.thenMsg(data, this.authList.includes('refuse') ? $lc('拒绝') : $lc('驳回至发起人'))
|
|
800
800
|
})
|
|
801
801
|
})
|
|
802
802
|
},
|
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div>
|
|
3
|
-
<el-dialog
|
|
3
|
+
<el-dialog
|
|
4
|
+
:visible.sync="visible"
|
|
5
|
+
width="600px"
|
|
6
|
+
:title="'提交意见' | $lc"
|
|
7
|
+
@close="$emit('close')"
|
|
8
|
+
@closed="$emit('closed')"
|
|
9
|
+
@open="$emit('open')"
|
|
10
|
+
@opened="$emit('opened')"
|
|
11
|
+
>
|
|
4
12
|
<el-form style="margin-bottom: 50px">
|
|
5
13
|
<el-form-item :label="'请确认提交内容' | $lc">
|
|
6
14
|
<el-select v-model="reasonSelect" class="w-100p" @change="changeReasonSelect">
|