centaline-data-driven 1.6.6 → 1.6.7
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 +7 -0
- package/src/Form.vue +2 -2
- package/src/centaline/dynamicForm/src/dynamicForm.vue +11 -8
- package/src/centaline/dynamicSearchList/src/dynamicSearchList.vue +5 -2
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +3 -0
- package/src/centaline/loader/src/ctl/SearchTable.js +15 -0
- package/src/main.js +6 -6
- package/wwwroot/static/centaline/centaline-data-driven.js +38 -13
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/release-log.md
CHANGED
package/src/Form.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="form-app" class="data-driven" style="width:100%;height:100%;overflow:auto">
|
|
3
3
|
<!-- <ct-form :source="formdata.content" :apiParam="apiParam"></ct-form> -->
|
|
4
|
-
<ct-form :api="'/
|
|
4
|
+
<ct-form :api="'/salemanage/ContractByPoint/readDetail'" :apiParam="apiParam" :topHeight="topHeight" :documentHeight="'600px'"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
|
|
15
|
+
"commissionMode":2,"contractId":"240403142141DC5F9DCDA2A244BCA381","propertyId":"231128145050EB00D506577A4DF09BB5","searchFields":{"fields":[{"fieldName1":"CompanyPath","groupName":"CompanyPath","operation":1,"searchDataType":1,"searchValue1":"009"},{"fieldName1":"EmpID","groupName":"EmpID","operation":1,"searchDataType":1,"searchValue1":"20201030134831BAA0AC5CDC9344B21E"},{"fieldName1":"DeptPath","groupName":"DeptPath","operation":1,"searchDataType":1,"searchValue1":"009.007"},{"fieldName1":"type","groupName":"type","operation":1,"searchDataType":1,"searchValue1":"left"},{"fieldName1":"EstateID","groupName":"EstateID","operation":2,"searchDataType":3,"searchValue1":"23112217144782E4C3D5F8164CB2AE3E"},{"fieldName1":"ContractDateStar","fieldName2":"ContractDateEnd","groupName":"ContractDateStar","operation":5,"searchDataType":4,"searchValue1":"2024-04-01","searchValue2":""}]},"pageAttribute":{"pageIndex":1},"columnName":"contractDate","actionType":3
|
|
16
16
|
},
|
|
17
17
|
topHeight:10,
|
|
18
18
|
}
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
18
18
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
19
19
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
20
|
-
@popupSearchList="popupSearchListHandler"
|
|
20
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
21
21
|
@tableButtonClick="clickHandler"></component>
|
|
22
22
|
</el-col>
|
|
23
23
|
</template>
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
28
28
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
29
29
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
30
|
-
@popupSearchList="popupSearchListHandler"
|
|
30
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
31
31
|
@tableButtonClick="clickHandler"></component>
|
|
32
32
|
</el-col>
|
|
33
33
|
</template>
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
48
48
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
49
49
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
50
|
-
@popupSearchList="popupSearchListHandler"
|
|
50
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
51
51
|
@tableButtonClick="clickHandler"></component>
|
|
52
52
|
</el-col>
|
|
53
53
|
</template>
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
58
58
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
59
59
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
60
|
-
@popupSearchList="popupSearchListHandler"
|
|
60
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
61
61
|
@tableButtonClick="clickHandler"></component>
|
|
62
62
|
</el-col>
|
|
63
63
|
</template>
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
83
83
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
84
84
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
85
|
-
@popupSearchList="popupSearchListHandler"
|
|
85
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
86
86
|
@tableButtonClick="clickHandler"></component>
|
|
87
87
|
</el-col>
|
|
88
88
|
</template>
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
93
93
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
94
94
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
95
|
-
@popupSearchList="popupSearchListHandler"
|
|
95
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
96
96
|
@tableButtonClick="clickHandler"></component>
|
|
97
97
|
</el-col>
|
|
98
98
|
</template>
|
|
@@ -111,7 +111,7 @@
|
|
|
111
111
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
112
112
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
113
113
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
114
|
-
@popupSearchList="popupSearchListHandler"
|
|
114
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
115
115
|
@tableButtonClick="clickHandler"></component>
|
|
116
116
|
</el-col>
|
|
117
117
|
</template>
|
|
@@ -121,7 +121,7 @@
|
|
|
121
121
|
:fileData="getFileData(col)" :from="'form'" :documentHeight="documentHeight" :documentWidth="documentWidth"
|
|
122
122
|
@click="fieldClickHandler(col,$event)" @change="changeHandler(col,$event)" @enter="enterHandler(col,$event)"
|
|
123
123
|
@input="inputHandler(col,$event)" @importComplete="importComplete" @blur="blurHandler(col,$event)"
|
|
124
|
-
@popupSearchList="popupSearchListHandler"
|
|
124
|
+
@popupSearchList="popupSearchListHandler" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
125
125
|
@tableButtonClick="clickHandler"></component>
|
|
126
126
|
</el-col>
|
|
127
127
|
</template>
|
|
@@ -1421,6 +1421,9 @@
|
|
|
1421
1421
|
this.$nextTick(() => {
|
|
1422
1422
|
});
|
|
1423
1423
|
},
|
|
1424
|
+
flagNotificationParentAfterContentChanged() {
|
|
1425
|
+
this.init();
|
|
1426
|
+
},
|
|
1424
1427
|
}
|
|
1425
1428
|
}
|
|
1426
1429
|
</script>
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
@toolbarClick="toolbarClickHandler" @refreshParent="refreshParentHandler" :key="reloadKeyTable" @searchComplate="searchComplate" @closeSideBar="closeSideBar"
|
|
18
18
|
@rowClickHandle="rowClickHandle" @scrollHandle="scrollHandle" @refreshRowHandle="refreshRowHandle" @doClosePopoverHandle="doClosePopoverHandle"
|
|
19
19
|
@showTitle="showTitleHandler" @popupClickHandler="popupClickHandler" @simpleRouterRefreshHandler="simpleRouterRefreshHandler"
|
|
20
|
-
@drop="drop" :dragStartItem="dragStartItem" :dragStartName="dragStartName"
|
|
20
|
+
@drop="drop" :dragStartItem="dragStartItem" :dragStartName="dragStartName" @flagNotificationParentAfterContentChanged="flagNotificationParentAfterContentChanged"
|
|
21
21
|
></ct-searchtable>
|
|
22
22
|
</div>
|
|
23
23
|
<div ref="sidebar" v-if="flagSideBar && flagSideBarOfData"
|
|
@@ -491,7 +491,10 @@
|
|
|
491
491
|
},
|
|
492
492
|
drop(row, column) {
|
|
493
493
|
this.$emit('drop',row,column);
|
|
494
|
-
}
|
|
494
|
+
},
|
|
495
|
+
flagNotificationParentAfterContentChanged() {
|
|
496
|
+
this.$emit('flagNotificationParentAfterContentChanged');
|
|
497
|
+
},
|
|
495
498
|
},
|
|
496
499
|
beforeDestroy() {
|
|
497
500
|
async function destroyDeep(vnode) {
|
|
@@ -2070,6 +2070,9 @@ export default {
|
|
|
2070
2070
|
if (data && !flagSimple) {
|
|
2071
2071
|
self.$emit("simpleRouterRefreshHandler");
|
|
2072
2072
|
}
|
|
2073
|
+
if(self.model.flagNotificationParentAfterContentChanged){
|
|
2074
|
+
self.$emit("flagNotificationParentAfterContentChanged");
|
|
2075
|
+
}
|
|
2073
2076
|
},
|
|
2074
2077
|
data,
|
|
2075
2078
|
router
|
|
@@ -892,6 +892,10 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
|
|
|
892
892
|
else{
|
|
893
893
|
rtn.setRow(rtn.listData);
|
|
894
894
|
}
|
|
895
|
+
|
|
896
|
+
if(rtn.flagNotificationParentAfterContentChanged){
|
|
897
|
+
rtn.$vue.$emit("flagNotificationParentAfterContentChanged");
|
|
898
|
+
}
|
|
895
899
|
break;
|
|
896
900
|
|
|
897
901
|
case Enum.ActionType.New: //新增
|
|
@@ -911,6 +915,10 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
|
|
|
911
915
|
else{
|
|
912
916
|
rtn.$vue.updateCurrentRow({flagAddRowAfterAction:true},{responseData:response});
|
|
913
917
|
}
|
|
918
|
+
|
|
919
|
+
if(rtn.flagNotificationParentAfterContentChanged){
|
|
920
|
+
rtn.$vue.$emit("flagNotificationParentAfterContentChanged");
|
|
921
|
+
}
|
|
914
922
|
break;
|
|
915
923
|
|
|
916
924
|
case Enum.ActionType.Update: //修改
|
|
@@ -926,6 +934,10 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
|
|
|
926
934
|
else{
|
|
927
935
|
rtn.$vue.updateCurrentRow({flagFreshCurrentRow:true},{responseData:response});
|
|
928
936
|
}
|
|
937
|
+
|
|
938
|
+
if(rtn.flagNotificationParentAfterContentChanged){
|
|
939
|
+
rtn.$vue.$emit("flagNotificationParentAfterContentChanged");
|
|
940
|
+
}
|
|
929
941
|
break;
|
|
930
942
|
|
|
931
943
|
case Enum.ActionType.Export: //导出
|
|
@@ -1059,6 +1071,9 @@ const SearchTable = function (data, callBack, searchModel, flagSearch, defaultSe
|
|
|
1059
1071
|
button.is = "ct-btn";
|
|
1060
1072
|
return button;
|
|
1061
1073
|
},
|
|
1074
|
+
get flagNotificationParentAfterContentChanged() {
|
|
1075
|
+
return source.content.flagNotificationParentAfterContentChanged;
|
|
1076
|
+
},
|
|
1062
1077
|
};
|
|
1063
1078
|
if (rtn.template) {
|
|
1064
1079
|
var tempLoader = template.loader(rtn.template).default;
|
package/src/main.js
CHANGED
|
@@ -17,14 +17,14 @@ Vue.use(centaline, {
|
|
|
17
17
|
baseUrl: "http://10.88.22.46:17070/max-uplink-api/",
|
|
18
18
|
// baseUrl: "http://10.88.22.46:6060/onecard-api/",
|
|
19
19
|
// baseUrl: "http://10.88.22.13:17070/max-uplink-api/",
|
|
20
|
-
baseUrl: "http://10.88.22.13:6060/onecard-api/",
|
|
20
|
+
// baseUrl: "http://10.88.22.13:6060/onecard-api/",
|
|
21
21
|
// baseUrl: "http://10.6.1.163:9000/max-uplink-api/v1/form/router",
|
|
22
22
|
// baseUrl: "http://10.25.10.63:9999/service-api/",
|
|
23
23
|
// baseUrl: "http://10.25.10.69:8080/",
|
|
24
24
|
// baseUrl: "https://ccesutest.centaline.com.cn/service-api/v1/form/router",
|
|
25
25
|
// baseUrl: "http://10.88.22.69:8080/api/",
|
|
26
|
-
|
|
27
|
-
// baseUrl: "http://10.1.245.111:
|
|
26
|
+
baseUrl: "http://10.88.22.42:9999/service-api/",
|
|
27
|
+
// baseUrl: "http://10.1.245.111:31574/service-api/",
|
|
28
28
|
// baseUrl: "http://tjcptest.centaline.com.cn/",
|
|
29
29
|
// baseUrl: "https://shccai.centaline.com.cn/api/",
|
|
30
30
|
flagRouterSelf: true,
|
|
@@ -60,11 +60,11 @@ Vue.use(centaline, {
|
|
|
60
60
|
authObject: '{token:"1080-1778612338593763328"}',
|
|
61
61
|
|
|
62
62
|
// originalRequestURL: 'http://10.88.22.67:8080',
|
|
63
|
-
|
|
63
|
+
EstateInfo: '{"estateId":"23112217144782E4C3D5F8164CB2AE3E","estateName":"%E9%93%B8%E5%B1%B1%E7%85%AE%E6%B5%B7","estDeptPath":"009.007.001.002"}',
|
|
64
64
|
estateId: '',
|
|
65
65
|
|
|
66
|
-
|
|
67
|
-
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.
|
|
66
|
+
authObject: '{"currentEstate":{"estateId":"23112217144782E4C3D5F8164CB2AE3E","estateName":"%E9%93%B8%E5%B1%B1%E7%85%AE%E6%B5%B7","estDeptPath":"009.007.001.002"},"platform":1,"osVersion":"","clientVersion":"","machineCode":"d2131a034036ffd8415011c894807824","token":"","random":"UXhMhQ","time":1714015400375,"sign":"c3be796d30d5a04d4f1037e8a12bd5b1","systemSource":"CCESU","empNo":"zhangtm","empId":"20201030134831BAA0AC5CDC9344B21E"}',
|
|
67
|
+
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjE2MjI4MGZlLTdkMWMtNDZiNS1hYTA4LTBjMDhmNTdlNDU0MSJ9.GBTB2O5oLnvhjrexjS_SO5F9YWZks7qoVPYYuPBsxzgMuwBZ095A2SD_ELf05jPl9Bxt2zwhz99pIfoSS-2DWA',
|
|
68
68
|
};
|
|
69
69
|
},
|
|
70
70
|
// 请求完成事件,可判断是否登录过期执行响应操作
|
|
@@ -11122,7 +11122,7 @@ module.exports = function (exec) {
|
|
|
11122
11122
|
"use strict";
|
|
11123
11123
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__ = __webpack_require__(150);
|
|
11124
11124
|
/* unused harmony namespace reexport */
|
|
11125
|
-
/* harmony import */ var
|
|
11125
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f77c5272_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__ = __webpack_require__(628);
|
|
11126
11126
|
function injectStyle (ssrContext) {
|
|
11127
11127
|
__webpack_require__(509)
|
|
11128
11128
|
}
|
|
@@ -11137,12 +11137,12 @@ var __vue_template_functional__ = false
|
|
|
11137
11137
|
/* styles */
|
|
11138
11138
|
var __vue_styles__ = injectStyle
|
|
11139
11139
|
/* scopeId */
|
|
11140
|
-
var __vue_scopeId__ = "data-v-
|
|
11140
|
+
var __vue_scopeId__ = "data-v-f77c5272"
|
|
11141
11141
|
/* moduleIdentifier (server only) */
|
|
11142
11142
|
var __vue_module_identifier__ = null
|
|
11143
11143
|
var Component = normalizeComponent(
|
|
11144
11144
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchList_vue__["a" /* default */],
|
|
11145
|
-
|
|
11145
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f77c5272_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchList_vue__["a" /* default */],
|
|
11146
11146
|
__vue_template_functional__,
|
|
11147
11147
|
__vue_styles__,
|
|
11148
11148
|
__vue_scopeId__,
|
|
@@ -11189,7 +11189,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
|
|
|
11189
11189
|
"use strict";
|
|
11190
11190
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__ = __webpack_require__(184);
|
|
11191
11191
|
/* unused harmony namespace reexport */
|
|
11192
|
-
/* harmony import */ var
|
|
11192
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6dac0f22_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(609);
|
|
11193
11193
|
function injectStyle (ssrContext) {
|
|
11194
11194
|
__webpack_require__(603)
|
|
11195
11195
|
}
|
|
@@ -11209,7 +11209,7 @@ var __vue_scopeId__ = null
|
|
|
11209
11209
|
var __vue_module_identifier__ = null
|
|
11210
11210
|
var Component = normalizeComponent(
|
|
11211
11211
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__["a" /* default */],
|
|
11212
|
-
|
|
11212
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6dac0f22_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
|
|
11213
11213
|
__vue_template_functional__,
|
|
11214
11214
|
__vue_styles__,
|
|
11215
11215
|
__vue_scopeId__,
|
|
@@ -19228,6 +19228,9 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
19228
19228
|
},
|
|
19229
19229
|
drop: function drop(row, column) {
|
|
19230
19230
|
this.$emit('drop', row, column);
|
|
19231
|
+
},
|
|
19232
|
+
flagNotificationParentAfterContentChanged: function flagNotificationParentAfterContentChanged() {
|
|
19233
|
+
this.$emit('flagNotificationParentAfterContentChanged');
|
|
19231
19234
|
}
|
|
19232
19235
|
},
|
|
19233
19236
|
beforeDestroy: function beforeDestroy() {
|
|
@@ -20291,7 +20294,7 @@ exports.f = __webpack_require__(30) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
20291
20294
|
"use strict";
|
|
20292
20295
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__ = __webpack_require__(155);
|
|
20293
20296
|
/* unused harmony namespace reexport */
|
|
20294
|
-
/* harmony import */ var
|
|
20297
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_842d5ab4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__ = __webpack_require__(564);
|
|
20295
20298
|
function injectStyle (ssrContext) {
|
|
20296
20299
|
__webpack_require__(526)
|
|
20297
20300
|
}
|
|
@@ -20311,7 +20314,7 @@ var __vue_scopeId__ = null
|
|
|
20311
20314
|
var __vue_module_identifier__ = null
|
|
20312
20315
|
var Component = normalizeComponent(
|
|
20313
20316
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchTable_vue__["a" /* default */],
|
|
20314
|
-
|
|
20317
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_842d5ab4_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchTable_vue__["a" /* default */],
|
|
20315
20318
|
__vue_template_functional__,
|
|
20316
20319
|
__vue_styles__,
|
|
20317
20320
|
__vue_scopeId__,
|
|
@@ -22270,6 +22273,9 @@ var Component = normalizeComponent(
|
|
|
22270
22273
|
if (data && !flagSimple) {
|
|
22271
22274
|
self.$emit("simpleRouterRefreshHandler");
|
|
22272
22275
|
}
|
|
22276
|
+
if (self.model.flagNotificationParentAfterContentChanged) {
|
|
22277
|
+
self.$emit("flagNotificationParentAfterContentChanged");
|
|
22278
|
+
}
|
|
22273
22279
|
}, data, router);
|
|
22274
22280
|
}
|
|
22275
22281
|
},
|
|
@@ -30035,6 +30041,9 @@ module.exports = g;
|
|
|
30035
30041
|
},
|
|
30036
30042
|
refreshPage: function refreshPage() {
|
|
30037
30043
|
this.$nextTick(function () {});
|
|
30044
|
+
},
|
|
30045
|
+
flagNotificationParentAfterContentChanged: function flagNotificationParentAfterContentChanged() {
|
|
30046
|
+
this.init();
|
|
30038
30047
|
}
|
|
30039
30048
|
}
|
|
30040
30049
|
});
|
|
@@ -58740,6 +58749,10 @@ var SearchTable = function SearchTable(data, callBack, searchModel, flagSearch,
|
|
|
58740
58749
|
} else {
|
|
58741
58750
|
rtn.setRow(rtn.listData);
|
|
58742
58751
|
}
|
|
58752
|
+
|
|
58753
|
+
if (rtn.flagNotificationParentAfterContentChanged) {
|
|
58754
|
+
rtn.$vue.$emit("flagNotificationParentAfterContentChanged");
|
|
58755
|
+
}
|
|
58743
58756
|
break;
|
|
58744
58757
|
|
|
58745
58758
|
case __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ActionType.New: //新增
|
|
@@ -58759,6 +58772,10 @@ var SearchTable = function SearchTable(data, callBack, searchModel, flagSearch,
|
|
|
58759
58772
|
} else {
|
|
58760
58773
|
rtn.$vue.updateCurrentRow({ flagAddRowAfterAction: true }, { responseData: response });
|
|
58761
58774
|
}
|
|
58775
|
+
|
|
58776
|
+
if (rtn.flagNotificationParentAfterContentChanged) {
|
|
58777
|
+
rtn.$vue.$emit("flagNotificationParentAfterContentChanged");
|
|
58778
|
+
}
|
|
58762
58779
|
break;
|
|
58763
58780
|
|
|
58764
58781
|
case __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ActionType.Update: //修改
|
|
@@ -58774,6 +58791,10 @@ var SearchTable = function SearchTable(data, callBack, searchModel, flagSearch,
|
|
|
58774
58791
|
} else {
|
|
58775
58792
|
rtn.$vue.updateCurrentRow({ flagFreshCurrentRow: true }, { responseData: response });
|
|
58776
58793
|
}
|
|
58794
|
+
|
|
58795
|
+
if (rtn.flagNotificationParentAfterContentChanged) {
|
|
58796
|
+
rtn.$vue.$emit("flagNotificationParentAfterContentChanged");
|
|
58797
|
+
}
|
|
58777
58798
|
break;
|
|
58778
58799
|
|
|
58779
58800
|
case __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ActionType.Export:
|
|
@@ -58907,6 +58928,10 @@ var SearchTable = function SearchTable(data, callBack, searchModel, flagSearch,
|
|
|
58907
58928
|
var button = Object(__WEBPACK_IMPORTED_MODULE_3__Router__["default"])(v);
|
|
58908
58929
|
button.is = "ct-btn";
|
|
58909
58930
|
return button;
|
|
58931
|
+
},
|
|
58932
|
+
|
|
58933
|
+
get flagNotificationParentAfterContentChanged() {
|
|
58934
|
+
return source.content.flagNotificationParentAfterContentChanged;
|
|
58910
58935
|
}
|
|
58911
58936
|
};
|
|
58912
58937
|
if (rtn.template) {
|
|
@@ -71249,7 +71274,7 @@ var content = __webpack_require__(510);
|
|
|
71249
71274
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
71250
71275
|
if(content.locals) module.exports = content.locals;
|
|
71251
71276
|
// add the styles to the DOM
|
|
71252
|
-
var update = __webpack_require__(3)("
|
|
71277
|
+
var update = __webpack_require__(3)("6c26b2b7", content, true, {});
|
|
71253
71278
|
|
|
71254
71279
|
/***/ }),
|
|
71255
71280
|
/* 510 */
|
|
@@ -71260,7 +71285,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
71260
71285
|
|
|
71261
71286
|
|
|
71262
71287
|
// module
|
|
71263
|
-
exports.push([module.i, ".sidebar[data-v-
|
|
71288
|
+
exports.push([module.i, ".sidebar[data-v-f77c5272]{z-index:1000;top:-1px;bottom:-1px;padding:0;width:auto;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);-webkit-box-shadow:0 6px 12px rgba(0,0,0,.18);box-shadow:0 6px 12px rgba(0,0,0,.18)}", ""]);
|
|
71264
71289
|
|
|
71265
71290
|
// exports
|
|
71266
71291
|
|
|
@@ -72257,7 +72282,7 @@ var content = __webpack_require__(527);
|
|
|
72257
72282
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
72258
72283
|
if(content.locals) module.exports = content.locals;
|
|
72259
72284
|
// add the styles to the DOM
|
|
72260
|
-
var update = __webpack_require__(3)("
|
|
72285
|
+
var update = __webpack_require__(3)("82861f14", content, true, {});
|
|
72261
72286
|
|
|
72262
72287
|
/***/ }),
|
|
72263
72288
|
/* 527 */
|
|
@@ -73677,7 +73702,7 @@ var content = __webpack_require__(604);
|
|
|
73677
73702
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
73678
73703
|
if(content.locals) module.exports = content.locals;
|
|
73679
73704
|
// add the styles to the DOM
|
|
73680
|
-
var update = __webpack_require__(3)("
|
|
73705
|
+
var update = __webpack_require__(3)("6fd8b274", content, true, {});
|
|
73681
73706
|
|
|
73682
73707
|
/***/ }),
|
|
73683
73708
|
/* 604 */
|
|
@@ -73772,7 +73797,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
73772
73797
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
73773
73798
|
|
|
73774
73799
|
"use strict";
|
|
73775
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:"loading",rawName:"v-loading",value:(_vm.loading),expression:"loading"}],style:({width:_vm.pageWidth?_vm.pageWidth+'px':'100%',margin:'auto','min-height': _vm.minHeight})},[(_vm.model !== null && !_vm.loading)?_c('div',{key:_vm.formKey,staticClass:"ct-form",class:{'domDisabled':_vm.model.pageDisabled}},[_c(_vm.model.showTitle?'el-main':'el-card',{tag:"component"},[(typeof _vm.model.title !== 'undefined' && _vm.model.flagShowTitle)?_c('div',{staticClass:"clearfix",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-weight":"bold"}},[_vm._v(_vm._s(_vm.model.title))])]):_vm._e(),_vm._v(" "),(_vm.collapseFieldsRow.length > 0)?_c('el-row',[_vm._l((_vm.collapseFieldsRow[0]),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2):_vm._e(),_vm._v(" "),(_vm.model.isHorizontalLayout)?_c('el-tabs',{on:{"tab-click":_vm.tabClickHandler},model:{value:(_vm.activeName),callback:function ($$v) {_vm.activeName=$$v},expression:"activeName"}},_vm._l((_vm.collapse),function(item,index){return (item.show !== false)?_c('el-tab-pane',{key:index,attrs:{"label":item.label,"name":index.toString()}},[_c('el-row',[_vm._l((_vm.collapseFieldsRow[index + 1]),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],1):_vm._e()})):_c('el-collapse',{class:_vm.model.flagHideSaveLine?'el-collapse-saveLine':'',on:{"change":_vm.collapseHandleChange},model:{value:(_vm.collapseActiveNames),callback:function ($$v) {_vm.collapseActiveNames=$$v},expression:"collapseActiveNames"}},_vm._l((_vm.collapse),function(item,index){return (item.show !== false)?_c('el-collapse-item',{key:index,class:item.lock?'ct-collapse-item-title':'',attrs:{"title":item.label,"name":index,"disabled":item.lock}},[_c('template',{slot:"title"},[_c('i',{staticClass:"sign"}),_vm._v(" "),_c('span',{class:[item.labelClass]},[_vm._v(_vm._s(item.label))])]),_vm._v(" "),_c('el-row',[_vm._l((_vm.collapseFieldsRow[index + 1]),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],2):_vm._e()})),_vm._v(" "),(_vm.independentItem.length > 0)?_c('el-row',{staticStyle:{"margin-top":"20px"}},[_vm._l((_vm.independentItem),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2):_vm._e(),_vm._v(" "),(_vm.model.links.findIndex(function (v){return v.show}) > -1)?_c('el-row',{staticStyle:{"margin-top":"8px"}},[_c('el-col',{staticStyle:{"text-align":"left"},attrs:{"span":24}},_vm._l((_vm.model.links),function(btn,index){return (btn.show)?_c(btn.is,{key:index,tag:"component",attrs:{"vmodel":btn},on:{"click":_vm.clickHandler}}):_vm._e()}))],1):_vm._e(),_vm._v(" "),(_vm.model.buttons.findIndex(function (v){return v.show}) > -1)?_c('el-row',{class:_vm.isScroll?'ccai button-absolute':'button-initial',style:({'max-width':_vm.pageWidth?(_vm.pageWidth-20)+'px':'100%'})},[_c('el-col',{staticClass:"btnPadBom",staticStyle:{"text-align":"center","padding-bottom":"1px","padding-left":"5px","padding-right":"5px"},attrs:{"span":24}},_vm._l((_vm.model.buttons),function(btn,index){return (btn.show)?_c(btn.is,{key:index,tag:"component",style:({'float':btn.isCheckbox ? btn.alignCss:''}),attrs:{"vmodel":btn},on:{"click":_vm.clickHandler}}):_vm._e()}))],1):_vm._e(),_vm._v(" "),(_vm.isScroll)?_c('div',{staticStyle:{"height":"34px"}}):_vm._e()],1)],1):_vm._e(),_vm._v(" "),(_vm.loading)?_c('div',{staticStyle:{"min-height":"200px"}}):_vm._e(),_vm._v(" "),_c('iframe',{staticStyle:{"height":"0px","width":"0px","border-width":"0px","display":"none"},attrs:{"src":_vm.downloadUrl}})])}
|
|
73800
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:"loading",rawName:"v-loading",value:(_vm.loading),expression:"loading"}],style:({width:_vm.pageWidth?_vm.pageWidth+'px':'100%',margin:'auto','min-height': _vm.minHeight})},[(_vm.model !== null && !_vm.loading)?_c('div',{key:_vm.formKey,staticClass:"ct-form",class:{'domDisabled':_vm.model.pageDisabled}},[_c(_vm.model.showTitle?'el-main':'el-card',{tag:"component"},[(typeof _vm.model.title !== 'undefined' && _vm.model.flagShowTitle)?_c('div',{staticClass:"clearfix",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-weight":"bold"}},[_vm._v(_vm._s(_vm.model.title))])]):_vm._e(),_vm._v(" "),(_vm.collapseFieldsRow.length > 0)?_c('el-row',[_vm._l((_vm.collapseFieldsRow[0]),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2):_vm._e(),_vm._v(" "),(_vm.model.isHorizontalLayout)?_c('el-tabs',{on:{"tab-click":_vm.tabClickHandler},model:{value:(_vm.activeName),callback:function ($$v) {_vm.activeName=$$v},expression:"activeName"}},_vm._l((_vm.collapse),function(item,index){return (item.show !== false)?_c('el-tab-pane',{key:index,attrs:{"label":item.label,"name":index.toString()}},[_c('el-row',[_vm._l((_vm.collapseFieldsRow[index + 1]),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],1):_vm._e()})):_c('el-collapse',{class:_vm.model.flagHideSaveLine?'el-collapse-saveLine':'',on:{"change":_vm.collapseHandleChange},model:{value:(_vm.collapseActiveNames),callback:function ($$v) {_vm.collapseActiveNames=$$v},expression:"collapseActiveNames"}},_vm._l((_vm.collapse),function(item,index){return (item.show !== false)?_c('el-collapse-item',{key:index,class:item.lock?'ct-collapse-item-title':'',attrs:{"title":item.label,"name":index,"disabled":item.lock}},[_c('template',{slot:"title"},[_c('i',{staticClass:"sign"}),_vm._v(" "),_c('span',{class:[item.labelClass]},[_vm._v(_vm._s(item.label))])]),_vm._v(" "),_c('el-row',[_vm._l((_vm.collapseFieldsRow[index + 1]),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],2):_vm._e()})),_vm._v(" "),(_vm.independentItem.length > 0)?_c('el-row',{staticStyle:{"margin-top":"20px"}},[_vm._l((_vm.independentItem),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('br'),_vm._v(" "),(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]:[(col.show !== false)?_c('el-col',{key:index,staticStyle:{"padding":"5px"},attrs:{"span":col.colspan}},[_c(col.is,_vm._b({ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":col,"api":_vm.model.optionApi,"parentModel":_vm.model,"fileData":_vm.getFileData(col),"from":'form',"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth},on:{"click":function($event){_vm.fieldClickHandler(col,$event)},"change":function($event){_vm.changeHandler(col,$event)},"enter":function($event){_vm.enterHandler(col,$event)},"input":function($event){_vm.inputHandler(col,$event)},"importComplete":_vm.importComplete,"blur":function($event){_vm.blurHandler(col,$event)},"popupSearchList":_vm.popupSearchListHandler,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2):_vm._e(),_vm._v(" "),(_vm.model.links.findIndex(function (v){return v.show}) > -1)?_c('el-row',{staticStyle:{"margin-top":"8px"}},[_c('el-col',{staticStyle:{"text-align":"left"},attrs:{"span":24}},_vm._l((_vm.model.links),function(btn,index){return (btn.show)?_c(btn.is,{key:index,tag:"component",attrs:{"vmodel":btn},on:{"click":_vm.clickHandler}}):_vm._e()}))],1):_vm._e(),_vm._v(" "),(_vm.model.buttons.findIndex(function (v){return v.show}) > -1)?_c('el-row',{class:_vm.isScroll?'ccai button-absolute':'button-initial',style:({'max-width':_vm.pageWidth?(_vm.pageWidth-20)+'px':'100%'})},[_c('el-col',{staticClass:"btnPadBom",staticStyle:{"text-align":"center","padding-bottom":"1px","padding-left":"5px","padding-right":"5px"},attrs:{"span":24}},_vm._l((_vm.model.buttons),function(btn,index){return (btn.show)?_c(btn.is,{key:index,tag:"component",style:({'float':btn.isCheckbox ? btn.alignCss:''}),attrs:{"vmodel":btn},on:{"click":_vm.clickHandler}}):_vm._e()}))],1):_vm._e(),_vm._v(" "),(_vm.isScroll)?_c('div',{staticStyle:{"height":"34px"}}):_vm._e()],1)],1):_vm._e(),_vm._v(" "),(_vm.loading)?_c('div',{staticStyle:{"min-height":"200px"}}):_vm._e(),_vm._v(" "),_c('iframe',{staticStyle:{"height":"0px","width":"0px","border-width":"0px","display":"none"},attrs:{"src":_vm.downloadUrl}})])}
|
|
73776
73801
|
var staticRenderFns = []
|
|
73777
73802
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
73778
73803
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -74083,7 +74108,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
74083
74108
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
74084
74109
|
|
|
74085
74110
|
"use strict";
|
|
74086
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.flagShow)?_c('div',{ref:"main",class:{'domDisabled':_vm.pageDisabled},staticStyle:{"width":"100%","height":"100%","display":"flex"}},[_c('div',{staticClass:"ct-search-list",style:({'height': _vm.pageHeightReal? _vm.pageHeightReal:'100%','width':_vm.searchWidth?_vm.searchWidth+'px':'100%'})},[(typeof _vm.title !== 'undefined' && _vm.showTitle)?_c('div',{staticClass:"clearfix",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-weight":"bold"}},[_vm._v(_vm._s(_vm.title))])]):_vm._e(),_vm._v(" "),(_vm.searchCategoryApi)?_c('ct-searchcategory',{ref:"category",attrs:{"api":_vm.searchCategoryApi},on:{"loadedCategory":_vm.categoryLoaded,"loadedCategoryError":_vm.categoryLoadedError,"changeCategory":_vm.categorychange}}):_vm._e(),_vm._v(" "),_c('ct-searchscreen',{key:_vm.reloadKeyScreen,ref:"screen",attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.screenPara,"categoryLoaded":_vm.loaded.categoryLoaded},on:{"loaded":_vm.screenLoaded,"resetSearch":function($event){_vm.resetSearch()},"search":function($event){_vm.search()},"saveShortcut":_vm.saveShortcut,"showTitle":_vm.showTitleScreenHandler}}),_vm._v(" "),_c('ct-searchtable',{key:_vm.reloadKeyTable,ref:"table",attrs:{"api":_vm.searchDataApi,"searchStatsApi":_vm.searchStatsApi,"from":_vm.from,"isIframe":_vm.isIframe,"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth,"flagPopupSearchlist":_vm.flagPopupSearchlist,"screenTop":_vm.screenTop,"flagAppMode":_vm.flagAppMode,"dragStartItem":_vm.dragStartItem,"dragStartName":_vm.dragStartName},on:{"loaded":_vm.tableLoaded,"toolbarClick":_vm.toolbarClickHandler,"refreshParent":_vm.refreshParentHandler,"searchComplate":_vm.searchComplate,"closeSideBar":_vm.closeSideBar,"rowClickHandle":_vm.rowClickHandle,"scrollHandle":_vm.scrollHandle,"refreshRowHandle":_vm.refreshRowHandle,"doClosePopoverHandle":_vm.doClosePopoverHandle,"showTitle":_vm.showTitleHandler,"popupClickHandler":_vm.popupClickHandler,"simpleRouterRefreshHandler":_vm.simpleRouterRefreshHandler,"drop":_vm.drop}})],1),_vm._v(" "),(_vm.flagSideBar && _vm.flagSideBarOfData)?_c('div',{ref:"sidebar",staticClass:"sidebar",style:({'height': _vm.pageHeight? _vm.pageHeight:'100%','width':_vm.sideBarWidth+'px',right:_vm.sideBarRight+'px'})},[_c('ct-Detail',{key:_vm.detailKey,ref:"detail",attrs:{"api":_vm.sideBarApi,"apiParam":_vm.sideBarApiParam,"pageType":_vm.sideBarPageType,"searchConditionApi":_vm.sideBarSearchConditionApi,"searchStatsApi":_vm.sideBarSearchStatsApi,"searchDataApi":_vm.sideBarSearchDataApi,"listHeight":_vm.listHeight,"selectIndex":_vm.selectIndex,"rowCount":_vm.rowCount,"drowerClose":_vm.drowerClose},on:{"clickNextHandler":_vm.clickNextHandler,"clickPrevHandler":_vm.clickPrevHandler,"simpleRouterclickHandler":_vm.simpleRouterclickHandler,"closeSideHandler":_vm.closeSideHandler,"submit":_vm.submitHandler}}),_vm._v(" "),_c('ct-SearchSideMenu',{ref:"sideMenu",attrs:{"sideBarMenuRight":_vm.sideBarMenuRight,"sideBarStatus":_vm.sideBarStatus},on:{"sideMenuClickHandler":_vm.sideMenuClickHandler}})],1):_vm._e()]):_vm._e()}
|
|
74111
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.flagShow)?_c('div',{ref:"main",class:{'domDisabled':_vm.pageDisabled},staticStyle:{"width":"100%","height":"100%","display":"flex"}},[_c('div',{staticClass:"ct-search-list",style:({'height': _vm.pageHeightReal? _vm.pageHeightReal:'100%','width':_vm.searchWidth?_vm.searchWidth+'px':'100%'})},[(typeof _vm.title !== 'undefined' && _vm.showTitle)?_c('div',{staticClass:"clearfix",attrs:{"slot":"header"},slot:"header"},[_c('span',{staticStyle:{"font-weight":"bold"}},[_vm._v(_vm._s(_vm.title))])]):_vm._e(),_vm._v(" "),(_vm.searchCategoryApi)?_c('ct-searchcategory',{ref:"category",attrs:{"api":_vm.searchCategoryApi},on:{"loadedCategory":_vm.categoryLoaded,"loadedCategoryError":_vm.categoryLoadedError,"changeCategory":_vm.categorychange}}):_vm._e(),_vm._v(" "),_c('ct-searchscreen',{key:_vm.reloadKeyScreen,ref:"screen",attrs:{"api":_vm.searchConditionApi,"screenPara":_vm.screenPara,"categoryLoaded":_vm.loaded.categoryLoaded},on:{"loaded":_vm.screenLoaded,"resetSearch":function($event){_vm.resetSearch()},"search":function($event){_vm.search()},"saveShortcut":_vm.saveShortcut,"showTitle":_vm.showTitleScreenHandler}}),_vm._v(" "),_c('ct-searchtable',{key:_vm.reloadKeyTable,ref:"table",attrs:{"api":_vm.searchDataApi,"searchStatsApi":_vm.searchStatsApi,"from":_vm.from,"isIframe":_vm.isIframe,"documentHeight":_vm.documentHeight,"documentWidth":_vm.documentWidth,"flagPopupSearchlist":_vm.flagPopupSearchlist,"screenTop":_vm.screenTop,"flagAppMode":_vm.flagAppMode,"dragStartItem":_vm.dragStartItem,"dragStartName":_vm.dragStartName},on:{"loaded":_vm.tableLoaded,"toolbarClick":_vm.toolbarClickHandler,"refreshParent":_vm.refreshParentHandler,"searchComplate":_vm.searchComplate,"closeSideBar":_vm.closeSideBar,"rowClickHandle":_vm.rowClickHandle,"scrollHandle":_vm.scrollHandle,"refreshRowHandle":_vm.refreshRowHandle,"doClosePopoverHandle":_vm.doClosePopoverHandle,"showTitle":_vm.showTitleHandler,"popupClickHandler":_vm.popupClickHandler,"simpleRouterRefreshHandler":_vm.simpleRouterRefreshHandler,"drop":_vm.drop,"flagNotificationParentAfterContentChanged":_vm.flagNotificationParentAfterContentChanged}})],1),_vm._v(" "),(_vm.flagSideBar && _vm.flagSideBarOfData)?_c('div',{ref:"sidebar",staticClass:"sidebar",style:({'height': _vm.pageHeight? _vm.pageHeight:'100%','width':_vm.sideBarWidth+'px',right:_vm.sideBarRight+'px'})},[_c('ct-Detail',{key:_vm.detailKey,ref:"detail",attrs:{"api":_vm.sideBarApi,"apiParam":_vm.sideBarApiParam,"pageType":_vm.sideBarPageType,"searchConditionApi":_vm.sideBarSearchConditionApi,"searchStatsApi":_vm.sideBarSearchStatsApi,"searchDataApi":_vm.sideBarSearchDataApi,"listHeight":_vm.listHeight,"selectIndex":_vm.selectIndex,"rowCount":_vm.rowCount,"drowerClose":_vm.drowerClose},on:{"clickNextHandler":_vm.clickNextHandler,"clickPrevHandler":_vm.clickPrevHandler,"simpleRouterclickHandler":_vm.simpleRouterclickHandler,"closeSideHandler":_vm.closeSideHandler,"submit":_vm.submitHandler}}),_vm._v(" "),_c('ct-SearchSideMenu',{ref:"sideMenu",attrs:{"sideBarMenuRight":_vm.sideBarMenuRight,"sideBarStatus":_vm.sideBarStatus},on:{"sideMenuClickHandler":_vm.sideMenuClickHandler}})],1):_vm._e()]):_vm._e()}
|
|
74087
74112
|
var staticRenderFns = []
|
|
74088
74113
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
74089
74114
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|