centaline-data-driven 1.6.37 → 1.6.38
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 +1 -1
- package/release-log.md +11 -0
- package/src/SearchList.vue +5 -2
- package/src/centaline/dynamicFile/src/dynamicFile.vue +1 -13
- package/src/centaline/dynamicForm/src/dynamicForm.vue +4 -3
- package/src/centaline/dynamicIti/src/dynamicIti.vue +5 -13
- package/src/centaline/dynamicTags/src/dynamicTags.vue +2 -1
- package/src/centaline/loader/src/ctl/Base.js +3 -0
- package/src/centaline/loader/src/ctl/Router.js +3 -0
- package/src/centaline/loader/src/ctl/SearchScreen.js +4 -4
- package/src/centaline/loader/src/ctl/lib/Enum.js +18 -0
- package/src/main.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js +49 -45
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/release-log.md
CHANGED
package/src/SearchList.vue
CHANGED
|
@@ -31,11 +31,14 @@
|
|
|
31
31
|
|
|
32
32
|
<!-- CCES -->
|
|
33
33
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/agentuserlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/agentuserlist/getList'"></ct-searchlist> -->
|
|
34
|
-
<ct-searchlist :apiParam="para" :searchConditionApi="'/contractmanage/ContractList/getLayoutOfSearch'" :searchDataApi="'/contractmanage/ContractList/getList'"></ct-searchlist>
|
|
34
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/contractmanage/ContractList/getLayoutOfSearch'" :searchDataApi="'/contractmanage/ContractList/getList'"></ct-searchlist> -->
|
|
35
35
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/sunexpensemanage/sunexpenserecordlist/getLayoutOfSearch'" :searchDataApi="'/sunexpensemanage/sunexpenserecordlist/getList'"></ct-searchlist> -->
|
|
36
|
-
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customermanage/ProjectCustomerList/getLayoutOfSearch'" :searchDataApi="'/customermanage/ProjectCustomerList/getList'"></ct-searchlist> -->
|
|
37
36
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/workwxmanage/WorkWXApplicationList/getLayoutOfSearch'" :searchDataApi="'/workwxmanage/WorkWXApplicationList/getList'"></ct-searchlist> -->
|
|
38
37
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/UrgentResponsiblePersonList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/UrgentResponsiblePersonList/getList'"></ct-searchlist> -->
|
|
38
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customermanage/ProjectCustomerList/getLayoutOfSearch'" :searchDataApi="'/customermanage/ProjectCustomerList/getList'"></ct-searchlist> -->
|
|
39
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customermanage/MyCustomerList/getLayoutOfSearch'" :searchDataApi="'/customermanage/MyCustomerList/getList'"></ct-searchlist> -->
|
|
40
|
+
<ct-searchlist :apiParam="para" :searchConditionApi="'/customermanage/CustomerList/getLayoutOfSearch'" :searchDataApi="'/customermanage/CustomerList/getList'"></ct-searchlist>
|
|
41
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customerquery/publiccustcalltaskreferrallist/getLayoutOfSearch'" :searchDataApi="'/customerquery/publiccustcalltaskreferrallist/getList'"></ct-searchlist> -->
|
|
39
42
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customerquery/publiccustcalltaskreferrallist/getLayoutOfSearch'" :searchDataApi="'/customerquery/publiccustcalltaskreferrallist/getList'"></ct-searchlist> -->
|
|
40
43
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/agentuserlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/agentuserlist/getList'"></ct-searchlist> -->
|
|
41
44
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/EntranceNoticeInfoList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/EntranceNoticeInfoList/getList'"></ct-searchlist> -->
|
|
@@ -903,19 +903,7 @@ export default {
|
|
|
903
903
|
window.uploads = { count: 0, length: uploads.length };
|
|
904
904
|
}
|
|
905
905
|
if (uploads.length > 1) {
|
|
906
|
-
|
|
907
|
-
window.uploads.length = uploads.length;
|
|
908
|
-
|
|
909
|
-
if (window.uploads.count == window.uploads.length) {
|
|
910
|
-
window.uploads = null;
|
|
911
|
-
|
|
912
|
-
self.$message({
|
|
913
|
-
message: "存在多个上传组件,请点击上传!",
|
|
914
|
-
type: 'info',
|
|
915
|
-
showClose: true,
|
|
916
|
-
});
|
|
917
|
-
return false;
|
|
918
|
-
}
|
|
906
|
+
|
|
919
907
|
}
|
|
920
908
|
else if (uploads.length == 1) {
|
|
921
909
|
window.uploads = null;
|
|
@@ -1065,11 +1065,12 @@
|
|
|
1065
1065
|
fun(submitData, title, self.model);
|
|
1066
1066
|
}
|
|
1067
1067
|
}
|
|
1068
|
+
|
|
1069
|
+
if(typeof field.onClick !== 'undefined'){
|
|
1070
|
+
self.$common.excute.call(self.model.scripts, field.onClick)
|
|
1071
|
+
}
|
|
1068
1072
|
|
|
1069
1073
|
if (field.isSubmit && field.flagVerifyData) {
|
|
1070
|
-
if(typeof field.onClick !== 'undefined'){
|
|
1071
|
-
self.$common.excute.call(self.model.scripts, field.onClick)
|
|
1072
|
-
}
|
|
1073
1074
|
if(!self.validExcute()){
|
|
1074
1075
|
return;
|
|
1075
1076
|
}
|
|
@@ -13,13 +13,7 @@
|
|
|
13
13
|
class="ct-position-relative" @mouseout="mouseOutHandle('input2')">
|
|
14
14
|
<input style="text-align:left;width:100%" class="el-range-input" :placeholder="model.attrs.placeholder1"
|
|
15
15
|
v-model="model.value" @change="changeHandler($event)" @input="onInputHandler($event);isShowClear('input2')" @focus="focusHandler" @blur="blurHandler('value','decimals')"
|
|
16
|
-
:class="model.lock ? 'ct-is-disabled' : ''" :disabled="model.lock" @keyup.enter="search()"/>
|
|
17
|
-
|
|
18
|
-
<!-- <span class="el-input__suffix el-input--mini" v-if="showClear.input1">
|
|
19
|
-
<span class="el-input__suffix-inner ct-close">
|
|
20
|
-
<i class="el-select__caret el-input__icon el-icon-circle-close is-show-close" @click="clearClickHandle($event,'input1','value')"></i>
|
|
21
|
-
</span>
|
|
22
|
-
</span> -->
|
|
16
|
+
:class="model.lock ? 'ct-is-disabled' : ''" :disabled="model.lock" @keyup.enter="search()"/>
|
|
23
17
|
</div>
|
|
24
18
|
<span style="width:5%" class="el-range-separator">-</span>
|
|
25
19
|
<div :style="{'width':model.unitName && model.unitName.length == 1 ? '45%':(model.unitName && model.unitName.length == 3) ?'50%':(model.unitName && model.unitName.length == 5) ?'60%': ''}" class="ct-position-relative" @mouseout="mouseOutHandle('input2')">
|
|
@@ -27,7 +21,7 @@
|
|
|
27
21
|
v-model="model.value1" @change="changeHandler($event);" @input="onInputHandler($event);isShowClear('input2')" @focus="focusHandler" @blur="blurHandler('value1','decimals1')"
|
|
28
22
|
:class="model.lock ? 'ct-is-disabled' : ''" :disabled="model.lock" @keyup.enter="search()"/>
|
|
29
23
|
</div>
|
|
30
|
-
<span
|
|
24
|
+
<span class="el-input__suffix el-input--mini is-show-Span" v-if="showClear.input2">
|
|
31
25
|
<span class="el-input__suffix-inner ct-close">
|
|
32
26
|
<i class="el-select__caret el-input__icon el-icon-circle-close is-show-close" @click="clearClickHandle($event,'input2')"></i>
|
|
33
27
|
</span>
|
|
@@ -58,7 +52,6 @@
|
|
|
58
52
|
return {
|
|
59
53
|
isFocus: false,
|
|
60
54
|
showClear:{input1:false,input2:false},
|
|
61
|
-
|
|
62
55
|
}
|
|
63
56
|
},
|
|
64
57
|
created() {
|
|
@@ -145,13 +138,12 @@
|
|
|
145
138
|
mouseOutHandle: function (id) {
|
|
146
139
|
this.showClear[id]=false;
|
|
147
140
|
},
|
|
148
|
-
isShowClear(id)
|
|
149
|
-
{
|
|
141
|
+
isShowClear(id){
|
|
150
142
|
if ((this.model['value'] !== '' || this.model['value1'] !== '') && this.model.clearable) {
|
|
151
143
|
this.showClear[id]=true;
|
|
152
144
|
}
|
|
153
145
|
else {
|
|
154
|
-
|
|
146
|
+
this.showClear[id]=false;
|
|
155
147
|
}
|
|
156
148
|
},
|
|
157
149
|
search() {
|
|
@@ -163,7 +155,7 @@
|
|
|
163
155
|
<style scoped>
|
|
164
156
|
.el-input__suffix {
|
|
165
157
|
right: -4px;
|
|
166
|
-
top:-
|
|
158
|
+
top:-7px;
|
|
167
159
|
}
|
|
168
160
|
|
|
169
161
|
span.ct-unitname.el-input__suffix.el-input__suffix-inner {
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
<ctSelectOptionVertical :model="model" @click="selectOption($event)" @dataUpdated="dataUpdated()"></ctSelectOptionVertical>
|
|
26
26
|
</div>
|
|
27
27
|
<input slot="reference" v-bind="model.attrs" :placeholder="tagsPlaceholder"
|
|
28
|
-
ref="ct-input" class="" :style="{height:inputHeight + 'px','line-height':inputLineHeight + 'px'}"
|
|
28
|
+
ref="ct-input" class="" :style="{height:inputHeight + 'px','line-height':inputLineHeight + 'px','font-size': 'small'}"
|
|
29
29
|
:class="model.lock ? 'ct-is-disabled' : 'ct-input_inner'"
|
|
30
30
|
@focus="focusHandle" @blur="blurHandle" @click="clickHandle"
|
|
31
31
|
:disabled="model.lock" />
|
|
@@ -461,6 +461,7 @@
|
|
|
461
461
|
}
|
|
462
462
|
.ct-tags-value-label {
|
|
463
463
|
/* padding-left: 15px; */
|
|
464
|
+
font-size: small;
|
|
464
465
|
}
|
|
465
466
|
.h26{
|
|
466
467
|
height: 26px;
|
|
@@ -770,11 +770,11 @@ const SearchScreen = function (source, callBack, screenPara, prevParam) {
|
|
|
770
770
|
//判断控件是否需要单独处理searchValue1
|
|
771
771
|
isHandle(type){
|
|
772
772
|
let result=false;
|
|
773
|
-
switch (type)
|
|
774
|
-
{
|
|
773
|
+
switch (type) {
|
|
775
774
|
case Enum.ControlType.CheckBoxList://复选列表
|
|
776
|
-
|
|
777
|
-
|
|
775
|
+
case Enum.ControlType.MultiSelectWithSearch:
|
|
776
|
+
result=true;
|
|
777
|
+
break;
|
|
778
778
|
default:
|
|
779
779
|
result=false;
|
|
780
780
|
break;
|
|
@@ -295,6 +295,16 @@ const Enum = {
|
|
|
295
295
|
/// 月份区间
|
|
296
296
|
/// </summary>
|
|
297
297
|
MonthRange: 59,
|
|
298
|
+
|
|
299
|
+
/// <summary>
|
|
300
|
+
/// 数值输入框带+/-按钮
|
|
301
|
+
/// </summary>
|
|
302
|
+
NumberWithPlusAndMinus: 60,
|
|
303
|
+
|
|
304
|
+
/**
|
|
305
|
+
* VUE 前端子定义组件,组件名在 Field.vueComponentName 属性里定义
|
|
306
|
+
*/
|
|
307
|
+
VueCustomizedComponent:61,
|
|
298
308
|
|
|
299
309
|
},
|
|
300
310
|
|
|
@@ -638,6 +648,14 @@ const Enum = {
|
|
|
638
648
|
* 在系统弹层打开
|
|
639
649
|
*/
|
|
640
650
|
LayerInSystem:120,
|
|
651
|
+
/**
|
|
652
|
+
* 在弹层打开 前端的VUE组件, 组件名称放在action参数里
|
|
653
|
+
*/
|
|
654
|
+
OpenVueComponentInLayer:121,
|
|
655
|
+
/**
|
|
656
|
+
* 在tab页打开 前端的VUE组件, 组件名称放在action参数里
|
|
657
|
+
*/
|
|
658
|
+
OpenVueComponentInTab:122,
|
|
641
659
|
},
|
|
642
660
|
|
|
643
661
|
/// <summary>
|
package/src/main.js
CHANGED
|
@@ -75,8 +75,8 @@ Vue.use(centaline, {
|
|
|
75
75
|
EstateInfo: '{"estateId":"1c581b7c-d629-4670-8a7c-6d622860bc58","estateName":"0%E9%87%91%E9%9A%85%E4%BA%91%E7%AD%91%E5%A4%A9%E6%B4%A5","estDeptPath":"009.014.001.001"}',
|
|
76
76
|
estateId: '',
|
|
77
77
|
|
|
78
|
-
authObject: '{"currentEstate":{},"platform":1,"osVersion":"","
|
|
79
|
-
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.
|
|
78
|
+
authObject: '{"currentEstate":{},"platform":1,"osVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"FLNd7t","time":1742453755758,"sign":"dcf9d289a261a3a63bfb8f29a699ac1e","systemSource":"CCESU","empNo":"maopp","empId":"2411120940038E8B1C87525447179987","clientVersion":"24.11.4.1","empName":"%E6%AF%9B%E7%AE%A1%E7%90%86","roleName":"%E9%9B%86%E5%9B%A2IT%E7%AE%A1%E7%90%86%E5%91%98","deptFullName":"%E6%9C%AA%E5%8C%B9%E9%85%8DCCHR%E4%B8%ADHROC%E9%83%A8%E9%97%A8%2F%E9%9B%86%E5%9B%A2IT"}',
|
|
79
|
+
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImNkMTM3NTZjLTE2YWQtNGZjNi05OWRjLTFlMjljOTllYjcyZiJ9.QXAIvKUIg-Rdc9wZibPxuJlJZeVTQQCR7U8eiNJzqdcVD1mb45GL6xgTfdYBQ6sdw673VyzFrhSErEj1mCQeKQ',
|
|
80
80
|
};
|
|
81
81
|
},
|
|
82
82
|
// 请求完成事件,可判断是否登录过期执行响应操作
|
|
@@ -6997,6 +6997,9 @@ var Base = function Base(source) {
|
|
|
6997
6997
|
},
|
|
6998
6998
|
get lazyLoad() {
|
|
6999
6999
|
return source.lazyLoad;
|
|
7000
|
+
},
|
|
7001
|
+
get vueComponentName() {
|
|
7002
|
+
return source.vueComponentName;
|
|
7000
7003
|
}
|
|
7001
7004
|
};
|
|
7002
7005
|
|
|
@@ -8194,7 +8197,17 @@ var Enum = {
|
|
|
8194
8197
|
/// <summary>
|
|
8195
8198
|
/// 月份区间
|
|
8196
8199
|
/// </summary>
|
|
8197
|
-
MonthRange: 59
|
|
8200
|
+
MonthRange: 59,
|
|
8201
|
+
|
|
8202
|
+
/// <summary>
|
|
8203
|
+
/// 数值输入框带+/-按钮
|
|
8204
|
+
/// </summary>
|
|
8205
|
+
NumberWithPlusAndMinus: 60,
|
|
8206
|
+
|
|
8207
|
+
/**
|
|
8208
|
+
* VUE 前端子定义组件,组件名在 Field.vueComponentName 属性里定义
|
|
8209
|
+
*/
|
|
8210
|
+
VueCustomizedComponent: 61
|
|
8198
8211
|
|
|
8199
8212
|
},
|
|
8200
8213
|
|
|
@@ -8537,7 +8550,15 @@ var Enum = {
|
|
|
8537
8550
|
/**
|
|
8538
8551
|
* 在系统弹层打开
|
|
8539
8552
|
*/
|
|
8540
|
-
LayerInSystem: 120
|
|
8553
|
+
LayerInSystem: 120,
|
|
8554
|
+
/**
|
|
8555
|
+
* 在弹层打开 前端的VUE组件, 组件名称放在action参数里
|
|
8556
|
+
*/
|
|
8557
|
+
OpenVueComponentInLayer: 121,
|
|
8558
|
+
/**
|
|
8559
|
+
* 在tab页打开 前端的VUE组件, 组件名称放在action参数里
|
|
8560
|
+
*/
|
|
8561
|
+
OpenVueComponentInTab: 122
|
|
8541
8562
|
},
|
|
8542
8563
|
|
|
8543
8564
|
/// <summary>
|
|
@@ -9514,6 +9535,9 @@ var Router = function Router(source) {
|
|
|
9514
9535
|
},
|
|
9515
9536
|
get flagAsync() {
|
|
9516
9537
|
return source.flagAsync;
|
|
9538
|
+
},
|
|
9539
|
+
get vueComponentName() {
|
|
9540
|
+
return source.vueComponentName;
|
|
9517
9541
|
}
|
|
9518
9542
|
};
|
|
9519
9543
|
return rtn;
|
|
@@ -11273,7 +11297,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
|
|
|
11273
11297
|
"use strict";
|
|
11274
11298
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__ = __webpack_require__(185);
|
|
11275
11299
|
/* unused harmony namespace reexport */
|
|
11276
|
-
/* harmony import */ var
|
|
11300
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_19d74292_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(617);
|
|
11277
11301
|
function injectStyle (ssrContext) {
|
|
11278
11302
|
__webpack_require__(611)
|
|
11279
11303
|
}
|
|
@@ -11293,7 +11317,7 @@ var __vue_scopeId__ = null
|
|
|
11293
11317
|
var __vue_module_identifier__ = null
|
|
11294
11318
|
var Component = normalizeComponent(
|
|
11295
11319
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__["a" /* default */],
|
|
11296
|
-
|
|
11320
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_19d74292_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
|
|
11297
11321
|
__vue_template_functional__,
|
|
11298
11322
|
__vue_styles__,
|
|
11299
11323
|
__vue_scopeId__,
|
|
@@ -29681,10 +29705,11 @@ module.exports = g;
|
|
|
29681
29705
|
}
|
|
29682
29706
|
};
|
|
29683
29707
|
|
|
29708
|
+
if (typeof field.onClick !== 'undefined') {
|
|
29709
|
+
self.$common.excute.call(self.model.scripts, field.onClick);
|
|
29710
|
+
}
|
|
29711
|
+
|
|
29684
29712
|
if (field.isSubmit && field.flagVerifyData) {
|
|
29685
|
-
if (typeof field.onClick !== 'undefined') {
|
|
29686
|
-
self.$common.excute.call(self.model.scripts, field.onClick);
|
|
29687
|
-
}
|
|
29688
29713
|
if (!self.validExcute()) {
|
|
29689
29714
|
return;
|
|
29690
29715
|
}
|
|
@@ -54497,21 +54522,7 @@ if (typeof window !== "undefined" && "Vue" in window) {
|
|
|
54497
54522
|
if (!window.uploads) {
|
|
54498
54523
|
window.uploads = { count: 0, length: uploads.length };
|
|
54499
54524
|
}
|
|
54500
|
-
if (uploads.length > 1) {
|
|
54501
|
-
window.uploads.count = window.uploads.count + 1;
|
|
54502
|
-
window.uploads.length = uploads.length;
|
|
54503
|
-
|
|
54504
|
-
if (window.uploads.count == window.uploads.length) {
|
|
54505
|
-
window.uploads = null;
|
|
54506
|
-
|
|
54507
|
-
self.$message({
|
|
54508
|
-
message: "存在多个上传组件,请点击上传!",
|
|
54509
|
-
type: 'info',
|
|
54510
|
-
showClose: true
|
|
54511
|
-
});
|
|
54512
|
-
return false;
|
|
54513
|
-
}
|
|
54514
|
-
} else if (uploads.length == 1) {
|
|
54525
|
+
if (uploads.length > 1) {} else if (uploads.length == 1) {
|
|
54515
54526
|
window.uploads = null;
|
|
54516
54527
|
self.PasteUpload(event);
|
|
54517
54528
|
}
|
|
@@ -54763,12 +54774,6 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
54763
54774
|
//
|
|
54764
54775
|
//
|
|
54765
54776
|
//
|
|
54766
|
-
//
|
|
54767
|
-
//
|
|
54768
|
-
//
|
|
54769
|
-
//
|
|
54770
|
-
//
|
|
54771
|
-
//
|
|
54772
54777
|
|
|
54773
54778
|
|
|
54774
54779
|
/* harmony default export */ __webpack_exports__["a"] = ({
|
|
@@ -54781,7 +54786,6 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
54781
54786
|
return {
|
|
54782
54787
|
isFocus: false,
|
|
54783
54788
|
showClear: { input1: false, input2: false }
|
|
54784
|
-
|
|
54785
54789
|
};
|
|
54786
54790
|
},
|
|
54787
54791
|
created: function created() {
|
|
@@ -57454,8 +57458,8 @@ var SearchScreen = function SearchScreen(source, callBack, screenPara, prevParam
|
|
|
57454
57458
|
isHandle: function isHandle(type) {
|
|
57455
57459
|
var result = false;
|
|
57456
57460
|
switch (type) {
|
|
57457
|
-
case __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.CheckBoxList:
|
|
57458
|
-
|
|
57461
|
+
case __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.CheckBoxList: //复选列表
|
|
57462
|
+
case __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.MultiSelectWithSearch:
|
|
57459
57463
|
result = true;
|
|
57460
57464
|
break;
|
|
57461
57465
|
default:
|
|
@@ -75899,7 +75903,7 @@ var content = __webpack_require__(612);
|
|
|
75899
75903
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
75900
75904
|
if(content.locals) module.exports = content.locals;
|
|
75901
75905
|
// add the styles to the DOM
|
|
75902
|
-
var update = __webpack_require__(3)("
|
|
75906
|
+
var update = __webpack_require__(3)("67531a00", content, true, {});
|
|
75903
75907
|
|
|
75904
75908
|
/***/ }),
|
|
75905
75909
|
/* 612 */
|
|
@@ -81458,7 +81462,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
81458
81462
|
"use strict";
|
|
81459
81463
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__ = __webpack_require__(342);
|
|
81460
81464
|
/* unused harmony namespace reexport */
|
|
81461
|
-
/* harmony import */ var
|
|
81465
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_507e91a1_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__ = __webpack_require__(708);
|
|
81462
81466
|
function injectStyle (ssrContext) {
|
|
81463
81467
|
__webpack_require__(701)
|
|
81464
81468
|
}
|
|
@@ -81478,7 +81482,7 @@ var __vue_scopeId__ = null
|
|
|
81478
81482
|
var __vue_module_identifier__ = null
|
|
81479
81483
|
var Component = normalizeComponent(
|
|
81480
81484
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__["a" /* default */],
|
|
81481
|
-
|
|
81485
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_507e91a1_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__["a" /* default */],
|
|
81482
81486
|
__vue_template_functional__,
|
|
81483
81487
|
__vue_styles__,
|
|
81484
81488
|
__vue_scopeId__,
|
|
@@ -81499,7 +81503,7 @@ var content = __webpack_require__(702);
|
|
|
81499
81503
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
81500
81504
|
if(content.locals) module.exports = content.locals;
|
|
81501
81505
|
// add the styles to the DOM
|
|
81502
|
-
var update = __webpack_require__(3)("
|
|
81506
|
+
var update = __webpack_require__(3)("5719a707", content, true, {});
|
|
81503
81507
|
|
|
81504
81508
|
/***/ }),
|
|
81505
81509
|
/* 702 */
|
|
@@ -81767,7 +81771,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
81767
81771
|
"use strict";
|
|
81768
81772
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicIti_vue__ = __webpack_require__(351);
|
|
81769
81773
|
/* unused harmony namespace reexport */
|
|
81770
|
-
/* harmony import */ var
|
|
81774
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_79ecf534_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicIti_vue__ = __webpack_require__(719);
|
|
81771
81775
|
function injectStyle (ssrContext) {
|
|
81772
81776
|
__webpack_require__(717)
|
|
81773
81777
|
}
|
|
@@ -81782,12 +81786,12 @@ var __vue_template_functional__ = false
|
|
|
81782
81786
|
/* styles */
|
|
81783
81787
|
var __vue_styles__ = injectStyle
|
|
81784
81788
|
/* scopeId */
|
|
81785
|
-
var __vue_scopeId__ = "data-v-
|
|
81789
|
+
var __vue_scopeId__ = "data-v-79ecf534"
|
|
81786
81790
|
/* moduleIdentifier (server only) */
|
|
81787
81791
|
var __vue_module_identifier__ = null
|
|
81788
81792
|
var Component = normalizeComponent(
|
|
81789
81793
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicIti_vue__["a" /* default */],
|
|
81790
|
-
|
|
81794
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_79ecf534_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicIti_vue__["a" /* default */],
|
|
81791
81795
|
__vue_template_functional__,
|
|
81792
81796
|
__vue_styles__,
|
|
81793
81797
|
__vue_scopeId__,
|
|
@@ -81808,7 +81812,7 @@ var content = __webpack_require__(718);
|
|
|
81808
81812
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
81809
81813
|
if(content.locals) module.exports = content.locals;
|
|
81810
81814
|
// add the styles to the DOM
|
|
81811
|
-
var update = __webpack_require__(3)("
|
|
81815
|
+
var update = __webpack_require__(3)("0d6ed2b7", content, true, {});
|
|
81812
81816
|
|
|
81813
81817
|
/***/ }),
|
|
81814
81818
|
/* 718 */
|
|
@@ -81819,7 +81823,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
81819
81823
|
|
|
81820
81824
|
|
|
81821
81825
|
// module
|
|
81822
|
-
exports.push([module.i, ".el-input__suffix[data-v-
|
|
81826
|
+
exports.push([module.i, ".el-input__suffix[data-v-79ecf534]{right:-4px;top:-7px}span.ct-unitname.el-input__suffix.el-input__suffix-inner[data-v-79ecf534]{right:15px;top:0}.hoverColor[data-v-79ecf534]:hover{border-color:var(--centalineBlue)}.is-show-Span[data-v-79ecf534]{display:none}.hoverColor:hover .is-show-Span[data-v-79ecf534]{display:inline-block}", ""]);
|
|
81823
81827
|
|
|
81824
81828
|
// exports
|
|
81825
81829
|
|
|
@@ -82221,7 +82225,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
82221
82225
|
"use strict";
|
|
82222
82226
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTags_vue__ = __webpack_require__(362);
|
|
82223
82227
|
/* unused harmony namespace reexport */
|
|
82224
|
-
/* harmony import */ var
|
|
82228
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_d60b3afc_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTags_vue__ = __webpack_require__(744);
|
|
82225
82229
|
function injectStyle (ssrContext) {
|
|
82226
82230
|
__webpack_require__(742)
|
|
82227
82231
|
}
|
|
@@ -82241,7 +82245,7 @@ var __vue_scopeId__ = null
|
|
|
82241
82245
|
var __vue_module_identifier__ = null
|
|
82242
82246
|
var Component = normalizeComponent(
|
|
82243
82247
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTags_vue__["a" /* default */],
|
|
82244
|
-
|
|
82248
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_d60b3afc_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTags_vue__["a" /* default */],
|
|
82245
82249
|
__vue_template_functional__,
|
|
82246
82250
|
__vue_styles__,
|
|
82247
82251
|
__vue_scopeId__,
|
|
@@ -82262,7 +82266,7 @@ var content = __webpack_require__(743);
|
|
|
82262
82266
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
82263
82267
|
if(content.locals) module.exports = content.locals;
|
|
82264
82268
|
// add the styles to the DOM
|
|
82265
|
-
var update = __webpack_require__(3)("
|
|
82269
|
+
var update = __webpack_require__(3)("5f6c583c", content, true, {});
|
|
82266
82270
|
|
|
82267
82271
|
/***/ }),
|
|
82268
82272
|
/* 743 */
|
|
@@ -82273,7 +82277,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
82273
82277
|
|
|
82274
82278
|
|
|
82275
82279
|
// module
|
|
82276
|
-
exports.push([module.i, ".ct-tags .ct-input_inner::-webkit-input-placeholder{color:var(--bagGray)}.ct-tags .ct-input_inner::-moz-placeholder{color:var(--bagGray)}.ct-tags .ct-input_inner:-ms-input-placeholder{color:var(--bagGray)}.ct-tags .ct-input_inner:hover{border-color:var(--bagGray)}.ct-tags.isfocus .ct-input_inner,.ct-tags.isfocus .ct-input_inner:hover{border-color:var(--centalineBlue)}.ct-tags .el-input__suffix{right:10px;cursor:pointer}.ct-tags .el-select__caret{color:#bbb;font-size:inherit;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transform:rotate(180deg);transform:rotate(180deg);cursor:pointer}.ct-tags .is-reverse{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.ct-tags .el-tag{-webkit-box-sizing:border-box;box-sizing:border-box;border-color:transparent;margin:2px 0 2px 1px;background-color:#f0f2f5}.ct-tags.ct-tags-mini{font-size:12px}.ct-tags.ct-tags-small{font-size:13px}.ct-tags.ct-tags-medium{font-size:14px}.ct-option{margin:5px;cursor:pointer}.ct-tags .ct-close>.el-select__caret.is-show-close:hover{color:var(--centalineMediumGray)}.h26{height:26px}", ""]);
|
|
82280
|
+
exports.push([module.i, ".ct-tags .ct-input_inner::-webkit-input-placeholder{color:var(--bagGray)}.ct-tags .ct-input_inner::-moz-placeholder{color:var(--bagGray)}.ct-tags .ct-input_inner:-ms-input-placeholder{color:var(--bagGray)}.ct-tags .ct-input_inner:hover{border-color:var(--bagGray)}.ct-tags.isfocus .ct-input_inner,.ct-tags.isfocus .ct-input_inner:hover{border-color:var(--centalineBlue)}.ct-tags .el-input__suffix{right:10px;cursor:pointer}.ct-tags .el-select__caret{color:#bbb;font-size:inherit;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transform:rotate(180deg);transform:rotate(180deg);cursor:pointer}.ct-tags .is-reverse{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.ct-tags .el-tag{-webkit-box-sizing:border-box;box-sizing:border-box;border-color:transparent;margin:2px 0 2px 1px;background-color:#f0f2f5}.ct-tags.ct-tags-mini{font-size:12px}.ct-tags.ct-tags-small{font-size:13px}.ct-tags.ct-tags-medium{font-size:14px}.ct-option{margin:5px;cursor:pointer}.ct-tags .ct-close>.el-select__caret.is-show-close:hover{color:var(--centalineMediumGray)}.ct-tags-value-label{font-size:small}.h26{height:26px}", ""]);
|
|
82277
82281
|
|
|
82278
82282
|
// exports
|
|
82279
82283
|
|
|
@@ -82284,7 +82288,7 @@ exports.push([module.i, ".ct-tags .ct-input_inner::-webkit-input-placeholder{col
|
|
|
82284
82288
|
|
|
82285
82289
|
"use strict";
|
|
82286
82290
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[_c('div',{staticClass:"ccai ct-tags",staticStyle:{"width":"100%","display":"flex"}},[_c('div',{class:[(_vm.focus || _vm.showDrop)?'isfocus':'',_vm.model.attrs.size?'ct-tags-'+_vm.model.attrs.size:''
|
|
82287
|
-
],staticStyle:{"flex":"1","display":"flex","margin-right":"5px"},on:{"mouseover":_vm.mouseOverHandle,"mouseout":_vm.mouseOutHandle}},[_c('div',{class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':''],staticStyle:{"flex":"1","position":"relative"}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend",class:[_vm.model.labelClass]},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")]):_vm._e(),_vm._v(" "),_c('div',[_c('div',{ref:"cttags",staticClass:"el-select__tags",style:({'max-width':_vm.tagsWidth + 'px'}),on:{"click":_vm.clickHandle}},[_c('span',[_c('span',{staticClass:"ct-tags-value-label"},[_vm._v(_vm._s(_vm.model.valueLabel))]),_vm._v(" "),_vm._l((_vm.model.value),function(item,index){return _c('span',{key:index,staticClass:"el-tag el-tag--info",class:[_vm.model.attrs.size?'el-tag--'+_vm.model.attrs.size:'']},[_c('span',{staticClass:"el-select__tags-text"},[_vm._v(_vm._s(_vm.getOptionText(item)))]),_vm._v(" "),(!_vm.model.lock && !_vm.getOptionLocked(item))?_c('i',{staticClass:"el-tag__close el-icon-close",on:{"click":function($event){_vm.deleteOption(item,$event)}}}):_vm._e()])})],2)]),_vm._v(" "),_c('el-popover',{ref:"pop",class:[_vm.model.showLabel1?'showLabel':''],attrs:{"placement":"bottom-start","trigger":(!_vm.model.paramName || _vm.model.lock) ? 'manual' : 'click'},model:{value:(_vm.showDrop),callback:function ($$v) {_vm.showDrop=$$v},expression:"showDrop"}},[_c('div',[_c('div',[_c('el-input',{ref:"searchInput",attrs:{"size":_vm.model.attrs.size,"suffix-icon":"el-icon-search"},on:{"input":_vm.searchInputHandle},model:{value:(_vm.searchText),callback:function ($$v) {_vm.searchText=$$v},expression:"searchText"}})],1),_vm._v(" "),_c('ctSelectOptionVertical',{attrs:{"model":_vm.model},on:{"click":function($event){_vm.selectOption($event)},"dataUpdated":function($event){_vm.dataUpdated()}}})],1),_vm._v(" "),_c('input',_vm._b({ref:"ct-input",class:_vm.model.lock ? 'ct-is-disabled' : 'ct-input_inner',style:({height:_vm.inputHeight + 'px','line-height':_vm.inputLineHeight + 'px'}),attrs:{"slot":"reference","placeholder":_vm.tagsPlaceholder,"disabled":_vm.model.lock},on:{"focus":_vm.focusHandle,"blur":_vm.blurHandle,"click":_vm.clickHandle},slot:"reference"},'input',_vm.model.attrs,false))]),_vm._v(" "),(!_vm.model.lock)?_c('span',{staticClass:"el-input__suffix",class:[_vm.model.attrs.size?'el-input--'+_vm.model.attrs.size:''],on:{"click":_vm.clickHandle}},[(_vm.showClear === false)?_c('span',{staticClass:"el-input__suffix-inner"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-arrow-up",class:{'is-reverse':_vm.showDrop}})]):_vm._e(),_vm._v(" "),(_vm.showClear === true)?_c('span',{staticClass:"el-input__suffix-inner ct-close"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-circle-close is-show-close",on:{"click":function($event){_vm.clearClickHandle($event)}}})]):_vm._e()]):_vm._e()],1)]),_vm._v(" "),_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"errorMessage"},[_vm._v("\n "+_vm._s(_vm.validMessage)+"\n ")])]),_vm._v(" "),(_vm.model.popupSearchListType === 1 && !_vm.model.lock)?_c('div',[(!_vm.model.moreActionBtnName)?_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary","icon":"el-icon-search"},on:{"click":_vm.popupSearchListHandle}}):_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary"},on:{"click":_vm.popupSearchListHandle}},[_vm._v(_vm._s(_vm.model.moreActionBtnName))])],1):_vm._e()])])}
|
|
82291
|
+
],staticStyle:{"flex":"1","display":"flex","margin-right":"5px"},on:{"mouseover":_vm.mouseOverHandle,"mouseout":_vm.mouseOutHandle}},[_c('div',{class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':''],staticStyle:{"flex":"1","position":"relative"}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend",class:[_vm.model.labelClass]},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")]):_vm._e(),_vm._v(" "),_c('div',[_c('div',{ref:"cttags",staticClass:"el-select__tags",style:({'max-width':_vm.tagsWidth + 'px'}),on:{"click":_vm.clickHandle}},[_c('span',[_c('span',{staticClass:"ct-tags-value-label"},[_vm._v(_vm._s(_vm.model.valueLabel))]),_vm._v(" "),_vm._l((_vm.model.value),function(item,index){return _c('span',{key:index,staticClass:"el-tag el-tag--info",class:[_vm.model.attrs.size?'el-tag--'+_vm.model.attrs.size:'']},[_c('span',{staticClass:"el-select__tags-text"},[_vm._v(_vm._s(_vm.getOptionText(item)))]),_vm._v(" "),(!_vm.model.lock && !_vm.getOptionLocked(item))?_c('i',{staticClass:"el-tag__close el-icon-close",on:{"click":function($event){_vm.deleteOption(item,$event)}}}):_vm._e()])})],2)]),_vm._v(" "),_c('el-popover',{ref:"pop",class:[_vm.model.showLabel1?'showLabel':''],attrs:{"placement":"bottom-start","trigger":(!_vm.model.paramName || _vm.model.lock) ? 'manual' : 'click'},model:{value:(_vm.showDrop),callback:function ($$v) {_vm.showDrop=$$v},expression:"showDrop"}},[_c('div',[_c('div',[_c('el-input',{ref:"searchInput",attrs:{"size":_vm.model.attrs.size,"suffix-icon":"el-icon-search"},on:{"input":_vm.searchInputHandle},model:{value:(_vm.searchText),callback:function ($$v) {_vm.searchText=$$v},expression:"searchText"}})],1),_vm._v(" "),_c('ctSelectOptionVertical',{attrs:{"model":_vm.model},on:{"click":function($event){_vm.selectOption($event)},"dataUpdated":function($event){_vm.dataUpdated()}}})],1),_vm._v(" "),_c('input',_vm._b({ref:"ct-input",class:_vm.model.lock ? 'ct-is-disabled' : 'ct-input_inner',style:({height:_vm.inputHeight + 'px','line-height':_vm.inputLineHeight + 'px','font-size': 'small'}),attrs:{"slot":"reference","placeholder":_vm.tagsPlaceholder,"disabled":_vm.model.lock},on:{"focus":_vm.focusHandle,"blur":_vm.blurHandle,"click":_vm.clickHandle},slot:"reference"},'input',_vm.model.attrs,false))]),_vm._v(" "),(!_vm.model.lock)?_c('span',{staticClass:"el-input__suffix",class:[_vm.model.attrs.size?'el-input--'+_vm.model.attrs.size:''],on:{"click":_vm.clickHandle}},[(_vm.showClear === false)?_c('span',{staticClass:"el-input__suffix-inner"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-arrow-up",class:{'is-reverse':_vm.showDrop}})]):_vm._e(),_vm._v(" "),(_vm.showClear === true)?_c('span',{staticClass:"el-input__suffix-inner ct-close"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-circle-close is-show-close",on:{"click":function($event){_vm.clearClickHandle($event)}}})]):_vm._e()]):_vm._e()],1)]),_vm._v(" "),_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"errorMessage"},[_vm._v("\n "+_vm._s(_vm.validMessage)+"\n ")])]),_vm._v(" "),(_vm.model.popupSearchListType === 1 && !_vm.model.lock)?_c('div',[(!_vm.model.moreActionBtnName)?_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary","icon":"el-icon-search"},on:{"click":_vm.popupSearchListHandle}}):_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary"},on:{"click":_vm.popupSearchListHandle}},[_vm._v(_vm._s(_vm.model.moreActionBtnName))])],1):_vm._e()])])}
|
|
82288
82292
|
var staticRenderFns = []
|
|
82289
82293
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
82290
82294
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|