eoss-ui 0.7.81 → 0.7.82
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/eoss-ui.common.js +669 -652
- package/lib/flow-list.js +11 -12
- package/lib/flow.js +626 -608
- package/lib/index.js +1 -1
- package/lib/main.js +18 -18
- package/lib/theme-chalk/flow.css +1 -1
- package/lib/theme-chalk/index.css +1 -1
- package/package.json +1 -1
- package/packages/flow/src/component/Circulate.vue +2 -2
- package/packages/flow/src/component/CommonOpinions.vue +1 -0
- package/packages/flow/src/component/FileList.vue +1 -1
- package/packages/flow/src/component/FreeCirculation.vue +2 -2
- package/packages/flow/src/component/SendMsg.vue +2 -2
- package/packages/flow/src/component/taskUnionExamine.vue +2 -2
- package/packages/flow/src/main.vue +13 -4
- package/packages/flow/src/processForm.vue +2 -3
- package/packages/flow/src/reset.vue +1 -2
- package/packages/flow/src/selectUser.vue +49 -22
- package/packages/flow/src/startTaskRead.vue +1 -1
- package/packages/flow/src/supervise.vue +1 -1
- package/packages/flow/src/table.vue +58 -58
- package/packages/flow-list/src/main.vue +6 -6
- package/packages/main/src/simplicity/index.vue +1 -1
- package/packages/main/src/simplicityTop/index.vue +1 -1
- package/packages/theme-chalk/lib/flow.css +1 -1
- package/packages/theme-chalk/lib/index.css +1 -1
- package/packages/theme-chalk/src/flow.scss +6 -3
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
</el-form-item>
|
|
83
83
|
</el-form>
|
|
84
84
|
<div v-if="showBtn" style="text-align: right">
|
|
85
|
-
<el-button type="primary"
|
|
86
|
-
<el-button @click="quit"
|
|
85
|
+
<el-button type="primary" @click="subMit"> 确定 </el-button>
|
|
86
|
+
<el-button @click="quit" > 取消 </el-button>
|
|
87
87
|
</div>
|
|
88
88
|
</div>
|
|
89
89
|
</template>
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
</el-form-item>
|
|
36
36
|
</el-form>
|
|
37
37
|
<div style="text-align: right">
|
|
38
|
-
<el-button type="primary"
|
|
39
|
-
<el-button @click="quit"
|
|
38
|
+
<el-button type="primary" @click="subMit"> 确定 </el-button>
|
|
39
|
+
<el-button @click="quit" > 取消 </el-button>
|
|
40
40
|
</div>
|
|
41
41
|
</div>
|
|
42
42
|
</template>
|
|
@@ -81,10 +81,10 @@
|
|
|
81
81
|
</el-table>
|
|
82
82
|
<el-form-item>
|
|
83
83
|
<div style="text-align: right">
|
|
84
|
-
<el-button type="primary"
|
|
84
|
+
<el-button type="primary" @click="subMit">
|
|
85
85
|
确定
|
|
86
86
|
</el-button>
|
|
87
|
-
<el-button @click="quit"
|
|
87
|
+
<el-button @click="quit" > 取消 </el-button>
|
|
88
88
|
</div>
|
|
89
89
|
</el-form-item>
|
|
90
90
|
</el-form>
|
|
@@ -166,8 +166,8 @@
|
|
|
166
166
|
</el-form-item>
|
|
167
167
|
</el-form>
|
|
168
168
|
<div style="text-align: right">
|
|
169
|
-
<el-button type="primary"
|
|
170
|
-
<el-button @click="quit"
|
|
169
|
+
<el-button type="primary" @click="subMit"> 确定 </el-button>
|
|
170
|
+
<el-button @click="quit" > 取消 </el-button>
|
|
171
171
|
</div>
|
|
172
172
|
</div>
|
|
173
173
|
</template>
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
<el-button
|
|
292
292
|
slot="append"
|
|
293
293
|
v-show="isStartFlowChartView == 'true'"
|
|
294
|
-
icon="es-icon-
|
|
294
|
+
icon="es-icon-shu-jituan"
|
|
295
295
|
@click="
|
|
296
296
|
() => {
|
|
297
297
|
showFlowChart = true;
|
|
@@ -761,7 +761,7 @@
|
|
|
761
761
|
<span :class="showNews ? 'show' : 'sj'"></span>
|
|
762
762
|
</div>
|
|
763
763
|
<div v-if="showNews" ref="messagebox" style="transition: 1s">
|
|
764
|
-
<el-checkbox-group v-model="nextNode.notificationType">
|
|
764
|
+
<el-checkbox-group @change="handleChangeNotificationType" v-model="nextNode.notificationType">
|
|
765
765
|
<el-checkbox
|
|
766
766
|
v-for="item of newsList"
|
|
767
767
|
:key="item.cciValue"
|
|
@@ -794,7 +794,7 @@
|
|
|
794
794
|
font-size: 13px;
|
|
795
795
|
"
|
|
796
796
|
autosize
|
|
797
|
-
v-show="showNews"
|
|
797
|
+
v-show="showNews && nextNode.notificationType.length > 0"
|
|
798
798
|
type="textarea"
|
|
799
799
|
v-model="nextNode.notificationMsg"
|
|
800
800
|
:readonly="notificationMessageReadOnly"
|
|
@@ -1794,6 +1794,13 @@ export default {
|
|
|
1794
1794
|
this.processFormType = 'readTransfer';
|
|
1795
1795
|
this.handleVisible = true;
|
|
1796
1796
|
},
|
|
1797
|
+
handleChangeNotificationType(){
|
|
1798
|
+
if(this.nextNode.notificationType.length > 0){
|
|
1799
|
+
this.$nextTick(() => {
|
|
1800
|
+
this.$refs.esContent.scrollTop += this.$refs.messagebox.clientHeight;
|
|
1801
|
+
});
|
|
1802
|
+
}
|
|
1803
|
+
},
|
|
1797
1804
|
showMessage() {
|
|
1798
1805
|
this.showNews = !this.showNews;
|
|
1799
1806
|
if (!this.showNews) return;
|
|
@@ -3706,8 +3713,10 @@ export default {
|
|
|
3706
3713
|
this.$refs['nextNode'].validate(async (valid) => {
|
|
3707
3714
|
if (valid) {
|
|
3708
3715
|
if (this.isFlow) {
|
|
3709
|
-
if (this.isOpinionRequired && !this.$refs.commonOpinions.validate())
|
|
3716
|
+
if (this.isOpinionRequired && !this.$refs.commonOpinions.validate()){
|
|
3717
|
+
this.$message.warning('请输入审批意见');
|
|
3710
3718
|
return;
|
|
3719
|
+
}
|
|
3711
3720
|
if (this.directCreateCircularReadWhenFlowStarted) {
|
|
3712
3721
|
this.circulateVisible = true;
|
|
3713
3722
|
} else {
|
|
@@ -364,12 +364,11 @@
|
|
|
364
364
|
<div style="text-align: right">
|
|
365
365
|
<el-button
|
|
366
366
|
type="primary"
|
|
367
|
-
size="small"
|
|
368
367
|
@click="subProcess('nextNode')"
|
|
369
368
|
>
|
|
370
369
|
确认
|
|
371
370
|
</el-button>
|
|
372
|
-
<el-button
|
|
371
|
+
<el-button @click="quit"> 取消 </el-button>
|
|
373
372
|
</div>
|
|
374
373
|
</el-form-item>
|
|
375
374
|
</el-form>
|
|
@@ -487,7 +486,7 @@ export default {
|
|
|
487
486
|
},
|
|
488
487
|
labelPosition: {
|
|
489
488
|
type: String,
|
|
490
|
-
default: '
|
|
489
|
+
default: 'right'
|
|
491
490
|
},
|
|
492
491
|
formTitle: {
|
|
493
492
|
type: String,
|
|
@@ -226,12 +226,11 @@
|
|
|
226
226
|
<div style="text-align: right">
|
|
227
227
|
<el-button
|
|
228
228
|
type="primary"
|
|
229
|
-
size="small"
|
|
230
229
|
@click="subProcess('nextNode')"
|
|
231
230
|
>
|
|
232
231
|
确认
|
|
233
232
|
</el-button>
|
|
234
|
-
<el-button
|
|
233
|
+
<el-button @click="quit"> 取消 </el-button>
|
|
235
234
|
</div>
|
|
236
235
|
</el-form-item>
|
|
237
236
|
</el-form>
|
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="select-users">
|
|
3
|
-
<
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
3
|
+
<div v-if="showSelectUser">
|
|
4
|
+
<el-radio
|
|
5
|
+
v-model="newNextUser"
|
|
6
|
+
v-for="(item, index) of newRadioList"
|
|
7
|
+
v-show="newRadioList.length > 0 && !newMultiple && newPresetEdit != 0"
|
|
8
|
+
:disabled="isCurrentNodeForbiddenChangeCandidate == 1"
|
|
9
|
+
@change="cancelSelectUser(true)"
|
|
10
|
+
:key="index"
|
|
11
|
+
:label="item.id || item.showid"
|
|
12
|
+
>{{ item.name ? item.name : item.showname }}</el-radio
|
|
13
|
+
>
|
|
14
|
+
</div>
|
|
13
15
|
<el-checkbox-group
|
|
14
16
|
:disabled="isCurrentNodeForbiddenChangeCandidate == 1"
|
|
15
17
|
v-model="newNextUser"
|
|
@@ -110,7 +112,7 @@ export default {
|
|
|
110
112
|
tabs: {
|
|
111
113
|
type: Object
|
|
112
114
|
},
|
|
113
|
-
showTooltip:{
|
|
115
|
+
showTooltip: {
|
|
114
116
|
type: Boolean,
|
|
115
117
|
default: true
|
|
116
118
|
},
|
|
@@ -133,9 +135,9 @@ export default {
|
|
|
133
135
|
type: Boolean,
|
|
134
136
|
default: false
|
|
135
137
|
},
|
|
136
|
-
selectorTags:{
|
|
137
|
-
type:[Number,undefined],
|
|
138
|
-
default:2
|
|
138
|
+
selectorTags: {
|
|
139
|
+
type: [Number, undefined],
|
|
140
|
+
default: 2
|
|
139
141
|
},
|
|
140
142
|
isCustomUser: { type: Number, default: 1 },
|
|
141
143
|
isCurrentNodeForbiddenChangeCandidate: { type: Number, default: 0 },
|
|
@@ -188,7 +190,8 @@ export default {
|
|
|
188
190
|
return {
|
|
189
191
|
searchLoading: false,
|
|
190
192
|
newNextUser: [],
|
|
191
|
-
|
|
193
|
+
showSelectUser: true,
|
|
194
|
+
classify: true,
|
|
192
195
|
newOptions: [],
|
|
193
196
|
newSelectUserList: [],
|
|
194
197
|
url: handleInfo,
|
|
@@ -244,6 +247,7 @@ export default {
|
|
|
244
247
|
},
|
|
245
248
|
nextUser: {
|
|
246
249
|
handler(val) {
|
|
250
|
+
console.log(val, 'nextUser');
|
|
247
251
|
this.newNextUser = val;
|
|
248
252
|
},
|
|
249
253
|
deep: true,
|
|
@@ -279,7 +283,10 @@ export default {
|
|
|
279
283
|
}
|
|
280
284
|
},
|
|
281
285
|
mounted() {
|
|
282
|
-
this.classify =
|
|
286
|
+
this.classify =
|
|
287
|
+
util.getStorage('classify') != undefined
|
|
288
|
+
? util.getStorage('classify')
|
|
289
|
+
: true;
|
|
283
290
|
},
|
|
284
291
|
|
|
285
292
|
methods: {
|
|
@@ -395,16 +402,36 @@ export default {
|
|
|
395
402
|
this.newNextUser.push(item.showid);
|
|
396
403
|
});
|
|
397
404
|
} else {
|
|
405
|
+
console.log(val, this.newSelectUserList, 'aaaa');
|
|
398
406
|
if (this.newSelectUserList.length > 0) {
|
|
399
407
|
const { showid, showname } = this.newSelectUserList[0];
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
408
|
+
if (val[0]) {
|
|
409
|
+
console.log(val[0],'1111');
|
|
410
|
+
this.newOptions.push({
|
|
411
|
+
...this.newSelectUserList[0],
|
|
412
|
+
id: showid,
|
|
413
|
+
name: showname
|
|
414
|
+
});
|
|
415
|
+
this.newNextUser = showid;
|
|
416
|
+
} else {
|
|
417
|
+
console.log(val[0],'2222');
|
|
418
|
+
this.newOptions = [];
|
|
419
|
+
this.newNextUser = '';
|
|
420
|
+
this.showSelectUser = false;
|
|
421
|
+
setTimeout(() => {
|
|
422
|
+
this.showSelectUser = true;
|
|
423
|
+
}, 0);
|
|
424
|
+
}
|
|
425
|
+
}else{
|
|
426
|
+
this.newOptions = [];
|
|
427
|
+
this.newNextUser = '';
|
|
428
|
+
this.showSelectUser = false;
|
|
429
|
+
setTimeout(() => {
|
|
430
|
+
this.showSelectUser = true;
|
|
431
|
+
}, 0);
|
|
406
432
|
}
|
|
407
433
|
}
|
|
434
|
+
console.log(this.newNextUser, this.newOptions, 'bbb');
|
|
408
435
|
this.$emit('change', {
|
|
409
436
|
nextUser: this.newNextUser,
|
|
410
437
|
mixList: data,
|
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<el-table
|
|
3
|
-
:data="dataList"
|
|
4
|
-
border
|
|
5
|
-
stripe
|
|
6
|
-
style="width: 100%; margin-top: 10px"
|
|
7
|
-
>
|
|
8
|
-
<el-table-column
|
|
9
|
-
v-for="item of tableHead"
|
|
10
|
-
:key="item.id"
|
|
11
|
-
align="center"
|
|
12
|
-
:prop="item.prop"
|
|
13
|
-
:label="item.lable"
|
|
14
|
-
:width="item.prop != 'content' && 180"
|
|
15
|
-
v-bind="$attrs"
|
|
16
|
-
></el-table-column>
|
|
17
|
-
<el-table-column label="操作" width="100">
|
|
18
|
-
<template v-if="scope.row.userid" slot-scope="scope">
|
|
19
|
-
<el-button type="text" size="small" @click="handleClick(scope.row)"
|
|
20
|
-
>编辑</el-button
|
|
21
|
-
>
|
|
22
|
-
<el-button type="text" size="small" @click="delClick(scope.row)"
|
|
23
|
-
>删除</el-button
|
|
24
|
-
>
|
|
25
|
-
</template>
|
|
26
|
-
</el-table-column>
|
|
27
|
-
</el-table>
|
|
28
|
-
</template>
|
|
29
|
-
|
|
30
|
-
<script>
|
|
31
|
-
export default {
|
|
32
|
-
name: 'Table',
|
|
33
|
-
componentName: 'Table',
|
|
34
|
-
props: {
|
|
35
|
-
dataList: {
|
|
36
|
-
type: Array,
|
|
37
|
-
default: () => []
|
|
38
|
-
},
|
|
39
|
-
tableHead: {
|
|
40
|
-
type: Array,
|
|
41
|
-
default: () => [
|
|
42
|
-
{ id: 0, lable: '内容', prop: 'content' },
|
|
43
|
-
{ id: 1, lable: '用户', prop: 'username' }
|
|
44
|
-
]
|
|
45
|
-
}
|
|
46
|
-
},
|
|
47
|
-
methods: {
|
|
48
|
-
handleClick(val) {
|
|
49
|
-
this.$emit('upDateClick', val);
|
|
50
|
-
this.$emit('up-date-click', val);
|
|
51
|
-
},
|
|
52
|
-
delClick(val) {
|
|
53
|
-
this.$emit('delClick', val);
|
|
54
|
-
this.$emit('del-click', val);
|
|
55
|
-
}
|
|
56
|
-
}
|
|
57
|
-
};
|
|
58
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<el-table
|
|
3
|
+
:data="dataList"
|
|
4
|
+
border
|
|
5
|
+
stripe
|
|
6
|
+
style="width: 100%; margin-top: 10px"
|
|
7
|
+
>
|
|
8
|
+
<el-table-column
|
|
9
|
+
v-for="item of tableHead"
|
|
10
|
+
:key="item.id"
|
|
11
|
+
align="center"
|
|
12
|
+
:prop="item.prop"
|
|
13
|
+
:label="item.lable"
|
|
14
|
+
:width="item.prop != 'content' && 180"
|
|
15
|
+
v-bind="$attrs"
|
|
16
|
+
></el-table-column>
|
|
17
|
+
<el-table-column label="操作" width="100" align="center">
|
|
18
|
+
<template v-if="scope.row.userid" slot-scope="scope">
|
|
19
|
+
<el-button type="text" size="small" @click="handleClick(scope.row)"
|
|
20
|
+
>编辑</el-button
|
|
21
|
+
>
|
|
22
|
+
<el-button type="text" size="small" @click="delClick(scope.row)"
|
|
23
|
+
>删除</el-button
|
|
24
|
+
>
|
|
25
|
+
</template>
|
|
26
|
+
</el-table-column>
|
|
27
|
+
</el-table>
|
|
28
|
+
</template>
|
|
29
|
+
|
|
30
|
+
<script>
|
|
31
|
+
export default {
|
|
32
|
+
name: 'Table',
|
|
33
|
+
componentName: 'Table',
|
|
34
|
+
props: {
|
|
35
|
+
dataList: {
|
|
36
|
+
type: Array,
|
|
37
|
+
default: () => []
|
|
38
|
+
},
|
|
39
|
+
tableHead: {
|
|
40
|
+
type: Array,
|
|
41
|
+
default: () => [
|
|
42
|
+
{ id: 0, lable: '内容', prop: 'content' },
|
|
43
|
+
{ id: 1, lable: '用户', prop: 'username' }
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
methods: {
|
|
48
|
+
handleClick(val) {
|
|
49
|
+
this.$emit('upDateClick', val);
|
|
50
|
+
this.$emit('up-date-click', val);
|
|
51
|
+
},
|
|
52
|
+
delClick(val) {
|
|
53
|
+
this.$emit('delClick', val);
|
|
54
|
+
this.$emit('del-click', val);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
};
|
|
58
|
+
</script>
|
|
@@ -254,8 +254,8 @@ export default {
|
|
|
254
254
|
taskReadName: '', //非流程列表名称
|
|
255
255
|
options: [
|
|
256
256
|
{ label: '时间排序', value: '1' },
|
|
257
|
-
{ label: '部门排序', value: '2' }
|
|
258
|
-
{ label: '树形排序', value: '3' }
|
|
257
|
+
{ label: '部门排序', value: '2' }
|
|
258
|
+
// { label: '树形排序', value: '3' }
|
|
259
259
|
],
|
|
260
260
|
isShort: 0, //是否隐藏筛选
|
|
261
261
|
viewType: '1', //排序方式
|
|
@@ -363,10 +363,10 @@ export default {
|
|
|
363
363
|
value: 2,
|
|
364
364
|
name: '部门排序'
|
|
365
365
|
},
|
|
366
|
-
{
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
}
|
|
366
|
+
// {
|
|
367
|
+
// value: 3,
|
|
368
|
+
// name: '树形排序'
|
|
369
|
+
// }
|
|
370
370
|
]
|
|
371
371
|
}
|
|
372
372
|
]
|
|
@@ -1 +1 @@
|
|
|
1
|
-
@charset "UTF-8";.
|
|
1
|
+
@charset "UTF-8";.es-common-opinions,.es-fenyue-buttons,.es-flow-buttons,.es-flow-title,.es-opinion{padding:0 12px}.es-fenyue-buttons{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:horizontal;-webkit-box-direction:normal;-ms-flex-direction:row;flex-direction:row}.es-fenyue-buttons-yj{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-user-defined{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.es-user-defined .el-button--primary{-webkit-box-flex:1;-ms-flex:1;flex:1}.flow-chart-dialog .el-dialog__body{overflow:auto}.required .el-textarea__inner::-webkit-input-placeholder{color:red}.required .el-textarea__inner::-moz-placeholder{color:red}.required .el-textarea__inner:-ms-input-placeholder{color:red}.required .el-textarea__inner::-ms-input-placeholder{color:red}.required .el-textarea__inner::placeholder{color:red}.no-checked .el-checkbox__input{display:none!important}.es-reset-flow{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%}.es-reset-flow-form-box{-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto;margin-bottom:10px}.es-flow-content{height:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;padding-bottom:12px;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;position:relative}.es-flow-index{height:100%}.es-flow-index .em-flow-more-btn{display:block;width:100%}.es-flow-index .el-checkbox-group{display:contents}.es-flow-index .es-eidt-title{font-size:13px;color:#333;line-height:20px}.es-flow-index .es-flow-top .es-flow-title{height:40px;line-height:40px}.es-flow-index .es-flow-top .es-flow-title .es-icon{position:absolute;right:8px;top:4px}.es-flow-index .es-flow-top .es-opinion{display:-webkit-box;display:-ms-flexbox;display:flex;margin:8px 0;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.es-flow-index .es-flow-top .es-opinion .es-opinion-file{cursor:pointer;position:relative}.es-flow-index .es-flow-top .es-opinion .es-opinion-file .es-file-num{color:red}.es-flow-index .es-button-agree{width:calc(43% - 15px)}.es-flow-index .es-button-agree-save{margin-top:10px}.commonOpinion-set{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-orient:vertical;-webkit-box-direction:normal;-ms-flex-direction:column;flex-direction:column;height:100%}.commonOpinion-set .el-table__body-wrapper{-webkit-box-flex:1;-ms-flex:1;flex:1}.es-flow-index-shrink{width:24px}.es-flow-index-shrink img{cursor:pointer;width:24px;height:24px}.es-flow-btn:hover{background-color:#f5f5f5;color:#1890ff}.es-flow-btn:hover ::v-deep .el-popover{padding:12px 0!important}.es-flow-form .el-checkbox-group{display:contents}.es-flow-index .el-input-group--prepend>.el-input__inner,.es-flow-index .select-process>.el-input__inner{display:none!important}.es-flow-form .el-textarea:first-child,.es-flow-index .el-textarea{width:100%;margin-bottom:10px!important}.es-flow-form .es-opinions .el-select,.es-flow-index .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-select .el-input{width:100%;height:40px}.es-flow-index .process .el-select{width:calc(100% + 40px)!important}.es-flow-index .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-index .select-process .el-input-group__append{height:40px}.es-flow-index .hide-flow-char .el-input-group__append{padding:0}.es-flow-index button.el-button.sub.el-button--primary.el-button--medium{width:calc(100% - 85px)}.es-flow-index .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-index .demo-dynamic .el-select{width:100%!important}.es-flow-index .demo-dynamic .select-process .el-select,.es-flow-index .demo-dynamic .selectUser,.es-flow-index.task-union-examine .el-select{width:calc(100% + 40px)!important}.es-flow-index .el-input.el-input-group.el-input-group--append.el-input-group--prepend{margin:0!important}.es-flow-index .demo-dynamic{-webkit-box-flex:1;-ms-flex:1;flex:1;margin-top:10px}.es-flow-index .es-footer-btn{margin-top:10px}.es-flow-index .es-footer-btn .el-button+.el-button{margin:10px 10px 0 0}.es-flow-index .el-input.is-disabled .el-input__inner{color:#606266}.es-flow-index .es-flow-btn{margin-right:10px}.es-flow-index .es-info{padding:0 12px;-webkit-box-flex:1;-ms-flex:1;flex:1;overflow-y:auto;overflow-x:hidden}.es-flow-index .form-left .el-form-item{margin-bottom:22px!important}.es-flow-index .es-info .el-form-item{margin-bottom:0}.es-flow-index .es-info::-webkit-scrollbar{width:5px}.es-flow-index .news{display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between;cursor:pointer;padding:10px 0}.es-flow-index .news .sj,.show{width:10px;height:10px;border-right:1px solid #000;border-bottom:1px solid #000;margin-right:10px;-webkit-transform:rotate(-135deg);transform:rotate(-135deg);-webkit-transition:.5s;transition:.5s}.es-flow-index .news .show{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.es-flow-index .el-checkbox{margin:0 10px 10px 0}.es-flow-index .info::-webkit-scrollbar-track{-webkit-box-shadow:inset006pxrgba(0,0,0,.3);border-radius:10px}::-webkit-scrollbar-thumb{border-radius:10px;background:rgba(0,0,0,.1);-webkit-box-shadow:inset006pxrgba(0,0,0,.5)}.el-select-dropdown.is-multiple .el-select-dropdown__item.selected::after{right:5px!important}.es-flow-form .input-with-select{width:100%;margin-top:0}.custom-limit-time .el-input.el-input--suffix{width:calc(100% + 40px)!important}.task-union-examine .custom-limit-time .el-input.el-input--suffix{width:unset!important}.custom-limit-time .el-input-group__append{background-color:#1890ff!important;color:#fff!important}.es-flow-form .el-select{width:100%}.es-flow-form .es-opinions .el-select{width:calc(100% + 40px)!important}.select-users .el-input-group__append .el-button span,.select-users .no-icon .el-input-group__append{display:none}.select-users .el-input-group__append{background-color:#1890ff}.select-users .el-input-group__append .el-button i{font-size:18px;color:#fff}.es-flow-form .input-with-select .el-input-group__prepend{background-color:#fff;width:100%}.es-flow-form .el-input-group--prepend>.el-input__inner{display:none!important}.es-flow-form button.el-button.sub.el-button--danger.el-button--medium{width:calc(100% - 85px)}.es-flow-form .el-input-group--prepend>.el-input-group__append{height:40px}.es-flow-form .el-input.is-disabled .el-input__inner{color:#000}.select-user{display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.select-user .left{width:30%}.select-user .right{padding:3px;width:69%}.select-user .el-checkbox{width:170px;margin-top:11px;margin-bottom:11px}.select-user .all{margin:0!important}.es-flow-file .el-upload--handle{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.es-flow-index .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner,.flow-dialog .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner{background-color:#1890ff!important;border-color:#1890ff!important}.es-flow-index .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after,.flow-dialog .el-checkbox__input.is-disabled.is-checked .el-checkbox__inner::after{border-color:#fff}.es-flow-index .el-checkbox__input.is-disabled+span.el-checkbox__label,.flow-dialog .el-checkbox__input.is-disabled+span.el-checkbox__label{color:rgba(0,0,0,.85)}
|