centaline-data-driven 1.6.59 → 1.6.60
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 +16 -1
- package/src/SearchList.vue +7 -0
- package/src/centaline/api/index.js +20 -8
- package/src/centaline/dynamicForm/src/dynamicForm.vue +3 -3
- package/src/centaline/dynamicSearchList/src/dynamicSearchScreen.vue +1 -1
- package/src/centaline/dynamicTree/src/dynamicTree.vue +15 -8
- package/src/centaline/loader/src/ctl/lib/Enum.js +8 -3
- package/src/main.js +6 -3
- package/wwwroot/static/centaline/centaline-data-driven.js +51 -32
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/release-log.md
CHANGED
|
@@ -1,9 +1,24 @@
|
|
|
1
|
+
# v1.6.60
|
|
2
|
+
2025-12-29
|
|
3
|
+
|
|
4
|
+
优化
|
|
5
|
+
|
|
6
|
+
查询列表点击重置按钮清空值后,根据重置按钮上的【是否自动查询】来决定是否查询列表数据
|
|
7
|
+
|
|
8
|
+
消息提示框添加Dialog对话框
|
|
9
|
+
|
|
10
|
+
BUG
|
|
11
|
+
|
|
12
|
+
表单toptip显示位置错误处理
|
|
13
|
+
|
|
1
14
|
# v1.6.59
|
|
2
15
|
2025-12-09
|
|
3
16
|
|
|
4
17
|
优化
|
|
5
18
|
|
|
6
|
-
分片上传添加请求头传到API
|
|
19
|
+
分片上传添加请求头传到API
|
|
20
|
+
|
|
21
|
+
分片上调用前端传获取请求头把当前上传地址传给前端,前端用于判断区分
|
|
7
22
|
|
|
8
23
|
树界面右侧表单按钮样式调整
|
|
9
24
|
|
package/src/SearchList.vue
CHANGED
|
@@ -130,6 +130,13 @@
|
|
|
130
130
|
<!-- ibs -->
|
|
131
131
|
<!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/EmployeeWorkLogList/ind/getLayoutOfSearch'" :searchDataApi="'/EmployeeWorkLogList/ind/getListOfSearchModel'"></ct-searchlist> -->
|
|
132
132
|
<!-- <ct-searchlist :appRootUrl="appRootUrl" :searchConditionApi="'/ApiAccessLogList/getLayoutOfSearch'" :searchDataApi="'/ApiAccessLogList/getListOfSearchModel'"></ct-searchlist> -->
|
|
133
|
+
|
|
134
|
+
<!-- XXL -->
|
|
135
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'comprehensive/ApplicationList/getLayoutOfSearch'" :searchDataApi="'comprehensive/ApplicationList/getList'"></ct-searchlist> -->
|
|
136
|
+
<!-- CDDD -->
|
|
137
|
+
<!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/formlist/getLayoutOfSearch'" :searchDataApi="'/formlist/getTableList'" :searchStatsApi="'/formlist/getListStats'"></ct-searchlist> -->
|
|
138
|
+
|
|
139
|
+
|
|
133
140
|
<ct-dialog-list></ct-dialog-list>
|
|
134
141
|
</div>
|
|
135
142
|
</template>
|
|
@@ -132,7 +132,7 @@ const api = {
|
|
|
132
132
|
params = params.para;
|
|
133
133
|
}
|
|
134
134
|
else if (common.flagRouterSelf()) {
|
|
135
|
-
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + params.action;
|
|
135
|
+
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + (params.action && params.action[0]=='/'?params.action.slice(1):params.action);
|
|
136
136
|
params = params.para;
|
|
137
137
|
}
|
|
138
138
|
return Axios.get(url, params, {
|
|
@@ -151,7 +151,7 @@ const api = {
|
|
|
151
151
|
params = params.para;
|
|
152
152
|
}
|
|
153
153
|
else if (common.flagRouterSelf()) {
|
|
154
|
-
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + params.action;
|
|
154
|
+
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + (params.action && params.action[0]=='/'?params.action.slice(1):params.action);
|
|
155
155
|
params = params.para;
|
|
156
156
|
}
|
|
157
157
|
return Axios.post(url, params, {
|
|
@@ -185,8 +185,14 @@ const api = {
|
|
|
185
185
|
|
|
186
186
|
if (data.rtnCode === Enum.ReturnCode.Successful) {
|
|
187
187
|
if (data.rtnMsg && common.getDataDrivenOpts().showRequestSuccessMessage) {
|
|
188
|
-
if (data.
|
|
189
|
-
common.confirm(data.rtnMsg, '信息', { confirmButtonText: '确定', flagShowcCancelButton: '0' });
|
|
188
|
+
if (data.messageAlertStyle && data.messageAlertStyle == Enum.MessageAlertStyle.Dialog) {
|
|
189
|
+
// common.confirm(data.rtnMsg, '信息', { confirmButtonText: '确定', flagShowcCancelButton: '0' });
|
|
190
|
+
Vue.prototype.$message({
|
|
191
|
+
message: response.data.rtnMsg,
|
|
192
|
+
type: 'success',
|
|
193
|
+
showClose:true,
|
|
194
|
+
duration: 0,
|
|
195
|
+
});
|
|
190
196
|
}
|
|
191
197
|
else {
|
|
192
198
|
Vue.prototype.$message({
|
|
@@ -232,8 +238,14 @@ const api = {
|
|
|
232
238
|
}
|
|
233
239
|
else {
|
|
234
240
|
if (response.data.rtnMsg && common.getDataDrivenOpts().showRequestErrorMessage) {
|
|
235
|
-
if (data.
|
|
236
|
-
common.confirm(data.rtnMsg, '信息', { confirmButtonText: '确定', flagShowcCancelButton: '0' });
|
|
241
|
+
if (data.messageAlertStyle && data.messageAlertStyle == Enum.MessageAlertStyle.Dialog) {
|
|
242
|
+
// common.confirm(data.rtnMsg, '信息', { confirmButtonText: '确定', flagShowcCancelButton: '0' });
|
|
243
|
+
Vue.prototype.$message({
|
|
244
|
+
message: response.data.rtnMsg,
|
|
245
|
+
type: 'error',
|
|
246
|
+
showClose:true,
|
|
247
|
+
duration: 0,
|
|
248
|
+
});
|
|
237
249
|
}
|
|
238
250
|
else {
|
|
239
251
|
Vue.prototype.$message({
|
|
@@ -254,7 +266,7 @@ const api = {
|
|
|
254
266
|
params = params.para;
|
|
255
267
|
}
|
|
256
268
|
else if (common.flagRouterSelf()) {
|
|
257
|
-
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + params.action;
|
|
269
|
+
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + (params.action && params.action[0]=='/'?params.action.slice(1):params.action);
|
|
258
270
|
params = params.para;
|
|
259
271
|
}
|
|
260
272
|
let responseType=params.responseType || 'json';
|
|
@@ -287,7 +299,7 @@ const api = {
|
|
|
287
299
|
params = params.para;
|
|
288
300
|
}
|
|
289
301
|
else if (common.flagRouterSelf()) {
|
|
290
|
-
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + params.action;
|
|
302
|
+
url = url + (url=='' || url.substr(-1)=='/'?'':'/') + (params.action && params.action[0]=='/'?params.action.slice(1):params.action);
|
|
291
303
|
params = params.para;
|
|
292
304
|
}
|
|
293
305
|
return Axios.post(url, params, {
|
|
@@ -4,11 +4,10 @@
|
|
|
4
4
|
<div ref="topTipRef" v-if="model.tip" class="tip-absolute">
|
|
5
5
|
<span v-html="model.tip"></span>
|
|
6
6
|
</div>
|
|
7
|
+
<div v-if="(!this.model.isHorizontalLayout || this.flagScroll) && model.tip" :style="{'height': (model.tip ? 30:0) + 'px'}"></div>
|
|
7
8
|
|
|
8
9
|
<!--可根据场景判断显示el-card还是el-main-->
|
|
9
10
|
<component :is="model.showTitle?'el-main':'el-card'">
|
|
10
|
-
<div v-if="(!this.model.isHorizontalLayout || this.flagScroll) && model.tip" :style="{'height': (model.tip ? 24:0) + 'px'}"></div>
|
|
11
|
-
|
|
12
11
|
<div slot="header" class="clearfix" v-if="typeof model.title !== 'undefined' && model.flagShowTitle">
|
|
13
12
|
<span style="font-weight:bold">{{model.title}}</span>
|
|
14
13
|
</div>
|
|
@@ -1683,7 +1682,8 @@
|
|
|
1683
1682
|
.tip-absolute {
|
|
1684
1683
|
width:'100%';
|
|
1685
1684
|
z-index: 100;
|
|
1686
|
-
top:
|
|
1685
|
+
margin-top: -10px;
|
|
1686
|
+
/* top : 44px; */
|
|
1687
1687
|
left: 0;
|
|
1688
1688
|
right: 0;
|
|
1689
1689
|
position: absolute;
|
|
@@ -182,14 +182,20 @@ export default {
|
|
|
182
182
|
|
|
183
183
|
}
|
|
184
184
|
let actionIndex = 0;
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
185
|
+
// 1. 先过滤:只保留“有权”的路由
|
|
186
|
+
this.allowedRoutes = (this.model.actionRouter || []).filter(
|
|
187
|
+
v =>!v.rightField
|
|
188
|
+
|| this.currentData[v.rightField]==undefined
|
|
189
|
+
|| this.currentData[v.rightField]==null
|
|
190
|
+
|| this.currentData[v.rightField]=='1'
|
|
191
|
+
)
|
|
192
|
+
|
|
193
|
+
// 2. 再统一处理:有权的路由才显示菜单、累加计数
|
|
194
|
+
this.allowedRoutes.forEach(() => {
|
|
195
|
+
this.menuVisible = true // 只要有一条有权就显示增删改 div
|
|
196
|
+
actionIndex += 1 // 统计有多少条有权路由
|
|
197
|
+
})
|
|
198
|
+
|
|
193
199
|
document.addEventListener('click', this.foo) // 监听事件鼠标点击事件,若点击则隐藏菜单
|
|
194
200
|
// 获取树状图的高度
|
|
195
201
|
let treeHeight = document.getElementById("mytree").offsetHeight;
|
|
@@ -510,5 +516,6 @@ export default {
|
|
|
510
516
|
|
|
511
517
|
.box-menu .opertion:hover {
|
|
512
518
|
color: var(--btnHoverRed);
|
|
519
|
+
background-color: var(--el-fill-color-light);
|
|
513
520
|
}
|
|
514
521
|
</style>
|
|
@@ -314,12 +314,17 @@ const Enum = {
|
|
|
314
314
|
/**
|
|
315
315
|
* json 数据查看控件
|
|
316
316
|
*/
|
|
317
|
-
|
|
317
|
+
JsonViewer:63,
|
|
318
318
|
|
|
319
|
-
|
|
319
|
+
/**
|
|
320
320
|
* Markdown 数据查看控件
|
|
321
321
|
*/
|
|
322
|
-
|
|
322
|
+
MarkdownViewer:64,
|
|
323
|
+
|
|
324
|
+
/**
|
|
325
|
+
* cron 表达式生成/选择
|
|
326
|
+
*/
|
|
327
|
+
Cron:65,
|
|
323
328
|
|
|
324
329
|
},
|
|
325
330
|
|
package/src/main.js
CHANGED
|
@@ -18,9 +18,11 @@ Vue.use(centaline, {
|
|
|
18
18
|
// baseUrl: "http://10.88.22.46:9004/max-uplink-api/",
|
|
19
19
|
// baseUrl: "http://10.88.22.46:6060/onecard-api/",
|
|
20
20
|
baseUrl: "http://10.88.22.46:9999/service-api/",
|
|
21
|
+
// baseUrl: "http://10.88.22.46:20808/service-api",
|
|
21
22
|
// baseUrl: "http://10.88.22.42:9999/service-api/",
|
|
22
23
|
// baseUrl: "http://10.88.22.46:22324/service-api/v1/form/router",
|
|
23
24
|
// baseUrl: "http://10.25.10.67:8999/service-api/v1/form/router",
|
|
25
|
+
// baseUrl: "http://10.88.22.46:8999/service-api/v1/form/router",
|
|
24
26
|
// baseUrl: "http://10.88.22.13:17070/max-uplink-api/",
|
|
25
27
|
// baseUrl: "http://10.88.22.13:9004/max-uplink-api/",
|
|
26
28
|
// baseUrl: "http://10.88.22.13:7080/ibs-api/",
|
|
@@ -76,10 +78,11 @@ Vue.use(centaline, {
|
|
|
76
78
|
// originalRequestURL: 'http://10.88.22.67:8080',
|
|
77
79
|
// 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"}',
|
|
78
80
|
// estateId: '',
|
|
79
|
-
// appinfo:'{"appId":"
|
|
81
|
+
// appinfo:'{"appId":"7e4d0521-4e26-4beb-8627-e76977ad8aa5","appName":"CCAI-PLUS"}',
|
|
82
|
+
// authorization:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjkzNDU5NjFkLWM2NmItNDU0ZS1hMTE4LTUzMWRkMjliZTdmYyJ9.ehMpxkFnyTFlJQ_43SbCTGZZTMFht3isTj3gUKmNoJBWCV5X8ez5Z2AgT7vMBwmmG1FdEHWZTnJhIj0ox86bCA',
|
|
80
83
|
|
|
81
|
-
|
|
82
|
-
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.
|
|
84
|
+
AuthObject: '{"currentEstate":{"estateId":"201005121336088B888053DAF3FAD603","estateName":"A","estDeptPath":"001.041.001"},"platform":1,"osVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"Fm1KP8","time":"2025-12-26 17:13:10","timestamp":1766740390742,"sign":"","systemSource":"CCESU","empNo":"hqxtgl","empId":"2411121446336B97FBEB7FD54905A903","clientVersion":"12.5","empName":"hq%E7%B3%BB%E7%BB%9F%E7%AE%A1%E7%90%86","roleName":"%E7%B3%BB%E7%BB%9F%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%2FCCES%E7%BB%84"}',
|
|
85
|
+
AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjA4Yjk3ZDhmLWJiYjItNGY0Yy04MDQwLWIxZGJkMTY5ZDFhOSJ9.mkY3k2Di_GpwvYpnq4N_yDdTz8dBryVCkX1TbW8fMdiG2AAickX7d1PMp1Hao04OFnt41Yrt2diKGXpmXEWYNQ',
|
|
83
86
|
};
|
|
84
87
|
},
|
|
85
88
|
// 请求完成事件,可判断是否登录过期执行响应操作
|
|
@@ -8257,9 +8257,14 @@ var Enum = {
|
|
|
8257
8257
|
JsonViewer: 63,
|
|
8258
8258
|
|
|
8259
8259
|
/**
|
|
8260
|
-
|
|
8260
|
+
* Markdown 数据查看控件
|
|
8261
|
+
*/
|
|
8262
|
+
MarkdownViewer: 64,
|
|
8263
|
+
|
|
8264
|
+
/**
|
|
8265
|
+
* cron 表达式生成/选择
|
|
8261
8266
|
*/
|
|
8262
|
-
|
|
8267
|
+
Cron: 65
|
|
8263
8268
|
|
|
8264
8269
|
},
|
|
8265
8270
|
|
|
@@ -9851,7 +9856,7 @@ var api = {
|
|
|
9851
9856
|
url = params.action;
|
|
9852
9857
|
params = params.para;
|
|
9853
9858
|
} else if (__WEBPACK_IMPORTED_MODULE_5__common__["default"].flagRouterSelf()) {
|
|
9854
|
-
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + params.action;
|
|
9859
|
+
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + (params.action && params.action[0] == '/' ? params.action.slice(1) : params.action);
|
|
9855
9860
|
params = params.para;
|
|
9856
9861
|
}
|
|
9857
9862
|
return __WEBPACK_IMPORTED_MODULE_2_axios___default.a.get(url, params, {
|
|
@@ -9867,7 +9872,7 @@ var api = {
|
|
|
9867
9872
|
url = params.action;
|
|
9868
9873
|
params = params.para;
|
|
9869
9874
|
} else if (__WEBPACK_IMPORTED_MODULE_5__common__["default"].flagRouterSelf()) {
|
|
9870
|
-
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + params.action;
|
|
9875
|
+
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + (params.action && params.action[0] == '/' ? params.action.slice(1) : params.action);
|
|
9871
9876
|
params = params.para;
|
|
9872
9877
|
}
|
|
9873
9878
|
return __WEBPACK_IMPORTED_MODULE_2_axios___default.a.post(url, params, {
|
|
@@ -9900,8 +9905,14 @@ var api = {
|
|
|
9900
9905
|
|
|
9901
9906
|
if (data.rtnCode === __WEBPACK_IMPORTED_MODULE_4__loader_src_ctl_lib_Enum__["default"].ReturnCode.Successful) {
|
|
9902
9907
|
if (data.rtnMsg && __WEBPACK_IMPORTED_MODULE_5__common__["default"].getDataDrivenOpts().showRequestSuccessMessage) {
|
|
9903
|
-
if (data.
|
|
9904
|
-
|
|
9908
|
+
if (data.messageAlertStyle && data.messageAlertStyle == __WEBPACK_IMPORTED_MODULE_4__loader_src_ctl_lib_Enum__["default"].MessageAlertStyle.Dialog) {
|
|
9909
|
+
// common.confirm(data.rtnMsg, '信息', { confirmButtonText: '确定', flagShowcCancelButton: '0' });
|
|
9910
|
+
__WEBPACK_IMPORTED_MODULE_3_vue___default.a.prototype.$message({
|
|
9911
|
+
message: response.data.rtnMsg,
|
|
9912
|
+
type: 'success',
|
|
9913
|
+
showClose: true,
|
|
9914
|
+
duration: 0
|
|
9915
|
+
});
|
|
9905
9916
|
} else {
|
|
9906
9917
|
__WEBPACK_IMPORTED_MODULE_3_vue___default.a.prototype.$message({
|
|
9907
9918
|
message: response.data.rtnMsg,
|
|
@@ -9944,8 +9955,14 @@ var api = {
|
|
|
9944
9955
|
}
|
|
9945
9956
|
} else if (data.rtnCode === __WEBPACK_IMPORTED_MODULE_4__loader_src_ctl_lib_Enum__["default"].ReturnCode.ConfirmAlert) {} else {
|
|
9946
9957
|
if (response.data.rtnMsg && __WEBPACK_IMPORTED_MODULE_5__common__["default"].getDataDrivenOpts().showRequestErrorMessage) {
|
|
9947
|
-
if (data.
|
|
9948
|
-
|
|
9958
|
+
if (data.messageAlertStyle && data.messageAlertStyle == __WEBPACK_IMPORTED_MODULE_4__loader_src_ctl_lib_Enum__["default"].MessageAlertStyle.Dialog) {
|
|
9959
|
+
// common.confirm(data.rtnMsg, '信息', { confirmButtonText: '确定', flagShowcCancelButton: '0' });
|
|
9960
|
+
__WEBPACK_IMPORTED_MODULE_3_vue___default.a.prototype.$message({
|
|
9961
|
+
message: response.data.rtnMsg,
|
|
9962
|
+
type: 'error',
|
|
9963
|
+
showClose: true,
|
|
9964
|
+
duration: 0
|
|
9965
|
+
});
|
|
9949
9966
|
} else {
|
|
9950
9967
|
__WEBPACK_IMPORTED_MODULE_3_vue___default.a.prototype.$message({
|
|
9951
9968
|
message: response.data.rtnMsg,
|
|
@@ -9966,7 +9983,7 @@ var api = {
|
|
|
9966
9983
|
url = params.action;
|
|
9967
9984
|
params = params.para;
|
|
9968
9985
|
} else if (__WEBPACK_IMPORTED_MODULE_5__common__["default"].flagRouterSelf()) {
|
|
9969
|
-
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + params.action;
|
|
9986
|
+
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + (params.action && params.action[0] == '/' ? params.action.slice(1) : params.action);
|
|
9970
9987
|
params = params.para;
|
|
9971
9988
|
}
|
|
9972
9989
|
var responseType = params.responseType || 'json';
|
|
@@ -9999,7 +10016,7 @@ var api = {
|
|
|
9999
10016
|
url = params.action;
|
|
10000
10017
|
params = params.para;
|
|
10001
10018
|
} else if (__WEBPACK_IMPORTED_MODULE_5__common__["default"].flagRouterSelf()) {
|
|
10002
|
-
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + params.action;
|
|
10019
|
+
url = url + (url == '' || url.substr(-1) == '/' ? '' : '/') + (params.action && params.action[0] == '/' ? params.action.slice(1) : params.action);
|
|
10003
10020
|
params = params.para;
|
|
10004
10021
|
}
|
|
10005
10022
|
return __WEBPACK_IMPORTED_MODULE_2_axios___default.a.post(url, params, {
|
|
@@ -11411,7 +11428,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
|
|
|
11411
11428
|
"use strict";
|
|
11412
11429
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__ = __webpack_require__(189);
|
|
11413
11430
|
/* unused harmony namespace reexport */
|
|
11414
|
-
/* harmony import */ var
|
|
11431
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1d9e3426_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(627);
|
|
11415
11432
|
function injectStyle (ssrContext) {
|
|
11416
11433
|
__webpack_require__(621)
|
|
11417
11434
|
}
|
|
@@ -11431,7 +11448,7 @@ var __vue_scopeId__ = null
|
|
|
11431
11448
|
var __vue_module_identifier__ = null
|
|
11432
11449
|
var Component = normalizeComponent(
|
|
11433
11450
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__["a" /* default */],
|
|
11434
|
-
|
|
11451
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_1d9e3426_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
|
|
11435
11452
|
__vue_template_functional__,
|
|
11436
11453
|
__vue_styles__,
|
|
11437
11454
|
__vue_scopeId__,
|
|
@@ -11548,7 +11565,7 @@ __webpack_require__(128)(String, 'String', function (iterated) {
|
|
|
11548
11565
|
"use strict";
|
|
11549
11566
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchScreen_vue__ = __webpack_require__(160);
|
|
11550
11567
|
/* unused harmony namespace reexport */
|
|
11551
|
-
/* harmony import */ var
|
|
11568
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_00e7a0d8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchScreen_vue__ = __webpack_require__(543);
|
|
11552
11569
|
function injectStyle (ssrContext) {
|
|
11553
11570
|
__webpack_require__(541)
|
|
11554
11571
|
}
|
|
@@ -11568,7 +11585,7 @@ var __vue_scopeId__ = null
|
|
|
11568
11585
|
var __vue_module_identifier__ = null
|
|
11569
11586
|
var Component = normalizeComponent(
|
|
11570
11587
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicSearchScreen_vue__["a" /* default */],
|
|
11571
|
-
|
|
11588
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_00e7a0d8_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicSearchScreen_vue__["a" /* default */],
|
|
11572
11589
|
__vue_template_functional__,
|
|
11573
11590
|
__vue_styles__,
|
|
11574
11591
|
__vue_scopeId__,
|
|
@@ -20315,7 +20332,7 @@ exports.f = __webpack_require__(27) ? gOPD : function getOwnPropertyDescriptor(O
|
|
|
20315
20332
|
break;
|
|
20316
20333
|
case 'reset':
|
|
20317
20334
|
this.model.reset();
|
|
20318
|
-
if (this.validExcute()) {
|
|
20335
|
+
if (this.validExcute() && model.autoSearch) {
|
|
20319
20336
|
this.$emit('resetSearch', this.model);
|
|
20320
20337
|
}
|
|
20321
20338
|
break;
|
|
@@ -29717,7 +29734,6 @@ exports.clearImmediate = (typeof self !== "undefined" && self.clearImmediate) ||
|
|
|
29717
29734
|
//
|
|
29718
29735
|
//
|
|
29719
29736
|
//
|
|
29720
|
-
//
|
|
29721
29737
|
|
|
29722
29738
|
|
|
29723
29739
|
|
|
@@ -70923,14 +70939,17 @@ var ctSpan = {
|
|
|
70923
70939
|
this.firstLevel = false; // 否则视为叶子节点不添加同级选项
|
|
70924
70940
|
}
|
|
70925
70941
|
var actionIndex = 0;
|
|
70926
|
-
|
|
70927
|
-
|
|
70928
|
-
|
|
70929
|
-
|
|
70930
|
-
|
|
70931
|
-
|
|
70932
|
-
|
|
70933
|
-
|
|
70942
|
+
// 1. 先过滤:只保留“有权”的路由
|
|
70943
|
+
this.allowedRoutes = (this.model.actionRouter || []).filter(function (v) {
|
|
70944
|
+
return !v.rightField || _this3.currentData[v.rightField] == undefined || _this3.currentData[v.rightField] == null || _this3.currentData[v.rightField] == '1';
|
|
70945
|
+
});
|
|
70946
|
+
|
|
70947
|
+
// 2. 再统一处理:有权的路由才显示菜单、累加计数
|
|
70948
|
+
this.allowedRoutes.forEach(function () {
|
|
70949
|
+
_this3.menuVisible = true; // 只要有一条有权就显示增删改 div
|
|
70950
|
+
actionIndex += 1; // 统计有多少条有权路由
|
|
70951
|
+
});
|
|
70952
|
+
|
|
70934
70953
|
document.addEventListener('click', this.foo); // 监听事件鼠标点击事件,若点击则隐藏菜单
|
|
70935
70954
|
// 获取树状图的高度
|
|
70936
70955
|
var treeHeight = document.getElementById("mytree").offsetHeight;
|
|
@@ -79343,7 +79362,7 @@ var content = __webpack_require__(542);
|
|
|
79343
79362
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
79344
79363
|
if(content.locals) module.exports = content.locals;
|
|
79345
79364
|
// add the styles to the DOM
|
|
79346
|
-
var update = __webpack_require__(3)("
|
|
79365
|
+
var update = __webpack_require__(3)("78725be5", content, true, {});
|
|
79347
79366
|
|
|
79348
79367
|
/***/ }),
|
|
79349
79368
|
/* 542 */
|
|
@@ -80800,7 +80819,7 @@ var content = __webpack_require__(622);
|
|
|
80800
80819
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
80801
80820
|
if(content.locals) module.exports = content.locals;
|
|
80802
80821
|
// add the styles to the DOM
|
|
80803
|
-
var update = __webpack_require__(3)("
|
|
80822
|
+
var update = __webpack_require__(3)("d8d76e9c", content, true, {});
|
|
80804
80823
|
|
|
80805
80824
|
/***/ }),
|
|
80806
80825
|
/* 622 */
|
|
@@ -80811,7 +80830,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
80811
80830
|
|
|
80812
80831
|
|
|
80813
80832
|
// module
|
|
80814
|
-
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{line-height:34px}.button-absolute{bottom:0;border-radius:0 0 4px 4px;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%)}.button-absolute,.tip-absolute{z-index:100;left:0;right:0;position:absolute}.tip-absolute{width:\"100%\";top
|
|
80833
|
+
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{line-height:34px}.button-absolute{bottom:0;border-radius:0 0 4px 4px;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%)}.button-absolute,.tip-absolute{z-index:100;left:0;right:0;position:absolute}.tip-absolute{width:\"100%\";margin-top:-10px}.tip-absolute,.tip-bottom{line-height:24px;background-color:#ffe7cc;color:#ec3d3d;border-radius:5px;padding:8px;font-size:12px}.tip-bottom-absolute{bottom:0}.tip-bottom-absolute,.tip-bottom-absolute40{width:\"100%\";z-index:100;left:0;right:0;position:absolute;line-height:24px;background-color:#ffe7cc;color:#ec3d3d;border-radius:5px;padding:8px;font-size:12px}.tip-bottom-absolute40{bottom:40px}", ""]);
|
|
80815
80834
|
|
|
80816
80835
|
// exports
|
|
80817
80836
|
|
|
@@ -80895,7 +80914,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
80895
80914
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
80896
80915
|
|
|
80897
80916
|
"use strict";
|
|
80898
|
-
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"}],ref:"formRef",style:({width:_vm.pageWidth?_vm.pageWidth+'px':'100%',margin:'auto','min-height': _vm.minHeight,padding:'10px'})},[(_vm.model !== null && !_vm.loading)?_c('div',{key:_vm.formKey,ref:"fieldsRef",staticClass:"ct-form",class:{'domDisabled':_vm.model.pageDisabled}},[(_vm.model.tip)?_c('div',{ref:"topTipRef",staticClass:"tip-absolute"},[_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.tip)}})]):_vm._e(),_vm._v(" "),_c(_vm.model.showTitle?'el-main':'el-card',{tag:"component"},[((!this.model.isHorizontalLayout || this.flagScroll) && _vm.model.tip)?_c('div',{style:({'height': (_vm.model.tip ? 24:0) + 'px'})}):_vm._e(),_vm._v(" "),(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.relationParentFormFields.length > 0)?_c('el-row',[_vm._l((_vm.relationParentFormFields),function(col,index){return [(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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]})],2):_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('div',{staticStyle:{"float":"left","width":"100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2):_vm._e(),_vm._v(" "),(_vm.model.isHorizontalLayout)?_c('el-tabs',{ref:"tabsRef",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:{"name":index.toString(),"lazy":item.lazyLoad}},[_c('template',{slot:"label"},[_c('span',{domProps:{"innerHTML":_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('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],2):_vm._e()}),_vm._v(" "),(_vm.model.flagFixedTabOnHorizontalLayout)?[(_vm.independentItem.length > 0)?_c('el-row',{ref:"independentRef",staticStyle:{"margin-top":"20px"}},[_vm._l((_vm.independentItem),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"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',{ref:"linksRef",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._e()],2):_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('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],2):_vm._e()})),_vm._v(" "),(!_vm.model.flagFixedTabOnHorizontalLayout)?[(_vm.independentItem.length > 0)?_c('el-row',{ref:"independentRef",staticStyle:{"margin-top":"20px"}},[_vm._l((_vm.independentItem),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"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',{ref:"linksRef",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._e()],2),_vm._v(" "),(_vm.model.bottomTip || (_vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1))?_c('div',{style:({'height': (_vm.model.bottomTip ? 34:0) + (_vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1?34:0) + 'px'})}):_vm._e()],1):_vm._e(),_vm._v(" "),(_vm.model && !_vm.loading && _vm.model.bottomTip)?_c('div',{ref:"bottomTipRef",class:(_vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1?'tip-bottom-absolute40':'tip-bottom-absolute')},[_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.bottomTip)}})]):_vm._e(),_vm._v(" "),(_vm.model && !_vm.loading && _vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1)?_c('div',{ref:"buttonsRef",class:_vm.isScroll?'ccai button-absolute':'button-absolute',style:({'max-width':_vm.pageWidth?(_vm.pageWidth-20)+'px':'100%'})},[_c('el-col',{staticClass:"btnPadBom",staticStyle:{"display":"flex","align-items":"center","justify-content":"center","height":"40px","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.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}})])}
|
|
80917
|
+
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"}],ref:"formRef",style:({width:_vm.pageWidth?_vm.pageWidth+'px':'100%',margin:'auto','min-height': _vm.minHeight,padding:'10px'})},[(_vm.model !== null && !_vm.loading)?_c('div',{key:_vm.formKey,ref:"fieldsRef",staticClass:"ct-form",class:{'domDisabled':_vm.model.pageDisabled}},[(_vm.model.tip)?_c('div',{ref:"topTipRef",staticClass:"tip-absolute"},[_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.tip)}})]):_vm._e(),_vm._v(" "),((!this.model.isHorizontalLayout || this.flagScroll) && _vm.model.tip)?_c('div',{style:({'height': (_vm.model.tip ? 30:0) + 'px'})}):_vm._e(),_vm._v(" "),_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.relationParentFormFields.length > 0)?_c('el-row',[_vm._l((_vm.relationParentFormFields),function(col,index){return [(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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]})],2):_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('div',{staticStyle:{"float":"left","width":"100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2):_vm._e(),_vm._v(" "),(_vm.model.isHorizontalLayout)?_c('el-tabs',{ref:"tabsRef",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:{"name":index.toString(),"lazy":item.lazyLoad}},[_c('template',{slot:"label"},[_c('span',{domProps:{"innerHTML":_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('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],2):_vm._e()}),_vm._v(" "),(_vm.model.flagFixedTabOnHorizontalLayout)?[(_vm.independentItem.length > 0)?_c('el-row',{ref:"independentRef",staticStyle:{"margin-top":"20px"}},[_vm._l((_vm.independentItem),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"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',{ref:"linksRef",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._e()],2):_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('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"tableButtonClick":_vm.clickHandler}},'component',col.bindPara,false))],1):_vm._e()]]})],2)],2):_vm._e()})),_vm._v(" "),(!_vm.model.flagFixedTabOnHorizontalLayout)?[(_vm.independentItem.length > 0)?_c('el-row',{ref:"independentRef",staticStyle:{"margin-top":"20px"}},[_vm._l((_vm.independentItem),function(col,index){return [(col.show !== false && col.lineFeed)?[_c('div',{staticStyle:{"display":"flex","flex":"0 0 100%"}}),_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,"popupLocation":_vm.popupLocationHandler,"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,"popupLocation":_vm.popupLocationHandler,"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',{ref:"linksRef",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._e()],2),_vm._v(" "),(_vm.model.bottomTip || (_vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1))?_c('div',{style:({'height': (_vm.model.bottomTip ? 34:0) + (_vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1?34:0) + 'px'})}):_vm._e()],1):_vm._e(),_vm._v(" "),(_vm.model && !_vm.loading && _vm.model.bottomTip)?_c('div',{ref:"bottomTipRef",class:(_vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1?'tip-bottom-absolute40':'tip-bottom-absolute')},[_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.bottomTip)}})]):_vm._e(),_vm._v(" "),(_vm.model && !_vm.loading && _vm.model.buttons.length>0 && _vm.model.buttons.findIndex(function (v){return v.show}) > -1)?_c('div',{ref:"buttonsRef",class:_vm.isScroll?'ccai button-absolute':'button-absolute',style:({'max-width':_vm.pageWidth?(_vm.pageWidth-20)+'px':'100%'})},[_c('el-col',{staticClass:"btnPadBom",staticStyle:{"display":"flex","align-items":"center","justify-content":"center","height":"40px","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.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}})])}
|
|
80899
80918
|
var staticRenderFns = []
|
|
80900
80919
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
80901
80920
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -91369,7 +91388,7 @@ var Component = normalizeComponent(
|
|
|
91369
91388
|
"use strict";
|
|
91370
91389
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTree_vue__ = __webpack_require__(428);
|
|
91371
91390
|
/* unused harmony namespace reexport */
|
|
91372
|
-
/* harmony import */ var
|
|
91391
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_75f19a12_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__ = __webpack_require__(933);
|
|
91373
91392
|
function injectStyle (ssrContext) {
|
|
91374
91393
|
__webpack_require__(929)
|
|
91375
91394
|
}
|
|
@@ -91389,7 +91408,7 @@ var __vue_scopeId__ = null
|
|
|
91389
91408
|
var __vue_module_identifier__ = null
|
|
91390
91409
|
var Component = normalizeComponent(
|
|
91391
91410
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicTree_vue__["a" /* default */],
|
|
91392
|
-
|
|
91411
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_75f19a12_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicTree_vue__["a" /* default */],
|
|
91393
91412
|
__vue_template_functional__,
|
|
91394
91413
|
__vue_styles__,
|
|
91395
91414
|
__vue_scopeId__,
|
|
@@ -91410,7 +91429,7 @@ var content = __webpack_require__(930);
|
|
|
91410
91429
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
91411
91430
|
if(content.locals) module.exports = content.locals;
|
|
91412
91431
|
// add the styles to the DOM
|
|
91413
|
-
var update = __webpack_require__(3)("
|
|
91432
|
+
var update = __webpack_require__(3)("8d8d5d0e", content, true, {});
|
|
91414
91433
|
|
|
91415
91434
|
/***/ }),
|
|
91416
91435
|
/* 930 */
|
|
@@ -91422,7 +91441,7 @@ exports = module.exports = __webpack_require__(2)(false);
|
|
|
91422
91441
|
|
|
91423
91442
|
|
|
91424
91443
|
// module
|
|
91425
|
-
exports.push([module.i, ".mytree{height:100%}.mytree .el-tree{min-width:100%;display:inline-block}.mytree::-webkit-scrollbar-thumb{background-color:#bebebe;height:5px;border-radius:4px;display:block}.mytree::-webkit-scrollbar{width:6px;height:6px;background-color:#f1f1f1;display:block}.mytree .el-tree-node.is-current>.el-tree-node__content{color:var(--centalineBlue)!important;background-color:#f5f7fa}.tree-line:first-child div{overflow:hidden}.el-tree-node{position:relative}.el-tree-node,.el-tree-node__children{padding-left:16px}.el-tree-node__content{padding-left:0!important;padding-right:2px!important}.el-tree-node:before{content:\"\";height:100%;width:1px;position:absolute;left:27px;top:-1px;border-width:1px;border-left:1px dashed #52627c}.tree-line .el-tree-node:before:last-child{top:-35px}.el-tree-node__children .el-tree-node:before{content:\"\";height:100%;width:1px;position:absolute;left:27px;top:-2px;border-width:1px;border-left:1px dashed #52627c}.el-tree-node:last-child:before{height:15px}.el-tree-node:after{content:\"\";width:12px;height:20px;position:absolute;left:27px;top:12px;right:2px;border-width:1px;border-top:1px dashed #52627c}.el-tree-node__expand-icon{font-size:16px}.tree>.el-tree-node:first-child:after{border-top:none}.tree>.is-leaf{color:transparent}.el-tree .el-tree-node__expand-icon.expanded{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.el-tree .el-icon-caret-right:before{background:url(" + escape(__webpack_require__(931)) + ") no-repeat;content:\"\";display:block;width:12px;height:12px;font-size:12px;background-size:10px}.el-tree .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{background:url(" + escape(__webpack_require__(932)) + ") no-repeat;content:\"\";display:block;width:12px;height:12px;font-size:12px;background-size:10px}.el-tree .el-tree-node__expand-icon.is-leaf:before{background:transparent no-repeat 0 3px;content:\"\";display:block;width:12px;height:12px;font-size:12px;background-size:10px}.box-menu{width:150px;position:absolute;z-index:1000;background-color:#fff;-webkit-box-shadow:0 0 10px #ccc,0 0 20px #ccc,0 0 30px #ccc;box-shadow:0 0 10px #ccc,0 0 20px #ccc,0 0 30px #ccc;padding:10px}.box-menu div{cursor:pointer}.box-menu .opertion{cursor:pointer;line-height:30px}.box-menu .opertion:hover{color:var(--btnHoverRed)}", ""]);
|
|
91444
|
+
exports.push([module.i, ".mytree{height:100%}.mytree .el-tree{min-width:100%;display:inline-block}.mytree::-webkit-scrollbar-thumb{background-color:#bebebe;height:5px;border-radius:4px;display:block}.mytree::-webkit-scrollbar{width:6px;height:6px;background-color:#f1f1f1;display:block}.mytree .el-tree-node.is-current>.el-tree-node__content{color:var(--centalineBlue)!important;background-color:#f5f7fa}.tree-line:first-child div{overflow:hidden}.el-tree-node{position:relative}.el-tree-node,.el-tree-node__children{padding-left:16px}.el-tree-node__content{padding-left:0!important;padding-right:2px!important}.el-tree-node:before{content:\"\";height:100%;width:1px;position:absolute;left:27px;top:-1px;border-width:1px;border-left:1px dashed #52627c}.tree-line .el-tree-node:before:last-child{top:-35px}.el-tree-node__children .el-tree-node:before{content:\"\";height:100%;width:1px;position:absolute;left:27px;top:-2px;border-width:1px;border-left:1px dashed #52627c}.el-tree-node:last-child:before{height:15px}.el-tree-node:after{content:\"\";width:12px;height:20px;position:absolute;left:27px;top:12px;right:2px;border-width:1px;border-top:1px dashed #52627c}.el-tree-node__expand-icon{font-size:16px}.tree>.el-tree-node:first-child:after{border-top:none}.tree>.is-leaf{color:transparent}.el-tree .el-tree-node__expand-icon.expanded{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.el-tree .el-icon-caret-right:before{background:url(" + escape(__webpack_require__(931)) + ") no-repeat;content:\"\";display:block;width:12px;height:12px;font-size:12px;background-size:10px}.el-tree .el-tree-node__expand-icon.expanded.el-icon-caret-right:before{background:url(" + escape(__webpack_require__(932)) + ") no-repeat;content:\"\";display:block;width:12px;height:12px;font-size:12px;background-size:10px}.el-tree .el-tree-node__expand-icon.is-leaf:before{background:transparent no-repeat 0 3px;content:\"\";display:block;width:12px;height:12px;font-size:12px;background-size:10px}.box-menu{width:150px;position:absolute;z-index:1000;background-color:#fff;-webkit-box-shadow:0 0 10px #ccc,0 0 20px #ccc,0 0 30px #ccc;box-shadow:0 0 10px #ccc,0 0 20px #ccc,0 0 30px #ccc;padding:10px}.box-menu div{cursor:pointer}.box-menu .opertion{cursor:pointer;line-height:30px}.box-menu .opertion:hover{color:var(--btnHoverRed);background-color:var(--el-fill-color-light)}", ""]);
|
|
91426
91445
|
|
|
91427
91446
|
// exports
|
|
91428
91447
|
|