centaline-data-driven 1.6.19 → 1.6.20
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 +13 -1
- package/src/SearchList.vue +2 -1
- package/src/centaline/css/common.css +6 -0
- package/src/centaline/dynamicBtn/src/dynamicBtn.vue +2 -2
- package/src/centaline/dynamicFile/src/dynamicFile.vue +3 -0
- package/src/centaline/dynamicForm/src/dynamicForm.vue +1 -0
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +17 -1
- package/src/centaline/dynamicSearchList/src/dynamicTableToolbar.vue +24 -27
- package/src/centaline/loader/src/ctl/Router.js +2 -1
- package/src/main.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js +37 -20
- 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
|
@@ -37,7 +37,8 @@
|
|
|
37
37
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/workwxmanage/WorkWXApplicationList/getLayoutOfSearch'" :searchDataApi="'/workwxmanage/WorkWXApplicationList/getList'"></ct-searchlist> -->
|
|
38
38
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/UrgentResponsiblePersonList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/UrgentResponsiblePersonList/getList'"></ct-searchlist> -->
|
|
39
39
|
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customerquery/publiccustcalltaskreferrallist/getLayoutOfSearch'" :searchDataApi="'/customerquery/publiccustcalltaskreferrallist/getList'"></ct-searchlist> -->
|
|
40
|
-
<ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/agentuserlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/agentuserlist/getList'"></ct-searchlist>
|
|
40
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/agentuserlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/agentuserlist/getList'"></ct-searchlist> -->
|
|
41
|
+
<ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/EntranceNoticeInfoList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/EntranceNoticeInfoList/getList'"></ct-searchlist>
|
|
41
42
|
<!-- CCES -->
|
|
42
43
|
|
|
43
44
|
<!-- <ct-searchlist :apiParam="para"
|
|
@@ -81,7 +81,7 @@
|
|
|
81
81
|
</el-dropdown-item>
|
|
82
82
|
</el-dropdown-menu>
|
|
83
83
|
</el-dropdown>
|
|
84
|
-
<el-button v-else class="max"
|
|
84
|
+
<el-button v-else class="max" :loading="model.loading"
|
|
85
85
|
:type="model.isHyperLink ? 'text' : 'primary'"
|
|
86
86
|
v-bind="model.attrs" @click="clickHandle"
|
|
87
87
|
:style="{color:model.textColor,backgroundColor:model.imgUrl?'transparent':model.bgColor,borderColor:model.imgUrl?'transparent':model.borderColor,padding:model.imgUrl?'0px':null}"
|
|
@@ -91,7 +91,7 @@
|
|
|
91
91
|
<img :src="model.imgUrl" :height="model.buttonHeight+'px'" />
|
|
92
92
|
<div style="margin-top:5px;" class="labelText" v-html="model.label"></div>
|
|
93
93
|
</div>
|
|
94
|
-
<div v-else>
|
|
94
|
+
<div v-else :style="{display:model.loading?'inline-block':''}">
|
|
95
95
|
<img v-if="model.imgUrl" :title="model.label" :src="model.imgUrl" :height="model.buttonHeight+'px'" />
|
|
96
96
|
<span v-else v-html="model.label"></span>
|
|
97
97
|
</div>
|
|
@@ -708,6 +708,9 @@ export default {
|
|
|
708
708
|
type: 'error',
|
|
709
709
|
showClose: true,
|
|
710
710
|
});
|
|
711
|
+
file.source = { "actionType": 2 };
|
|
712
|
+
this.model.deleteFile(file, false);
|
|
713
|
+
this.selfValidExcute("remove");
|
|
711
714
|
return false;
|
|
712
715
|
}
|
|
713
716
|
const Progress = Math.min(100, Math.floor(1E4 * parseInt(res.content.nextOffSet) / parseInt(file.size)) / 100);
|
|
@@ -1462,7 +1462,16 @@ export default {
|
|
|
1462
1462
|
}
|
|
1463
1463
|
}
|
|
1464
1464
|
else {
|
|
1465
|
+
field.loading=true;
|
|
1466
|
+
if(!field.alert && field.alertMsg){
|
|
1467
|
+
self.$message({
|
|
1468
|
+
message: field.alertMsg,
|
|
1469
|
+
type: 'info',
|
|
1470
|
+
showClose: true,
|
|
1471
|
+
});
|
|
1472
|
+
}
|
|
1465
1473
|
field.doBlobAction(submitData, (data, headers) => {
|
|
1474
|
+
field.loading=false;
|
|
1466
1475
|
if (data.type == "application/json") {
|
|
1467
1476
|
const reader = new FileReader();
|
|
1468
1477
|
reader.readAsText(data, 'utf-8');
|
|
@@ -1485,6 +1494,13 @@ export default {
|
|
|
1485
1494
|
else {
|
|
1486
1495
|
}
|
|
1487
1496
|
}
|
|
1497
|
+
if(data.rtnMsg){
|
|
1498
|
+
self.$message({
|
|
1499
|
+
message: data.rtnMsg,
|
|
1500
|
+
type: 'info',
|
|
1501
|
+
showClose: true,
|
|
1502
|
+
});
|
|
1503
|
+
}
|
|
1488
1504
|
};
|
|
1489
1505
|
}
|
|
1490
1506
|
else {
|
|
@@ -1697,7 +1713,7 @@ export default {
|
|
|
1697
1713
|
fun(submitData, title, self.$parent);
|
|
1698
1714
|
}
|
|
1699
1715
|
};
|
|
1700
|
-
|
|
1716
|
+
|
|
1701
1717
|
if (field.alert) {
|
|
1702
1718
|
self.$common.confirm(field.alertMsg, field.alertCaption, {
|
|
1703
1719
|
confirmButtonText: field.alertOKButtonText,
|
|
@@ -1,32 +1,29 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class="ct-tableToolbar" style="width:100%;" v-if="buttons && buttons.length > 0">
|
|
3
|
-
|
|
4
|
-
<
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
</
|
|
14
|
-
|
|
15
|
-
</div>
|
|
2
|
+
<div class="ct-tableToolbar" style="width:100%;" v-if="buttons && buttons.length > 0">
|
|
3
|
+
<div v-if="buttonsLeft&&buttonsLeft.length>0" class="bool_btn_l">
|
|
4
|
+
<ul>
|
|
5
|
+
<li v-for="btn in buttonsLeft" class="ct-ToolbarButton max-ToolbarButton" :class="{btn_r:btn.isRight}">
|
|
6
|
+
<component :is="btn.is" :vmodel="btn"
|
|
7
|
+
@click="clickHandler(btn,$event)"
|
|
8
|
+
@importComplete="importComplete"
|
|
9
|
+
v-if="btn.show"
|
|
10
|
+
:optionApi="optionApi"
|
|
11
|
+
:fileData="getFileData(btn)"></component>
|
|
12
|
+
</li>
|
|
13
|
+
</ul>
|
|
14
|
+
</div>
|
|
16
15
|
<div v-if="buttonsright&&buttonsright.length>0" class="bool_btn_r">
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
</div>
|
|
28
|
-
|
|
29
|
-
|
|
16
|
+
<ul>
|
|
17
|
+
<li v-for="btn in buttonsright" class="ct-ToolbarButton max-ToolbarButton" :class="{btn_r:btn.isRight}">
|
|
18
|
+
<component :is="btn.is" :vmodel="btn"
|
|
19
|
+
@click="clickHandler(btn,$event)"
|
|
20
|
+
@importComplete="importComplete"
|
|
21
|
+
v-if="btn.show"
|
|
22
|
+
:optionApi="optionApi"
|
|
23
|
+
:fileData="getFileData(btn)"></component>
|
|
24
|
+
</li>
|
|
25
|
+
</ul>
|
|
26
|
+
</div>
|
|
30
27
|
</div>
|
|
31
28
|
</template>
|
|
32
29
|
<script>
|
|
@@ -4,7 +4,8 @@ import Enum from './lib/Enum';
|
|
|
4
4
|
const Router = function (source) {
|
|
5
5
|
var rtn = {
|
|
6
6
|
disabled: source.selectedMode && source.selectedMode === Enum.ListSelectMode.Multiple ? true : false,
|
|
7
|
-
code1:'',
|
|
7
|
+
code1:'',
|
|
8
|
+
loading: false,
|
|
8
9
|
get source() {
|
|
9
10
|
return source;
|
|
10
11
|
},
|
package/src/main.js
CHANGED
|
@@ -71,8 +71,8 @@ Vue.use(centaline, {
|
|
|
71
71
|
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"}',
|
|
72
72
|
estateId: '',
|
|
73
73
|
|
|
74
|
-
authObject: '{"currentEstate":{
|
|
75
|
-
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.
|
|
74
|
+
authObject: '{"currentEstate":{},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"YSLnFY","time":1726133598476,"sign":"e08cc3c4257654dcc6b8063e3cb9b1b3","systemSource":"CCESU","empNo":"24988","empId":"202110201430497BB5FE89123A054CCA"}',
|
|
75
|
+
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImJiY2MyNDFmLTA3NTYtNDViYy04NWEwLWViOWM0NmYxZWQyNCJ9.p799X66qZJjJlnSNp6KcYSRS9xVX_T6BXikb7Y80Fcwj0NgjOdbFTGN-n_ir1qIuKGTnjYAAhdqLR3n_acf8cA',
|
|
76
76
|
};
|
|
77
77
|
},
|
|
78
78
|
// 请求完成事件,可判断是否登录过期执行响应操作
|
|
@@ -9082,6 +9082,7 @@ var Router = function Router(source) {
|
|
|
9082
9082
|
var rtn = {
|
|
9083
9083
|
disabled: source.selectedMode && source.selectedMode === __WEBPACK_IMPORTED_MODULE_3__lib_Enum__["default"].ListSelectMode.Multiple ? true : false,
|
|
9084
9084
|
code1: '',
|
|
9085
|
+
loading: false,
|
|
9085
9086
|
get source() {
|
|
9086
9087
|
return source;
|
|
9087
9088
|
},
|
|
@@ -11225,7 +11226,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
|
|
|
11225
11226
|
"use strict";
|
|
11226
11227
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__ = __webpack_require__(186);
|
|
11227
11228
|
/* unused harmony namespace reexport */
|
|
11228
|
-
/* harmony import */ var
|
|
11229
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5afe3014_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(615);
|
|
11229
11230
|
function injectStyle (ssrContext) {
|
|
11230
11231
|
__webpack_require__(609)
|
|
11231
11232
|
}
|
|
@@ -11245,7 +11246,7 @@ var __vue_scopeId__ = null
|
|
|
11245
11246
|
var __vue_module_identifier__ = null
|
|
11246
11247
|
var Component = normalizeComponent(
|
|
11247
11248
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__["a" /* default */],
|
|
11248
|
-
|
|
11249
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_5afe3014_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
|
|
11249
11250
|
__vue_template_functional__,
|
|
11250
11251
|
__vue_styles__,
|
|
11251
11252
|
__vue_scopeId__,
|
|
@@ -20502,7 +20503,7 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
20502
20503
|
"use strict";
|
|
20503
20504
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__ = __webpack_require__(157);
|
|
20504
20505
|
/* unused harmony namespace reexport */
|
|
20505
|
-
/* harmony import */ var
|
|
20506
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_4020d0d7_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(570);
|
|
20506
20507
|
function injectStyle (ssrContext) {
|
|
20507
20508
|
__webpack_require__(532)
|
|
20508
20509
|
}
|
|
@@ -20522,7 +20523,7 @@ var __vue_scopeId__ = null
|
|
|
20522
20523
|
var __vue_module_identifier__ = null
|
|
20523
20524
|
var Component = normalizeComponent(
|
|
20524
20525
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__["a" /* default */],
|
|
20525
|
-
|
|
20526
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_4020d0d7_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
|
|
20526
20527
|
__vue_template_functional__,
|
|
20527
20528
|
__vue_styles__,
|
|
20528
20529
|
__vue_scopeId__,
|
|
@@ -21920,7 +21921,16 @@ var Component = normalizeComponent(
|
|
|
21920
21921
|
}
|
|
21921
21922
|
}
|
|
21922
21923
|
} else {
|
|
21924
|
+
field.loading = true;
|
|
21925
|
+
if (!field.alert && field.alertMsg) {
|
|
21926
|
+
self.$message({
|
|
21927
|
+
message: field.alertMsg,
|
|
21928
|
+
type: 'info',
|
|
21929
|
+
showClose: true
|
|
21930
|
+
});
|
|
21931
|
+
}
|
|
21923
21932
|
field.doBlobAction(submitData, function (data, headers) {
|
|
21933
|
+
field.loading = false;
|
|
21924
21934
|
if (data.type == "application/json") {
|
|
21925
21935
|
var reader = new FileReader();
|
|
21926
21936
|
reader.readAsText(data, 'utf-8');
|
|
@@ -21939,6 +21949,13 @@ var Component = normalizeComponent(
|
|
|
21939
21949
|
}
|
|
21940
21950
|
} else {}
|
|
21941
21951
|
}
|
|
21952
|
+
if (data.rtnMsg) {
|
|
21953
|
+
self.$message({
|
|
21954
|
+
message: data.rtnMsg,
|
|
21955
|
+
type: 'info',
|
|
21956
|
+
showClose: true
|
|
21957
|
+
});
|
|
21958
|
+
}
|
|
21942
21959
|
};
|
|
21943
21960
|
} else {
|
|
21944
21961
|
if (!headers['content-disposition']) {
|
|
@@ -22938,9 +22955,6 @@ module.exports = function (KEY, exec) {
|
|
|
22938
22955
|
//
|
|
22939
22956
|
//
|
|
22940
22957
|
//
|
|
22941
|
-
//
|
|
22942
|
-
//
|
|
22943
|
-
//
|
|
22944
22958
|
|
|
22945
22959
|
/* harmony default export */ __webpack_exports__["a"] = ({
|
|
22946
22960
|
name: "ctTableToolbar",
|
|
@@ -54194,6 +54208,9 @@ if (typeof window !== "undefined" && "Vue" in window) {
|
|
|
54194
54208
|
type: 'error',
|
|
54195
54209
|
showClose: true
|
|
54196
54210
|
});
|
|
54211
|
+
file.source = { "actionType": 2 };
|
|
54212
|
+
this.model.deleteFile(file, false);
|
|
54213
|
+
this.selfValidExcute("remove");
|
|
54197
54214
|
return false;
|
|
54198
54215
|
}
|
|
54199
54216
|
var Progress = Math.min(100, Math.floor(1E4 * parseInt(res.content.nextOffSet) / parseInt(file.size)) / 100);
|
|
@@ -72977,7 +72994,7 @@ var content = __webpack_require__(533);
|
|
|
72977
72994
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
72978
72995
|
if(content.locals) module.exports = content.locals;
|
|
72979
72996
|
// add the styles to the DOM
|
|
72980
|
-
var update = __webpack_require__(3)("
|
|
72997
|
+
var update = __webpack_require__(3)("210cbd83", content, true, {});
|
|
72981
72998
|
|
|
72982
72999
|
/***/ }),
|
|
72983
73000
|
/* 533 */
|
|
@@ -73110,7 +73127,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
73110
73127
|
"use strict";
|
|
73111
73128
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTableToolbar_vue__ = __webpack_require__(160);
|
|
73112
73129
|
/* unused harmony namespace reexport */
|
|
73113
|
-
/* harmony import */ var
|
|
73130
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_79e62130_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTableToolbar_vue__ = __webpack_require__(545);
|
|
73114
73131
|
function injectStyle (ssrContext) {
|
|
73115
73132
|
__webpack_require__(543)
|
|
73116
73133
|
}
|
|
@@ -73130,7 +73147,7 @@ var __vue_scopeId__ = null
|
|
|
73130
73147
|
var __vue_module_identifier__ = null
|
|
73131
73148
|
var Component = normalizeComponent(
|
|
73132
73149
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTableToolbar_vue__["a" /* default */],
|
|
73133
|
-
|
|
73150
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_79e62130_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTableToolbar_vue__["a" /* default */],
|
|
73134
73151
|
__vue_template_functional__,
|
|
73135
73152
|
__vue_styles__,
|
|
73136
73153
|
__vue_scopeId__,
|
|
@@ -73151,7 +73168,7 @@ var content = __webpack_require__(544);
|
|
|
73151
73168
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
73152
73169
|
if(content.locals) module.exports = content.locals;
|
|
73153
73170
|
// add the styles to the DOM
|
|
73154
|
-
var update = __webpack_require__(3)("
|
|
73171
|
+
var update = __webpack_require__(3)("4f0d94de", content, true, {});
|
|
73155
73172
|
|
|
73156
73173
|
/***/ }),
|
|
73157
73174
|
/* 544 */
|
|
@@ -74397,7 +74414,7 @@ var content = __webpack_require__(610);
|
|
|
74397
74414
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
74398
74415
|
if(content.locals) module.exports = content.locals;
|
|
74399
74416
|
// add the styles to the DOM
|
|
74400
|
-
var update = __webpack_require__(3)("
|
|
74417
|
+
var update = __webpack_require__(3)("2ad8fa8e", content, true, {});
|
|
74401
74418
|
|
|
74402
74419
|
/***/ }),
|
|
74403
74420
|
/* 610 */
|
|
@@ -74408,7 +74425,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
74408
74425
|
|
|
74409
74426
|
|
|
74410
74427
|
// module
|
|
74411
|
-
exports.push([module.i, ".el-collapse{border-top:none}.ct-collapse-item-title .el-collapse-item__header{color:#303133!important;line-height:normal}.el-collapse-saveLine .ct-collapse-item-title:last-child .el-collapse-item__wrap{border-bottom:none}.button-initial{margin-top:8px}.button-absolute{z-index:100;bottom:0;left:0;border-radius:0 0 4px 4px;position:absolute;line-height:34px;background-color:#fff;width:100%;margin:auto;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0/10%);box-shadow:0 2px 20px 0 rgb(0 0 0/10%)}.tip-absolute{z-index:100;top:10;left:10;position:absolute;line-height:24px;background-color:#ffe7cc;color:#ec3d3d;border-radius:5px;padding:8px;font-size:12px}", ""]);
|
|
74428
|
+
exports.push([module.i, ".el-collapse{border-top:none}.ct-collapse-item-title .el-collapse-item__header{color:#303133!important;line-height:normal}.el-collapse-saveLine .ct-collapse-item-title:last-child .el-collapse-item__wrap{border-bottom:none}.button-initial{margin-top:8px}.button-absolute{z-index:100;bottom:0;left:0;right:0;border-radius:0 0 4px 4px;position:absolute;line-height:34px;background-color:#fff;width:100%;margin:auto;-webkit-box-shadow:0 2px 20px 0 rgb(0 0 0/10%);box-shadow:0 2px 20px 0 rgb(0 0 0/10%)}.tip-absolute{z-index:100;top:10;left:10;position:absolute;line-height:24px;background-color:#ffe7cc;color:#ec3d3d;border-radius:5px;padding:8px;font-size:12px}", ""]);
|
|
74412
74429
|
|
|
74413
74430
|
// exports
|
|
74414
74431
|
|
|
@@ -75217,7 +75234,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
75217
75234
|
"use strict";
|
|
75218
75235
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicBtn_vue__ = __webpack_require__(328);
|
|
75219
75236
|
/* unused harmony namespace reexport */
|
|
75220
|
-
/* harmony import */ var
|
|
75237
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_74a51e66_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicBtn_vue__ = __webpack_require__(646);
|
|
75221
75238
|
function injectStyle (ssrContext) {
|
|
75222
75239
|
__webpack_require__(644)
|
|
75223
75240
|
}
|
|
@@ -75237,7 +75254,7 @@ var __vue_scopeId__ = null
|
|
|
75237
75254
|
var __vue_module_identifier__ = null
|
|
75238
75255
|
var Component = normalizeComponent(
|
|
75239
75256
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicBtn_vue__["a" /* default */],
|
|
75240
|
-
|
|
75257
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_74a51e66_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicBtn_vue__["a" /* default */],
|
|
75241
75258
|
__vue_template_functional__,
|
|
75242
75259
|
__vue_styles__,
|
|
75243
75260
|
__vue_scopeId__,
|
|
@@ -75258,7 +75275,7 @@ var content = __webpack_require__(645);
|
|
|
75258
75275
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
75259
75276
|
if(content.locals) module.exports = content.locals;
|
|
75260
75277
|
// add the styles to the DOM
|
|
75261
|
-
var update = __webpack_require__(3)("
|
|
75278
|
+
var update = __webpack_require__(3)("666b5f81", content, true, {});
|
|
75262
75279
|
|
|
75263
75280
|
/***/ }),
|
|
75264
75281
|
/* 645 */
|
|
@@ -75279,7 +75296,7 @@ exports.push([module.i, ".labelText{-webkit-transform:scale(.85)}.isBlock{margin
|
|
|
75279
75296
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
75280
75297
|
|
|
75281
75298
|
"use strict";
|
|
75282
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.model.isDropdown)?_c('el-dropdown',_vm._b({attrs:{"trigger":"click","placement":"bottom","disabled":_vm.model.disabled || _vm.model.locked},on:{"command":_vm.commandClick},nativeOn:{"click":function($event){return _vm.dropClick($event)}}},'el-dropdown',_vm.model.attrs,false),[_c('el-button',{attrs:{"type":"primary"}},[_vm._v("\n "+_vm._s(_vm.model.label)),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]),_vm._v(" "),_c('el-dropdown-menu',{attrs:{"slot":"dropdown"},slot:"dropdown"},_vm._l((_vm.model.elementOptions),function(item){return _c('el-dropdown-item',{key:item.code,attrs:{"command":item.code}},[_vm._v(_vm._s(item.name))])}))],1):(_vm.model.isImport)?_c('el-upload',_vm._b({ref:"fileUpload",attrs:{"action":_vm.model.action,"size":"mini","data":_vm.uploadData,"headers":_vm.headers,"multiple":false,"show-file-list":false,"before-upload":_vm.handleAvatarBeforeUpload,"on-success":_vm.handleAvatarSuccess,"on-error":_vm.handleAvatarError}},'el-upload',_vm.model.attrs,false),[_c('el-button',{attrs:{"size":"mini","type":"primary"}},[_vm._v(_vm._s(_vm.model.label))])],1):(_vm.model.subText)?_c('el-button',_vm._b({staticStyle:{"height":"100%","padding":"5px 0"},style:({color:_vm.model.textColor,backgroundColor:_vm.model.bgColor,borderColor:_vm.model.borderColor}),attrs:{"type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked},on:{"click":function($event){_vm.$emit('click',_vm.model)}}},'el-button',_vm.model.attrs,false),[_c('div',[_vm._v(_vm._s(_vm.model.label))]),_vm._v(" "),_c('div',{staticClass:"subText"},[_vm._v(_vm._s(_vm.model.subText))])]):(_vm.model.isCallTel)?_c('el-button',_vm._b({staticClass:"max",style:({color:_vm.model.textColor,backgroundColor:_vm.model.imgUrl?'transparent':_vm.model.bgColor,borderColor:_vm.model.imgUrl?'transparent':_vm.model.borderColor,padding:_vm.model.imgUrl?'0px':null}),attrs:{"type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked},on:{"click":_vm.clickHandle}},'el-button',_vm.model.attrs,false),[_c('el-popover',{staticClass:"Stats-popover",attrs:{"popper-class":_vm.visible ? 'isBlock':'isNone',"placement":_vm.option.placement?_vm.option.placement:'left',"trigger":_vm.option.trigger?_vm.option.trigger:''},model:{value:(_vm.visible),callback:function ($$v) {_vm.visible=$$v},expression:"visible"}},[_c('div',{staticStyle:{"border-bottom":"none"}},[_c('div',{staticStyle:{"color":"#388cd3","text-align":"center"}},[_vm._v(_vm._s(_vm.message))]),_vm._v(" "),_c('img',{directives:[{name:"show",rawName:"v-show",value:(_vm.qrCode),expression:"qrCode"}],staticStyle:{"margin-top":"5px"},style:({'width':_vm.width+'px','height':_vm.height+'px'}),attrs:{"src":_vm.qrCode}})]),_vm._v(" "),(_vm.model.imgUrl)?_c('img',{attrs:{"slot":"reference","title":_vm.model.label,"src":_vm.tellImgUrl?_vm.tellImgUrl:_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'},slot:"reference"}):_c('span',{attrs:{"slot":"reference"},slot:"reference"},[_vm._v(_vm._s(_vm.model.label))])])],1):(_vm.model.isCheckbox)?_c('el-checkbox',{on:{"change":_vm.clickHandle},model:{value:(_vm.model.code1),callback:function ($$v) {_vm.$set(_vm.model, "code1", $$v)},expression:"model.code1"}},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n")]):(_vm.model.isSearchRouterKey&&_vm.fieldSearchWhere)?_c('el-dropdown',_vm._b({ref:"searchwhere",staticClass:"max max-search-btn-dropdown",style:({color:_vm.model.textColor,backgroundColor:_vm.model.imgUrl?'transparent':_vm.model.bgColor,borderColor:_vm.model.imgUrl?'transparent':_vm.model.borderColor,padding:_vm.model.imgUrl?'0px':null}),attrs:{"trigger":"click","hide-on-click":false,"split-button":"","type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked,"placement":"bottom-start"},on:{"visible-change":_vm.clickHandleDropdown,"click":_vm.clickHandle}},'el-dropdown',_vm.model.attrs,false),[(_vm.flagAppMode)?_c('div',{attrs:{"title":_vm.model.label}},[_c('img',{attrs:{"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}),_vm._v(" "),_c('div',{staticClass:"labelText",staticStyle:{"margin-top":"5px"}},[_vm._v(_vm._s(_vm.model.label))])]):_c('div',[(_vm.model.imgUrl)?_c('img',{attrs:{"title":_vm.model.label,"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}):_c('span',[_vm._v(_vm._s(_vm.model.label))])]),_vm._v(" "),_c('el-dropdown-menu',[_c('el-dropdown-item',[_c('div',{staticStyle:{"width":"100%","float":"left","margin":"10px 0"}},[_vm._l((_vm.SearchWhereButtons),function(field,index){return _c('el-button',{key:index,staticStyle:{"float":"left"},attrs:{"type":field.isHyperLink ? 'text' : 'primary',"disabled":field.locked},on:{"click":function($event){_vm.SaveSearchWhere(field)}}},[_vm._v(_vm._s(field.label))])}),_vm._v(" "),_c('span',{staticStyle:{"margin-left":"10px","margin-top":"3px","float":"left"},attrs:{"title":"维维护已保存的查询条件,如:设置和取消默认、修改标签、删除等。"},on:{"click":_vm.SearchWhereManage}},[_c('i',{staticClass:"el-icon-s-tools",staticStyle:{"font-size":"18px"}})])],2)]),_vm._v(" "),_vm._l((_vm.SearchWhereList),function(col,index){return _c('el-dropdown-item',{key:index},[_c('span',{staticStyle:{"width":"100%","float":"left"},on:{"click":function($event){_vm.clickDropdownItem(col)}}},[_vm._v(_vm._s(col.labelName))])])})],2)],1):_c('el-button',_vm._b({staticClass:"max",style:({color:_vm.model.textColor,backgroundColor:_vm.model.imgUrl?'transparent':_vm.model.bgColor,borderColor:_vm.model.imgUrl?'transparent':_vm.model.borderColor,padding:_vm.model.imgUrl?'0px':null}),attrs:{"type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked},on:{"click":_vm.clickHandle}},'el-button',_vm.model.attrs,false),[(_vm.flagAppMode)?_c('div',{attrs:{"title":_vm.model.label}},[_c('img',{attrs:{"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}),_vm._v(" "),_c('div',{staticClass:"labelText",staticStyle:{"margin-top":"5px"},domProps:{"innerHTML":_vm._s(_vm.model.label)}})]):_c('div',[(_vm.model.imgUrl)?_c('img',{attrs:{"title":_vm.model.label,"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}):_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.label)}})])])}
|
|
75299
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.model.isDropdown)?_c('el-dropdown',_vm._b({attrs:{"trigger":"click","placement":"bottom","disabled":_vm.model.disabled || _vm.model.locked},on:{"command":_vm.commandClick},nativeOn:{"click":function($event){return _vm.dropClick($event)}}},'el-dropdown',_vm.model.attrs,false),[_c('el-button',{attrs:{"type":"primary"}},[_vm._v("\n "+_vm._s(_vm.model.label)),_c('i',{staticClass:"el-icon-arrow-down el-icon--right"})]),_vm._v(" "),_c('el-dropdown-menu',{attrs:{"slot":"dropdown"},slot:"dropdown"},_vm._l((_vm.model.elementOptions),function(item){return _c('el-dropdown-item',{key:item.code,attrs:{"command":item.code}},[_vm._v(_vm._s(item.name))])}))],1):(_vm.model.isImport)?_c('el-upload',_vm._b({ref:"fileUpload",attrs:{"action":_vm.model.action,"size":"mini","data":_vm.uploadData,"headers":_vm.headers,"multiple":false,"show-file-list":false,"before-upload":_vm.handleAvatarBeforeUpload,"on-success":_vm.handleAvatarSuccess,"on-error":_vm.handleAvatarError}},'el-upload',_vm.model.attrs,false),[_c('el-button',{attrs:{"size":"mini","type":"primary"}},[_vm._v(_vm._s(_vm.model.label))])],1):(_vm.model.subText)?_c('el-button',_vm._b({staticStyle:{"height":"100%","padding":"5px 0"},style:({color:_vm.model.textColor,backgroundColor:_vm.model.bgColor,borderColor:_vm.model.borderColor}),attrs:{"type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked},on:{"click":function($event){_vm.$emit('click',_vm.model)}}},'el-button',_vm.model.attrs,false),[_c('div',[_vm._v(_vm._s(_vm.model.label))]),_vm._v(" "),_c('div',{staticClass:"subText"},[_vm._v(_vm._s(_vm.model.subText))])]):(_vm.model.isCallTel)?_c('el-button',_vm._b({staticClass:"max",style:({color:_vm.model.textColor,backgroundColor:_vm.model.imgUrl?'transparent':_vm.model.bgColor,borderColor:_vm.model.imgUrl?'transparent':_vm.model.borderColor,padding:_vm.model.imgUrl?'0px':null}),attrs:{"type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked},on:{"click":_vm.clickHandle}},'el-button',_vm.model.attrs,false),[_c('el-popover',{staticClass:"Stats-popover",attrs:{"popper-class":_vm.visible ? 'isBlock':'isNone',"placement":_vm.option.placement?_vm.option.placement:'left',"trigger":_vm.option.trigger?_vm.option.trigger:''},model:{value:(_vm.visible),callback:function ($$v) {_vm.visible=$$v},expression:"visible"}},[_c('div',{staticStyle:{"border-bottom":"none"}},[_c('div',{staticStyle:{"color":"#388cd3","text-align":"center"}},[_vm._v(_vm._s(_vm.message))]),_vm._v(" "),_c('img',{directives:[{name:"show",rawName:"v-show",value:(_vm.qrCode),expression:"qrCode"}],staticStyle:{"margin-top":"5px"},style:({'width':_vm.width+'px','height':_vm.height+'px'}),attrs:{"src":_vm.qrCode}})]),_vm._v(" "),(_vm.model.imgUrl)?_c('img',{attrs:{"slot":"reference","title":_vm.model.label,"src":_vm.tellImgUrl?_vm.tellImgUrl:_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'},slot:"reference"}):_c('span',{attrs:{"slot":"reference"},slot:"reference"},[_vm._v(_vm._s(_vm.model.label))])])],1):(_vm.model.isCheckbox)?_c('el-checkbox',{on:{"change":_vm.clickHandle},model:{value:(_vm.model.code1),callback:function ($$v) {_vm.$set(_vm.model, "code1", $$v)},expression:"model.code1"}},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n")]):(_vm.model.isSearchRouterKey&&_vm.fieldSearchWhere)?_c('el-dropdown',_vm._b({ref:"searchwhere",staticClass:"max max-search-btn-dropdown",style:({color:_vm.model.textColor,backgroundColor:_vm.model.imgUrl?'transparent':_vm.model.bgColor,borderColor:_vm.model.imgUrl?'transparent':_vm.model.borderColor,padding:_vm.model.imgUrl?'0px':null}),attrs:{"trigger":"click","hide-on-click":false,"split-button":"","type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked,"placement":"bottom-start"},on:{"visible-change":_vm.clickHandleDropdown,"click":_vm.clickHandle}},'el-dropdown',_vm.model.attrs,false),[(_vm.flagAppMode)?_c('div',{attrs:{"title":_vm.model.label}},[_c('img',{attrs:{"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}),_vm._v(" "),_c('div',{staticClass:"labelText",staticStyle:{"margin-top":"5px"}},[_vm._v(_vm._s(_vm.model.label))])]):_c('div',[(_vm.model.imgUrl)?_c('img',{attrs:{"title":_vm.model.label,"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}):_c('span',[_vm._v(_vm._s(_vm.model.label))])]),_vm._v(" "),_c('el-dropdown-menu',[_c('el-dropdown-item',[_c('div',{staticStyle:{"width":"100%","float":"left","margin":"10px 0"}},[_vm._l((_vm.SearchWhereButtons),function(field,index){return _c('el-button',{key:index,staticStyle:{"float":"left"},attrs:{"type":field.isHyperLink ? 'text' : 'primary',"disabled":field.locked},on:{"click":function($event){_vm.SaveSearchWhere(field)}}},[_vm._v(_vm._s(field.label))])}),_vm._v(" "),_c('span',{staticStyle:{"margin-left":"10px","margin-top":"3px","float":"left"},attrs:{"title":"维维护已保存的查询条件,如:设置和取消默认、修改标签、删除等。"},on:{"click":_vm.SearchWhereManage}},[_c('i',{staticClass:"el-icon-s-tools",staticStyle:{"font-size":"18px"}})])],2)]),_vm._v(" "),_vm._l((_vm.SearchWhereList),function(col,index){return _c('el-dropdown-item',{key:index},[_c('span',{staticStyle:{"width":"100%","float":"left"},on:{"click":function($event){_vm.clickDropdownItem(col)}}},[_vm._v(_vm._s(col.labelName))])])})],2)],1):_c('el-button',_vm._b({staticClass:"max",style:({color:_vm.model.textColor,backgroundColor:_vm.model.imgUrl?'transparent':_vm.model.bgColor,borderColor:_vm.model.imgUrl?'transparent':_vm.model.borderColor,padding:_vm.model.imgUrl?'0px':null}),attrs:{"loading":_vm.model.loading,"type":_vm.model.isHyperLink ? 'text' : 'primary',"icon":_vm.model.icon,"disabled":_vm.model.disabled || _vm.model.locked},on:{"click":_vm.clickHandle}},'el-button',_vm.model.attrs,false),[(_vm.flagAppMode)?_c('div',{attrs:{"title":_vm.model.label}},[_c('img',{attrs:{"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}),_vm._v(" "),_c('div',{staticClass:"labelText",staticStyle:{"margin-top":"5px"},domProps:{"innerHTML":_vm._s(_vm.model.label)}})]):_c('div',{style:({display:_vm.model.loading?'inline-block':''})},[(_vm.model.imgUrl)?_c('img',{attrs:{"title":_vm.model.label,"src":_vm.model.imgUrl,"height":_vm.model.buttonHeight+'px'}}):_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.label)}})])])}
|
|
75283
75300
|
var staticRenderFns = []
|
|
75284
75301
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
75285
75302
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -79953,7 +79970,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
79953
79970
|
"use strict";
|
|
79954
79971
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__ = __webpack_require__(341);
|
|
79955
79972
|
/* unused harmony namespace reexport */
|
|
79956
|
-
/* harmony import */ var
|
|
79973
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_59fde777_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__ = __webpack_require__(706);
|
|
79957
79974
|
function injectStyle (ssrContext) {
|
|
79958
79975
|
__webpack_require__(699)
|
|
79959
79976
|
}
|
|
@@ -79973,7 +79990,7 @@ var __vue_scopeId__ = null
|
|
|
79973
79990
|
var __vue_module_identifier__ = null
|
|
79974
79991
|
var Component = normalizeComponent(
|
|
79975
79992
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFile_vue__["a" /* default */],
|
|
79976
|
-
|
|
79993
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_59fde777_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFile_vue__["a" /* default */],
|
|
79977
79994
|
__vue_template_functional__,
|
|
79978
79995
|
__vue_styles__,
|
|
79979
79996
|
__vue_scopeId__,
|
|
@@ -79994,7 +80011,7 @@ var content = __webpack_require__(700);
|
|
|
79994
80011
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
79995
80012
|
if(content.locals) module.exports = content.locals;
|
|
79996
80013
|
// add the styles to the DOM
|
|
79997
|
-
var update = __webpack_require__(3)("
|
|
80014
|
+
var update = __webpack_require__(3)("70078d4a", content, true, {});
|
|
79998
80015
|
|
|
79999
80016
|
/***/ }),
|
|
80000
80017
|
/* 700 */
|