eoss-mobiles 0.2.68 → 0.2.70
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/lib/checkbox.js +0 -2
- package/lib/eoss-mobile.common.js +672 -351
- package/lib/esign.js +3 -3
- package/lib/field.js +7 -3
- package/lib/flow-btn.js +3 -7
- package/lib/flow-list.js +0 -2
- package/lib/flow.js +77 -43
- package/lib/form.js +2 -5
- package/lib/index.js +1 -1
- package/lib/picker.js +127 -41
- package/lib/radio.js +0 -2
- package/lib/retrial-auth.js +0 -2
- package/lib/selector.js +422 -224
- package/lib/table-column.js +0 -2
- package/lib/table.js +0 -2
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/lib/theme-chalk/picker.css +1 -1
- package/lib/theme-chalk/selector.css +1 -1
- package/lib/theme-chalk/tree.css +1 -1
- package/lib/utils/http.js +0 -1
- package/lib/utils/util.js +0 -1
- package/package.json +1 -1
- package/packages/esign/src/main.vue +1 -1
- package/packages/field/src/main.vue +2 -1
- package/packages/flow/src/components/Handle.vue +316 -303
- package/packages/flow/src/components/Opinion.vue +5 -1
- package/packages/flow/src/components/Reject.vue +3 -0
- package/packages/flow/src/components/StartFlow.vue +3 -0
- package/packages/flow/src/components/taskUnionExamine.vue +3 -0
- package/packages/flow/src/flowMix.js +0 -1
- package/packages/flow-btn/src/main.vue +0 -1
- package/packages/form/src/main.vue +163 -166
- package/packages/picker/src/main.vue +48 -2
- package/packages/selector/src/main.vue +64 -25
- package/packages/selector/src/selector-field.vue +6 -2
- package/packages/selector/src/selector-tree.vue +48 -3
- package/packages/selector/src/tree.vue +120 -41
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/lib/picker.css +1 -1
- package/packages/theme-chalk/lib/selector.css +1 -1
- package/packages/theme-chalk/lib/tree.css +1 -1
- package/packages/theme-chalk/src/picker.scss +15 -11
- package/packages/theme-chalk/src/selector.scss +11 -1
- package/packages/theme-chalk/src/tree.scss +14 -2
- package/src/index.js +1 -1
- package/src/utils/http.js +0 -1
- package/src/utils/util.js +0 -1
|
@@ -17,6 +17,9 @@
|
|
|
17
17
|
:code="processObj.attachedCode"
|
|
18
18
|
:ownId="pendingId"
|
|
19
19
|
:esign="esign"
|
|
20
|
+
:esignLineWidth="
|
|
21
|
+
$attrs['esign-line-width'] || $attrs['esignLineWidth']
|
|
22
|
+
"
|
|
20
23
|
@onInputOpintion="onInputOpintion"
|
|
21
24
|
:isOpinionRequired="isOpinionRequired"
|
|
22
25
|
:disabled="isBanInputOpinion != 0"
|
|
@@ -30,10 +33,7 @@
|
|
|
30
33
|
:isHiddenOftenOpinion="isHiddenOftenOpinion == 1 ? false : true"
|
|
31
34
|
></Opinion>
|
|
32
35
|
<!-- 审核内容 -->
|
|
33
|
-
<div
|
|
34
|
-
class="special-box input-box"
|
|
35
|
-
v-if=" typeCode != 'fenyue'"
|
|
36
|
-
>
|
|
36
|
+
<div class="special-box input-box" v-if="typeCode != 'fenyue'">
|
|
37
37
|
<!-- 加签 -->
|
|
38
38
|
<div
|
|
39
39
|
class="item"
|
|
@@ -88,65 +88,65 @@
|
|
|
88
88
|
</em-input>
|
|
89
89
|
</div>
|
|
90
90
|
<div v-if="isSpecial && typeCode != 'fenyue'">
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
label="减少办理人"
|
|
94
|
-
v-if="form.isRemoveSign === '1'"
|
|
95
|
-
>
|
|
96
|
-
<em-selector
|
|
91
|
+
<div
|
|
92
|
+
class="item item-user"
|
|
97
93
|
label="减少办理人"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
94
|
+
v-if="form.isRemoveSign === '1'"
|
|
95
|
+
>
|
|
96
|
+
<em-selector
|
|
97
|
+
label="减少办理人"
|
|
98
|
+
:isAllCheck="isAllCheck"
|
|
99
|
+
required
|
|
100
|
+
:paddingTop="paddingTop"
|
|
101
|
+
multiple
|
|
102
|
+
:baseUrl="apiBaseUrl"
|
|
103
|
+
:objType="objType"
|
|
104
|
+
v-model="removeSignUserSelectList"
|
|
105
|
+
@change="disposeAppUser($event, 'removeSignUserSelectList')"
|
|
106
|
+
/>
|
|
107
|
+
</div>
|
|
108
|
+
<!-- 下一步所有相关操作-->
|
|
109
|
+
<div
|
|
110
|
+
v-if="
|
|
111
|
+
form.isRemoveSign !== '1' &&
|
|
112
|
+
form.isAddSign !== '1' &&
|
|
113
|
+
!isHiddenNextStepInfo
|
|
114
|
+
"
|
|
115
|
+
>
|
|
116
|
+
<!-- <div
|
|
117
117
|
@click="isNextBox = !isNextBox"
|
|
118
118
|
v-if="!isReject"
|
|
119
119
|
class="shrink-btn"
|
|
120
120
|
>
|
|
121
121
|
{{ isNextBox ? '收起下一步操作和节点' : '展开下一步操作和节点' }}
|
|
122
122
|
</div> -->
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
>
|
|
129
|
-
<em-input
|
|
130
|
-
value="下步操作"
|
|
131
|
-
label="下步操作"
|
|
132
|
-
required
|
|
133
|
-
class="em-flow-next-steps"
|
|
134
|
-
:disabled="true"
|
|
135
|
-
label-position="top"
|
|
123
|
+
<div class="next-box" v-show="isNextBox || isReject">
|
|
124
|
+
<!-- 下一步操作 -->
|
|
125
|
+
<div
|
|
126
|
+
class="item next-step"
|
|
127
|
+
v-if="!isHiddenNextStepInfo && isChooseNextNode == 1"
|
|
136
128
|
>
|
|
137
|
-
<
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
129
|
+
<em-input
|
|
130
|
+
value="下步操作"
|
|
131
|
+
label="下步操作"
|
|
132
|
+
required
|
|
133
|
+
class="em-flow-next-steps"
|
|
134
|
+
:disabled="true"
|
|
135
|
+
label-position="top"
|
|
136
|
+
>
|
|
137
|
+
<template slot="input">
|
|
138
|
+
<span
|
|
139
|
+
class="em-flow-tag"
|
|
140
|
+
:class="{ 'em-flow-tag-active': tagKey === item.key }"
|
|
141
|
+
@click="changeNextOperate(item)"
|
|
142
|
+
v-for="item in taskOperations"
|
|
143
|
+
:key="item.key"
|
|
144
|
+
>
|
|
145
|
+
{{ item.value }}
|
|
146
|
+
</span>
|
|
147
|
+
</template>
|
|
148
|
+
</em-input>
|
|
149
|
+
<!-- <em-picker
|
|
150
150
|
title="下步操作"
|
|
151
151
|
label="下步操作"
|
|
152
152
|
required
|
|
@@ -158,265 +158,273 @@
|
|
|
158
158
|
label-key="value"
|
|
159
159
|
@confirm="changeNextOperate"
|
|
160
160
|
/> -->
|
|
161
|
+
</div>
|
|
162
|
+
<!-- 下步节点 -->
|
|
163
|
+
<div
|
|
164
|
+
class="item"
|
|
165
|
+
v-if="
|
|
166
|
+
nodeList && nodeList.length > 0 && !isReject && isShowNode
|
|
167
|
+
"
|
|
168
|
+
>
|
|
169
|
+
<em-picker
|
|
170
|
+
title="下步节点"
|
|
171
|
+
label="下步节点"
|
|
172
|
+
required
|
|
173
|
+
show-toolbar
|
|
174
|
+
v-model="form.nextNodeName"
|
|
175
|
+
label-width="100%"
|
|
176
|
+
:columns="nodeList"
|
|
177
|
+
value-key="nodeId"
|
|
178
|
+
label-key="nodeName"
|
|
179
|
+
@confirm="onConfirmNextNode"
|
|
180
|
+
/>
|
|
181
|
+
</div>
|
|
161
182
|
</div>
|
|
162
|
-
<!--
|
|
163
|
-
<div
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
183
|
+
<!-- 处理方式提示文字 -->
|
|
184
|
+
<div class="item" v-if="countersignaturetypeCode">
|
|
185
|
+
<van-field
|
|
186
|
+
v-model="countersignaturetypeText"
|
|
187
|
+
label="处理方式"
|
|
188
|
+
:disabled="true"
|
|
189
|
+
/>
|
|
190
|
+
</div>
|
|
191
|
+
<!-- 下一步办理人 -->
|
|
192
|
+
<div class="item item-user" v-if="isNextUser">
|
|
193
|
+
<em-selector
|
|
194
|
+
:multiple="!isRadio"
|
|
195
|
+
v-model="nextUserSelectList"
|
|
196
|
+
:objType="objType"
|
|
197
|
+
:isAllCheck="isAllCheck"
|
|
172
198
|
required
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
199
|
+
:paddingTop="paddingTop"
|
|
200
|
+
:nextUserList="nextUserList"
|
|
201
|
+
:baseUrl="apiBaseUrl"
|
|
202
|
+
tabs="employee,persongroup"
|
|
203
|
+
:disabled="
|
|
204
|
+
!isCustomUser || isCurrentNodeForbiddenChangeCandidate == 1
|
|
205
|
+
"
|
|
206
|
+
:selectDisabled="isCurrentNodeForbiddenChangeCandidate == 1"
|
|
207
|
+
placeholder="请选择下步办理人"
|
|
208
|
+
:param="{
|
|
209
|
+
pid: pid
|
|
210
|
+
}"
|
|
211
|
+
label="下步办理人"
|
|
212
|
+
@change="disposeAppUser($event, 'nextUserSelectList')"
|
|
180
213
|
/>
|
|
181
214
|
</div>
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
:objType="'enterprise'"
|
|
242
|
-
:tabs="'department,myemployee'"
|
|
243
|
-
:param="{
|
|
244
|
-
pid: orgId
|
|
245
|
-
}"
|
|
246
|
-
:baseUrl="apiBaseUrl"
|
|
247
|
-
:isOtherUnit="false"
|
|
248
|
-
:label="currentOrgName ? currentOrgName : '本单位'"
|
|
249
|
-
@change="disposeAppUnit($event, 'nextCurrentOrgObjSelect')"
|
|
250
|
-
/>
|
|
251
|
-
</div>
|
|
252
|
-
<!-- 外单位 -->
|
|
253
|
-
<!-- v-if="isHideOtherOrg" -->
|
|
254
|
-
<div class="item" v-if="isHideOtherOrg">
|
|
255
|
-
<em-selector
|
|
256
|
-
v-model="nextOtherOrgObjSelect"
|
|
257
|
-
multiple
|
|
258
|
-
:isAllCheck="isAllCheck"
|
|
259
|
-
:paddingTop="paddingTop"
|
|
260
|
-
:objType="'enterprise'"
|
|
261
|
-
:param="{
|
|
262
|
-
pid: 'root'
|
|
263
|
-
}"
|
|
264
|
-
:tabs="'enterprise'"
|
|
265
|
-
:baseUrl="apiBaseUrl"
|
|
266
|
-
:isOtherUnit="true"
|
|
267
|
-
:label="otherOrgName ? otherOrgName : '外单位'"
|
|
268
|
-
@change="disposeAppUnit($event, 'nextOtherOrgObjSelect')"
|
|
269
|
-
/>
|
|
270
|
-
</div>
|
|
271
|
-
<!-- 主办 -->
|
|
272
|
-
<div class="item" v-if="isMainSubProcess && isNodeShowProcess">
|
|
273
|
-
<!-- <van-field
|
|
215
|
+
<!-- 办理角色-->
|
|
216
|
+
<div class="item" v-if="isDealRole">
|
|
217
|
+
<em-input
|
|
218
|
+
value="办理角色"
|
|
219
|
+
label="办理角色"
|
|
220
|
+
:disabled="true"
|
|
221
|
+
placeholder="请选择"
|
|
222
|
+
/>
|
|
223
|
+
</div>
|
|
224
|
+
<!-- 办理对象-->
|
|
225
|
+
<div class="item" v-if="isDealObject">
|
|
226
|
+
<em-input
|
|
227
|
+
value="办理对象"
|
|
228
|
+
label="办理对象"
|
|
229
|
+
:disabled="true"
|
|
230
|
+
placeholder="请选择"
|
|
231
|
+
/>
|
|
232
|
+
</div>
|
|
233
|
+
<!-- 本单位-->
|
|
234
|
+
<!-- v-if="isHideCurrentOrg" -->
|
|
235
|
+
<div class="item" v-if="isHideCurrentOrg">
|
|
236
|
+
<em-selector
|
|
237
|
+
v-model="nextCurrentOrgObjSelect"
|
|
238
|
+
multiple
|
|
239
|
+
:isAllCheck="isAllCheck"
|
|
240
|
+
:paddingTop="paddingTop"
|
|
241
|
+
:objType="'enterprise'"
|
|
242
|
+
:tabs="'department,myemployee'"
|
|
243
|
+
:param="{
|
|
244
|
+
pid: orgId
|
|
245
|
+
}"
|
|
246
|
+
:baseUrl="apiBaseUrl"
|
|
247
|
+
:isOtherUnit="false"
|
|
248
|
+
:label="currentOrgName ? currentOrgName : '本单位'"
|
|
249
|
+
@change="disposeAppUnit($event, 'nextCurrentOrgObjSelect')"
|
|
250
|
+
/>
|
|
251
|
+
</div>
|
|
252
|
+
<!-- 外单位 -->
|
|
253
|
+
<!-- v-if="isHideOtherOrg" -->
|
|
254
|
+
<div class="item" v-if="isHideOtherOrg">
|
|
255
|
+
<em-selector
|
|
256
|
+
v-model="nextOtherOrgObjSelect"
|
|
257
|
+
multiple
|
|
258
|
+
:isAllCheck="isAllCheck"
|
|
259
|
+
:paddingTop="paddingTop"
|
|
260
|
+
:objType="'enterprise'"
|
|
261
|
+
:param="{
|
|
262
|
+
pid: 'root'
|
|
263
|
+
}"
|
|
264
|
+
:tabs="'enterprise'"
|
|
265
|
+
:baseUrl="apiBaseUrl"
|
|
266
|
+
:isOtherUnit="true"
|
|
267
|
+
:label="otherOrgName ? otherOrgName : '外单位'"
|
|
268
|
+
@change="disposeAppUnit($event, 'nextOtherOrgObjSelect')"
|
|
269
|
+
/>
|
|
270
|
+
</div>
|
|
271
|
+
<!-- 主办 -->
|
|
272
|
+
<div class="item" v-if="isMainSubProcess && isNodeShowProcess">
|
|
273
|
+
<!-- <van-field
|
|
274
274
|
value="主办"
|
|
275
275
|
label="主办"
|
|
276
276
|
:disabled="true"
|
|
277
277
|
placeholder="请选择"
|
|
278
278
|
/> -->
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
279
|
+
<em-picker
|
|
280
|
+
v-model="form.mainSubId"
|
|
281
|
+
label="主办"
|
|
282
|
+
title="主办"
|
|
283
|
+
placeholder="请选择主办"
|
|
284
|
+
show-toolbar
|
|
285
|
+
:disabled="subProcessColumns.length == 0"
|
|
286
|
+
:columns="subProcessColumns"
|
|
287
|
+
/>
|
|
288
|
+
</div>
|
|
289
|
+
<!-- 办理说明 -->
|
|
290
|
+
<div class="item" v-if="isHandleExplain">
|
|
291
|
+
<van-field
|
|
292
|
+
value="办理说明"
|
|
293
|
+
label="办理说明"
|
|
294
|
+
:disabled="true"
|
|
295
|
+
placeholder="请选择"
|
|
296
|
+
/>
|
|
297
|
+
</div>
|
|
288
298
|
</div>
|
|
289
|
-
<!--
|
|
290
|
-
<div
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
299
|
+
<!-- 分阅 -->
|
|
300
|
+
<div
|
|
301
|
+
class="item"
|
|
302
|
+
v-if="
|
|
303
|
+
form.isRemoveSign !== '1' &&
|
|
304
|
+
form.isAddSign !== '1' &&
|
|
305
|
+
isTaskread
|
|
306
|
+
"
|
|
307
|
+
>
|
|
308
|
+
<div class="item item-user">
|
|
309
|
+
<em-selector
|
|
310
|
+
v-model="nextReadUserSelectList"
|
|
311
|
+
multiple
|
|
312
|
+
:isAllCheck="isAllCheck"
|
|
313
|
+
:objType="objType"
|
|
314
|
+
:param="{
|
|
315
|
+
pid: pid
|
|
316
|
+
}"
|
|
317
|
+
:paddingTop="paddingTop"
|
|
318
|
+
:baseUrl="apiBaseUrl"
|
|
319
|
+
tabs="employee,persongroup"
|
|
320
|
+
label="分阅用户"
|
|
321
|
+
@change="disposeAppUser($event, 'nextReadUserSelectList')"
|
|
322
|
+
/>
|
|
323
|
+
</div>
|
|
297
324
|
</div>
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
:isAllCheck="isAllCheck"
|
|
311
|
-
:objType="objType"
|
|
312
|
-
:param="{
|
|
313
|
-
pid: pid
|
|
314
|
-
}"
|
|
315
|
-
:paddingTop="paddingTop"
|
|
316
|
-
:baseUrl="apiBaseUrl"
|
|
317
|
-
tabs="employee,persongroup"
|
|
318
|
-
label="分阅用户"
|
|
319
|
-
@change="disposeAppUser($event, 'nextReadUserSelectList')"
|
|
320
|
-
/>
|
|
325
|
+
<!-- 限时办理 -->
|
|
326
|
+
<!-- v-if="isLimitedTimeHandling" -->
|
|
327
|
+
<div class="item" v-if="isLimitedTimeHandling">
|
|
328
|
+
<em-input name="radio" label="是否限时办理" :required="true">
|
|
329
|
+
<template slot="input">
|
|
330
|
+
<em-radio-group
|
|
331
|
+
v-model="form.isLimitedTime"
|
|
332
|
+
:data="isAddSignList"
|
|
333
|
+
direction="horizontal"
|
|
334
|
+
/>
|
|
335
|
+
</template>
|
|
336
|
+
</em-input>
|
|
321
337
|
</div>
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
<div class="day-text">天</div>
|
|
348
|
-
<div>
|
|
349
|
-
<em-input
|
|
350
|
-
:value="form.limitedTimeHour"
|
|
351
|
-
clickable
|
|
352
|
-
readonly
|
|
353
|
-
placeholder="请选择小时"
|
|
354
|
-
@click="openTimeList('limitedTimeHour')"
|
|
355
|
-
/>
|
|
356
|
-
</div>
|
|
357
|
-
<div class="day-text">时</div>
|
|
358
|
-
</div>
|
|
359
|
-
</template>
|
|
360
|
-
</em-input>
|
|
361
|
-
</div>
|
|
362
|
-
<div class="item item-limited-time" v-if="form.isLimitedTime === '1'">
|
|
363
|
-
<em-input name="radio" label="提前通知时间" :required="true">
|
|
364
|
-
<template slot="input">
|
|
365
|
-
<div class="item-limited-time-content">
|
|
366
|
-
<div>
|
|
367
|
-
<em-input
|
|
368
|
-
placeholder="请输入天数"
|
|
369
|
-
v-model="form.advanceNoticeDay"
|
|
370
|
-
type="digit"
|
|
371
|
-
/>
|
|
338
|
+
<div
|
|
339
|
+
class="item item-limited-time"
|
|
340
|
+
v-if="form.isLimitedTime === '1'"
|
|
341
|
+
>
|
|
342
|
+
<em-input name="radio" label="限时办理时间" :required="true">
|
|
343
|
+
<template slot="input">
|
|
344
|
+
<div class="item-limited-time-content">
|
|
345
|
+
<div>
|
|
346
|
+
<em-input
|
|
347
|
+
placeholder="请输入天数"
|
|
348
|
+
v-model="form.limitedTimeDay"
|
|
349
|
+
type="digit"
|
|
350
|
+
/>
|
|
351
|
+
</div>
|
|
352
|
+
<div class="day-text">天</div>
|
|
353
|
+
<div>
|
|
354
|
+
<em-input
|
|
355
|
+
:value="form.limitedTimeHour"
|
|
356
|
+
clickable
|
|
357
|
+
readonly
|
|
358
|
+
placeholder="请选择小时"
|
|
359
|
+
@click="openTimeList('limitedTimeHour')"
|
|
360
|
+
/>
|
|
361
|
+
</div>
|
|
362
|
+
<div class="day-text">时</div>
|
|
372
363
|
</div>
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
364
|
+
</template>
|
|
365
|
+
</em-input>
|
|
366
|
+
</div>
|
|
367
|
+
<div
|
|
368
|
+
class="item item-limited-time"
|
|
369
|
+
v-if="form.isLimitedTime === '1'"
|
|
370
|
+
>
|
|
371
|
+
<em-input name="radio" label="提前通知时间" :required="true">
|
|
372
|
+
<template slot="input">
|
|
373
|
+
<div class="item-limited-time-content">
|
|
374
|
+
<div>
|
|
375
|
+
<em-input
|
|
376
|
+
placeholder="请输入天数"
|
|
377
|
+
v-model="form.advanceNoticeDay"
|
|
378
|
+
type="digit"
|
|
379
|
+
/>
|
|
380
|
+
</div>
|
|
381
|
+
<div class="day-text">天</div>
|
|
382
|
+
<div>
|
|
383
|
+
<em-input
|
|
384
|
+
:value="form.advanceNoticeHour"
|
|
385
|
+
clickable
|
|
386
|
+
placeholder="请选择小时"
|
|
387
|
+
readonly
|
|
388
|
+
@click="openTimeList('advanceNoticeHour')"
|
|
389
|
+
/>
|
|
390
|
+
</div>
|
|
391
|
+
<div class="day-text">时</div>
|
|
382
392
|
</div>
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
></Message>
|
|
393
|
+
</template>
|
|
394
|
+
</em-input>
|
|
395
|
+
</div>
|
|
396
|
+
<van-popup v-model="showTimeList" round position="bottom">
|
|
397
|
+
<van-picker
|
|
398
|
+
show-toolbar
|
|
399
|
+
:columns="timeList"
|
|
400
|
+
@cancel="showTimeList = false"
|
|
401
|
+
@confirm="onConfirmTimeList"
|
|
402
|
+
/>
|
|
403
|
+
</van-popup>
|
|
404
|
+
<!-- 催办通知方式 -->
|
|
405
|
+
<div class="item-msg item-msg1" v-if="isLimitedTimeHandling">
|
|
406
|
+
<Message
|
|
407
|
+
ref="message"
|
|
408
|
+
:label="'催办通知方式'"
|
|
409
|
+
:code="'notification_type'"
|
|
410
|
+
:baseUrl="baseUrl"
|
|
411
|
+
@onInputMsg="onInputMsgUrge"
|
|
412
|
+
:required="true"
|
|
413
|
+
></Message>
|
|
414
|
+
</div>
|
|
415
|
+
<!-- 通知方式 -->
|
|
416
|
+
<div class="item-msg item-msg2">
|
|
417
|
+
<Message
|
|
418
|
+
ref="message"
|
|
419
|
+
:code="'notification_type'"
|
|
420
|
+
:baseUrl="baseUrl"
|
|
421
|
+
:defaultNotificationType="defaultNotificationType"
|
|
422
|
+
:defaultNotificationMsg="form.notificationMsg"
|
|
423
|
+
@onInputMsg="onInputMsg"
|
|
424
|
+
></Message>
|
|
425
|
+
</div>
|
|
417
426
|
</div>
|
|
418
427
|
</div>
|
|
419
|
-
</div>
|
|
420
428
|
</div>
|
|
421
429
|
<div v-if="isSubmitButtonShowAgreeAndDisagree" class="btn-list">
|
|
422
430
|
<div class="btn" @click="handleFlow = false">不同意</div>
|
|
@@ -492,7 +500,7 @@ export default {
|
|
|
492
500
|
showAppUnit: false, // 弹窗单位
|
|
493
501
|
handleFlow: true,
|
|
494
502
|
isReject: false,
|
|
495
|
-
opinionHandleExplainText:undefined,
|
|
503
|
+
opinionHandleExplainText: undefined,
|
|
496
504
|
isCurrentNodeForbiddenChangeCandidate: 0,
|
|
497
505
|
nodeFixedOpinionSelectList: [],
|
|
498
506
|
isChooseNextNode: 1, //是否展示下步操作
|
|
@@ -800,7 +808,7 @@ export default {
|
|
|
800
808
|
this.$toast('请选择办理人');
|
|
801
809
|
return;
|
|
802
810
|
}
|
|
803
|
-
if(this.form.isAddSign == '1' && !this.form.addSignUserId){
|
|
811
|
+
if (this.form.isAddSign == '1' && !this.form.addSignUserId) {
|
|
804
812
|
this.$toast('请选择办理人');
|
|
805
813
|
return;
|
|
806
814
|
}
|
|
@@ -844,7 +852,11 @@ export default {
|
|
|
844
852
|
this.$toast('请选择催办通知方式');
|
|
845
853
|
return;
|
|
846
854
|
}
|
|
847
|
-
if (
|
|
855
|
+
if (
|
|
856
|
+
this.isHideCurrentOrg &&
|
|
857
|
+
!this.form.nextCurrentOrgObjJson &&
|
|
858
|
+
this.form.isAddSign != '1'
|
|
859
|
+
) {
|
|
848
860
|
this.$toast(`请选择${this.currentOrgName || '本单位'}`);
|
|
849
861
|
return;
|
|
850
862
|
}
|
|
@@ -894,7 +906,7 @@ export default {
|
|
|
894
906
|
_that.form.isSubFlow = taskExamineInfo.isSubFlow;
|
|
895
907
|
_that.form.nodeId = taskExamineInfo.nodeId;
|
|
896
908
|
_that.form.userId = _that.userId || $.getStorage('userId');
|
|
897
|
-
_that.form.mobileKey = $.getStorage('deviceId') || '123'
|
|
909
|
+
_that.form.mobileKey = $.getStorage('deviceId') || '123';
|
|
898
910
|
_that.form.nextNodeId =
|
|
899
911
|
_that.form.nextOperate == 0 || _that.form.nextOperate == 1
|
|
900
912
|
? _that.form.nextNodeId || nodeInfoMapInfo.nodeExtAttr.defaultNextNode
|
|
@@ -1211,7 +1223,8 @@ export default {
|
|
|
1211
1223
|
));
|
|
1212
1224
|
that.nodeInfoMapInfo = nodeInfoMap;
|
|
1213
1225
|
// that.defaultNextNode = nodeInfoMap.nodeExtAttr.defaultNextNode;
|
|
1214
|
-
that.opinionHandleExplainText =
|
|
1226
|
+
that.opinionHandleExplainText =
|
|
1227
|
+
nodeInfoMap.nodeExtAttr.opinionHandleExplainText;
|
|
1215
1228
|
that.isCanAddSign = res.data.isCanAddSign;
|
|
1216
1229
|
if (that.isCanAddSign) {
|
|
1217
1230
|
that.form.isAddSign = '2';
|