centaline-data-driven 1.6.51 → 1.6.52
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/release-log.md +13 -0
- package/src/Form.vue +2 -2
- package/src/SearchList.vue +1 -0
- package/src/centaline/dynamicForm/src/dynamicForm.vue +4 -4
- package/src/centaline/dynamicInputNumber/src/dynamicInputNumber.vue +5 -0
- package/src/centaline/loader/src/ctl/Base.js +24 -0
- package/src/centaline/loader/src/ctl/Form.js +62 -6
- package/src/centaline/loader/src/ctl/LH.js +3 -0
- package/src/centaline/loader/src/ctl/SearchScreen.js +44 -4
- package/src/main.js +4 -4
- package/wwwroot/static/centaline/centaline-data-driven.js +159 -29
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
|
@@ -6680,6 +6680,9 @@ var Base = function Base(source) {
|
|
|
6680
6680
|
if (typeof source.show !== "undefined") {
|
|
6681
6681
|
return source.show;
|
|
6682
6682
|
}
|
|
6683
|
+
if (source.hidden) {
|
|
6684
|
+
return !source.hidden;
|
|
6685
|
+
}
|
|
6683
6686
|
return true;
|
|
6684
6687
|
},
|
|
6685
6688
|
set show(v) {
|
|
@@ -7000,6 +7003,27 @@ var Base = function Base(source) {
|
|
|
7000
7003
|
},
|
|
7001
7004
|
get vueComponentName() {
|
|
7002
7005
|
return source.vueComponentName;
|
|
7006
|
+
},
|
|
7007
|
+
//是否显示
|
|
7008
|
+
get hidden() {
|
|
7009
|
+
return source.hidden;
|
|
7010
|
+
},
|
|
7011
|
+
set hidden(v) {
|
|
7012
|
+
source.hidden = v;
|
|
7013
|
+
},
|
|
7014
|
+
//决定其显示相关的字段
|
|
7015
|
+
get displayRelationField() {
|
|
7016
|
+
return source.displayRelationField;
|
|
7017
|
+
},
|
|
7018
|
+
set displayRelationField(v) {
|
|
7019
|
+
source.displayRelationField = v;
|
|
7020
|
+
},
|
|
7021
|
+
//决定其显示相关字段的值
|
|
7022
|
+
get displayRelationFieldValue() {
|
|
7023
|
+
return source.displayRelationFieldValue;
|
|
7024
|
+
},
|
|
7025
|
+
set displayRelationFieldValue(v) {
|
|
7026
|
+
source.displayRelationFieldValue = v;
|
|
7003
7027
|
}
|
|
7004
7028
|
};
|
|
7005
7029
|
|
|
@@ -11318,7 +11342,7 @@ module.exports = "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABX
|
|
|
11318
11342
|
"use strict";
|
|
11319
11343
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__ = __webpack_require__(188);
|
|
11320
11344
|
/* unused harmony namespace reexport */
|
|
11321
|
-
/* harmony import */ var
|
|
11345
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2489258b_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__ = __webpack_require__(622);
|
|
11322
11346
|
function injectStyle (ssrContext) {
|
|
11323
11347
|
__webpack_require__(616)
|
|
11324
11348
|
}
|
|
@@ -11338,7 +11362,7 @@ var __vue_scopeId__ = null
|
|
|
11338
11362
|
var __vue_module_identifier__ = null
|
|
11339
11363
|
var Component = normalizeComponent(
|
|
11340
11364
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicForm_vue__["a" /* default */],
|
|
11341
|
-
|
|
11365
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_2489258b_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicForm_vue__["a" /* default */],
|
|
11342
11366
|
__vue_template_functional__,
|
|
11343
11367
|
__vue_styles__,
|
|
11344
11368
|
__vue_scopeId__,
|
|
@@ -16900,6 +16924,8 @@ var T = function T(source) {
|
|
|
16900
16924
|
var flagShow = true;
|
|
16901
16925
|
if (typeof source.show !== "undefined") {
|
|
16902
16926
|
flagShow = source.show;
|
|
16927
|
+
} else if (source.hidden) {
|
|
16928
|
+
flagShow = !source.hidden;
|
|
16903
16929
|
}
|
|
16904
16930
|
if (!rtn.labelValue && !rtn.label) {
|
|
16905
16931
|
flagShow = false;
|
|
@@ -57319,7 +57345,9 @@ var SearchScreen = function SearchScreen(source, callBack, screenPara, prevParam
|
|
|
57319
57345
|
} else if (attrKey == 'code1' && (rtn1.source.controlType === 25 || rtn1.source.controlType === 51) && attrValue != undefined && attrValue != null && attrValue != '') {
|
|
57320
57346
|
rtn1.jsSetFile(attrValue);
|
|
57321
57347
|
}
|
|
57322
|
-
|
|
57348
|
+
if (attrKey == 'hidden') {
|
|
57349
|
+
rtn1.source['show'] = !attrValue;
|
|
57350
|
+
}
|
|
57323
57351
|
rtn1.source[attrKey] = attrValue;
|
|
57324
57352
|
this.form.hatchHandle(id, attrKey, attrValue, rtn1);
|
|
57325
57353
|
|
|
@@ -58129,7 +58157,7 @@ var SearchScreen = function SearchScreen(source, callBack, screenPara, prevParam
|
|
|
58129
58157
|
|
|
58130
58158
|
if (rtn.sourceFieldsArr) {
|
|
58131
58159
|
for (var i in rtn.sourceFieldsArr) {
|
|
58132
|
-
if (rtn.sourceFieldsArr[i].hiddenRelationField === item.id) {
|
|
58160
|
+
if (rtn.sourceFieldsArr[i].hiddenRelationField && rtn.sourceFieldsArr[i].hiddenRelationField === item.id) {
|
|
58133
58161
|
field = rtn.sourceFieldsArr[i];
|
|
58134
58162
|
|
|
58135
58163
|
if (field) {
|
|
@@ -58140,13 +58168,23 @@ var SearchScreen = function SearchScreen(source, callBack, screenPara, prevParam
|
|
|
58140
58168
|
field.show = true;
|
|
58141
58169
|
}
|
|
58142
58170
|
}
|
|
58171
|
+
} else if (rtn.sourceFieldsArr[i].displayRelationField && rtn.sourceFieldsArr[i].displayRelationField === item.id) {
|
|
58172
|
+
field = rtn.sourceFieldsArr[i];
|
|
58173
|
+
if (field) {
|
|
58174
|
+
var displayValueArr = field.displayRelationFieldValue.split(',');
|
|
58175
|
+
if (displayValueArr.indexOf(item.code1) > -1) {
|
|
58176
|
+
field.show = true;
|
|
58177
|
+
} else {
|
|
58178
|
+
field.show = false;
|
|
58179
|
+
}
|
|
58180
|
+
}
|
|
58143
58181
|
}
|
|
58144
58182
|
}
|
|
58145
58183
|
}
|
|
58146
58184
|
|
|
58147
58185
|
if (rtn._screen) {
|
|
58148
58186
|
for (var i in rtn._screen) {
|
|
58149
|
-
if (rtn._screen[i].hiddenId === item.id) {
|
|
58187
|
+
if (rtn._screen[i].hiddenId && rtn._screen[i].hiddenId === item.id) {
|
|
58150
58188
|
field = rtn._screen[i];
|
|
58151
58189
|
|
|
58152
58190
|
if (field) {
|
|
@@ -58158,13 +58196,24 @@ var SearchScreen = function SearchScreen(source, callBack, screenPara, prevParam
|
|
|
58158
58196
|
}
|
|
58159
58197
|
field.keyScreen = field.id + Math.random();
|
|
58160
58198
|
}
|
|
58199
|
+
} else if (rtn._screen[i].displayRelationField && rtn._screen[i].displayRelationField === item.id) {
|
|
58200
|
+
field = rtn._screen[i];
|
|
58201
|
+
if (field) {
|
|
58202
|
+
var _displayValueArr = field.displayRelationFieldValue.split(',');
|
|
58203
|
+
if (_displayValueArr.indexOf(item.code1) > -1) {
|
|
58204
|
+
field.show = true;
|
|
58205
|
+
} else {
|
|
58206
|
+
field.show = false;
|
|
58207
|
+
}
|
|
58208
|
+
field.keyScreen = field.id + Math.random();
|
|
58209
|
+
}
|
|
58161
58210
|
}
|
|
58162
58211
|
}
|
|
58163
58212
|
}
|
|
58164
58213
|
|
|
58165
58214
|
if (rtn._highScreen) {
|
|
58166
58215
|
for (var i in rtn._highScreen) {
|
|
58167
|
-
if (rtn._highScreen[i].hiddenId === item.id) {
|
|
58216
|
+
if (rtn._highScreen[i].hiddenId && rtn._highScreen[i].hiddenId === item.id) {
|
|
58168
58217
|
field = rtn._highScreen[i];
|
|
58169
58218
|
|
|
58170
58219
|
if (field) {
|
|
@@ -58176,6 +58225,17 @@ var SearchScreen = function SearchScreen(source, callBack, screenPara, prevParam
|
|
|
58176
58225
|
}
|
|
58177
58226
|
field.keyScreen = field.id + Math.random();
|
|
58178
58227
|
}
|
|
58228
|
+
} else if (rtn._highScreen[i].displayRelationField && rtn._highScreen[i].displayRelationField === item.id) {
|
|
58229
|
+
field = rtn._highScreen[i];
|
|
58230
|
+
if (field) {
|
|
58231
|
+
var _displayValueArr2 = field.displayRelationFieldValue.split(',');
|
|
58232
|
+
if (_displayValueArr2.indexOf(item.code1) > -1) {
|
|
58233
|
+
field.show = true;
|
|
58234
|
+
} else {
|
|
58235
|
+
field.show = false;
|
|
58236
|
+
}
|
|
58237
|
+
field.keyScreen = field.id + Math.random();
|
|
58238
|
+
}
|
|
58179
58239
|
}
|
|
58180
58240
|
}
|
|
58181
58241
|
}
|
|
@@ -61605,6 +61665,9 @@ var Form = function Form(source, callBack, apiParam, failCallBack, isFormList) {
|
|
|
61605
61665
|
rtn1.jsSetFile(attrValue);
|
|
61606
61666
|
}
|
|
61607
61667
|
|
|
61668
|
+
if (attrKey == 'hidden') {
|
|
61669
|
+
rtn1.source['show'] = !attrValue;
|
|
61670
|
+
}
|
|
61608
61671
|
rtn1.source[attrKey] = attrValue;
|
|
61609
61672
|
if (rtn1.source.controlType === 23) {
|
|
61610
61673
|
if (rtn1["options"].length == 0) {
|
|
@@ -61959,6 +62022,9 @@ var Form = function Form(source, callBack, apiParam, failCallBack, isFormList) {
|
|
|
61959
62022
|
attrValue = Number(attrValue).toFixed(rtn1.source.decimals1);
|
|
61960
62023
|
}
|
|
61961
62024
|
}
|
|
62025
|
+
if (attrKey == 'hidden') {
|
|
62026
|
+
rtn1.source['show'] = !attrValue;
|
|
62027
|
+
}
|
|
61962
62028
|
rtn1.source[attrKey] = attrValue;
|
|
61963
62029
|
this.self.hatchHandle(id, attrKey, attrValue, rtn1);
|
|
61964
62030
|
|
|
@@ -62106,33 +62172,92 @@ var Form = function Form(source, callBack, apiParam, failCallBack, isFormList) {
|
|
|
62106
62172
|
//隐藏关联组件
|
|
62107
62173
|
hiddenHandle: function hiddenHandle(item, update) {
|
|
62108
62174
|
if (item.id) {
|
|
62109
|
-
var
|
|
62110
|
-
var
|
|
62175
|
+
var i;
|
|
62176
|
+
var value;
|
|
62177
|
+
var value;
|
|
62111
62178
|
|
|
62112
|
-
|
|
62113
|
-
|
|
62114
|
-
|
|
62179
|
+
(function () {
|
|
62180
|
+
var sign = false;
|
|
62181
|
+
var field = null;
|
|
62115
62182
|
|
|
62116
|
-
|
|
62117
|
-
|
|
62118
|
-
|
|
62119
|
-
|
|
62120
|
-
|
|
62121
|
-
|
|
62183
|
+
for (i in rtn.source.fields) {
|
|
62184
|
+
if (rtn.source.fields[i].hiddenRelationField && rtn.source.fields[i].hiddenRelationField === item.id) {
|
|
62185
|
+
field = rtn.source.fields[i];
|
|
62186
|
+
|
|
62187
|
+
if (field) {
|
|
62188
|
+
(function () {
|
|
62189
|
+
var hiddenValueArr = field.hiddenRelationFieldValue.split(',');
|
|
62190
|
+
if (item.type == __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.MultiSelectWithSearch || item.type == __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.MultiSelectNoSearch) {
|
|
62191
|
+
field.show = true;
|
|
62192
|
+
value = item.code1 === '' ? [''] : JSON.parse(item.code1);
|
|
62193
|
+
|
|
62194
|
+
if (value.length > 0) {
|
|
62195
|
+
value.forEach(function (v) {
|
|
62196
|
+
if (v.flagDeleted !== true) {
|
|
62197
|
+
if (hiddenValueArr.indexOf(v.code) > -1) {
|
|
62198
|
+
field.show = false;
|
|
62199
|
+
}
|
|
62200
|
+
}
|
|
62201
|
+
});
|
|
62202
|
+
}
|
|
62203
|
+
} else {
|
|
62204
|
+
if (hiddenValueArr.indexOf(item.code1) > -1) {
|
|
62205
|
+
field.show = false;
|
|
62206
|
+
} else {
|
|
62207
|
+
field.show = true;
|
|
62208
|
+
}
|
|
62209
|
+
}
|
|
62210
|
+
|
|
62211
|
+
//本组件隐藏,子组件必须隐藏
|
|
62212
|
+
rtn.hiddenHandlesource(field, true);
|
|
62213
|
+
if (!item.show && item.type !== __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.Hidden) field.show = false;
|
|
62214
|
+
|
|
62215
|
+
sign = true;
|
|
62216
|
+
|
|
62217
|
+
if (update && rtn.self && sign) {
|
|
62218
|
+
rtn.self.$forceUpdate();
|
|
62219
|
+
}
|
|
62220
|
+
})();
|
|
62122
62221
|
}
|
|
62222
|
+
} else if (rtn.source.fields[i].displayRelationField && rtn.source.fields[i].displayRelationField === item.id) {
|
|
62223
|
+
field = rtn.source.fields[i];
|
|
62123
62224
|
|
|
62124
|
-
|
|
62125
|
-
|
|
62126
|
-
|
|
62225
|
+
if (field) {
|
|
62226
|
+
(function () {
|
|
62227
|
+
var displayValueArr = field.displayRelationFieldValue.split(',');
|
|
62228
|
+
if (item.type == __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.MultiSelectWithSearch || item.type == __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.MultiSelectNoSearch) {
|
|
62229
|
+
field.show = false;
|
|
62230
|
+
value = item.code1 === '' ? [''] : JSON.parse(item.code1);
|
|
62231
|
+
|
|
62232
|
+
if (value.length > 0) {
|
|
62233
|
+
value.forEach(function (v) {
|
|
62234
|
+
if (v.flagDeleted !== true) {
|
|
62235
|
+
if (displayValueArr.indexOf(v.code) > -1) {
|
|
62236
|
+
field.show = true;
|
|
62237
|
+
}
|
|
62238
|
+
}
|
|
62239
|
+
});
|
|
62240
|
+
}
|
|
62241
|
+
} else {
|
|
62242
|
+
if (displayValueArr.indexOf(item.code1) > -1) {
|
|
62243
|
+
field.show = true;
|
|
62244
|
+
} else {
|
|
62245
|
+
field.show = false;
|
|
62246
|
+
}
|
|
62247
|
+
}
|
|
62127
62248
|
|
|
62128
|
-
|
|
62249
|
+
if (!item.show && item.type !== __WEBPACK_IMPORTED_MODULE_5__lib_Enum__["default"].ControlType.Hidden) field.show = false;
|
|
62129
62250
|
|
|
62130
|
-
|
|
62131
|
-
|
|
62251
|
+
sign = true;
|
|
62252
|
+
|
|
62253
|
+
if (update && rtn.self && sign) {
|
|
62254
|
+
rtn.self.$forceUpdate();
|
|
62255
|
+
}
|
|
62256
|
+
})();
|
|
62132
62257
|
}
|
|
62133
62258
|
}
|
|
62134
62259
|
}
|
|
62135
|
-
}
|
|
62260
|
+
})();
|
|
62136
62261
|
}
|
|
62137
62262
|
},
|
|
62138
62263
|
hiddenHandlesource: function hiddenHandlesource(item) {
|
|
@@ -65193,6 +65318,11 @@ var AppContainer = function AppContainer(source, apiParam, callBack) {
|
|
|
65193
65318
|
this.model.value = this.$common.numFloat(this.model.value, this.model.decimals, this.inputOld); //保留n位小数
|
|
65194
65319
|
if (this.model.max !== "" && parseFloat(this.model.value) > parseFloat(this.model.max)) {
|
|
65195
65320
|
this.model.value = this.inputOld;
|
|
65321
|
+
this.$message({
|
|
65322
|
+
message: '【' + this.model.label + '】最大值为' + this.model.max,
|
|
65323
|
+
type: 'error',
|
|
65324
|
+
showClose: true
|
|
65325
|
+
});
|
|
65196
65326
|
}
|
|
65197
65327
|
|
|
65198
65328
|
this.inputHandler(this.model.value);
|
|
@@ -80142,7 +80272,7 @@ var content = __webpack_require__(617);
|
|
|
80142
80272
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
80143
80273
|
if(content.locals) module.exports = content.locals;
|
|
80144
80274
|
// add the styles to the DOM
|
|
80145
|
-
var update = __webpack_require__(3)("
|
|
80275
|
+
var update = __webpack_require__(3)("4b10dcde", content, true, {});
|
|
80146
80276
|
|
|
80147
80277
|
/***/ }),
|
|
80148
80278
|
/* 617 */
|
|
@@ -80237,7 +80367,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
80237
80367
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
80238
80368
|
|
|
80239
80369
|
"use strict";
|
|
80240
|
-
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}},[(_vm.model.tip)?_c('div',{staticClass:"tip-absolute",style:({width:(_vm.tipWidth-20)+'px'})},[_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.tip)}})]):_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('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,"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',{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(),"lazy":item.lazyLoad}},[_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,"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)],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,"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.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,"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',{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:{"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.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}})])}
|
|
80370
|
+
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}},[(_vm.model.tip)?_c('div',{staticClass:"tip-absolute",style:({width:(_vm.tipWidth-20)+'px'})},[_c('span',{domProps:{"innerHTML":_vm._s(_vm.model.tip)}})]):_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',{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(),"lazy":item.lazyLoad}},[_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)],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('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.independentItem.length > 0)?_c('el-row',{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',{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:{"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.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}})])}
|
|
80241
80371
|
var staticRenderFns = []
|
|
80242
80372
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
80243
80373
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -87107,7 +87237,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
87107
87237
|
"use strict";
|
|
87108
87238
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicInputNumber_vue__ = __webpack_require__(399);
|
|
87109
87239
|
/* unused harmony namespace reexport */
|
|
87110
|
-
/* harmony import */ var
|
|
87240
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6124e541_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicInputNumber_vue__ = __webpack_require__(777);
|
|
87111
87241
|
function injectStyle (ssrContext) {
|
|
87112
87242
|
__webpack_require__(775)
|
|
87113
87243
|
}
|
|
@@ -87127,7 +87257,7 @@ var __vue_scopeId__ = null
|
|
|
87127
87257
|
var __vue_module_identifier__ = null
|
|
87128
87258
|
var Component = normalizeComponent(
|
|
87129
87259
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicInputNumber_vue__["a" /* default */],
|
|
87130
|
-
|
|
87260
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_6124e541_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicInputNumber_vue__["a" /* default */],
|
|
87131
87261
|
__vue_template_functional__,
|
|
87132
87262
|
__vue_styles__,
|
|
87133
87263
|
__vue_scopeId__,
|
|
@@ -87148,7 +87278,7 @@ var content = __webpack_require__(776);
|
|
|
87148
87278
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
87149
87279
|
if(content.locals) module.exports = content.locals;
|
|
87150
87280
|
// add the styles to the DOM
|
|
87151
|
-
var update = __webpack_require__(3)("
|
|
87281
|
+
var update = __webpack_require__(3)("2cbe8dd3", content, true, {});
|
|
87152
87282
|
|
|
87153
87283
|
/***/ }),
|
|
87154
87284
|
/* 776 */
|