@zscreate/form-component 1.1.128 → 1.1.130
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/dist/form-component.css +159 -147
- package/dist/form-component.umd-report.html +2 -2
- package/dist/form-component.umd.js +94 -52
- package/package.json +1 -1
|
@@ -63497,7 +63497,7 @@ module.exports = /******/function (modules) {
|
|
|
63497
63497
|
/* harmony import */ var _util_mathUtils__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(38);
|
|
63498
63498
|
/* harmony import */ var _util_util__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(6955);
|
|
63499
63499
|
/* harmony import */ var _layoutItem__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(2376);
|
|
63500
|
-
/* harmony import */ var _components_index__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(
|
|
63500
|
+
/* harmony import */ var _components_index__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(8633);
|
|
63501
63501
|
/* harmony import */ var pubsub_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(9616);
|
|
63502
63502
|
/* harmony import */ var pubsub_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(pubsub_js__WEBPACK_IMPORTED_MODULE_4__);
|
|
63503
63503
|
/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(7203);
|
|
@@ -63984,6 +63984,7 @@ module.exports = /******/function (modules) {
|
|
|
63984
63984
|
provide() {
|
|
63985
63985
|
return {
|
|
63986
63986
|
getWidgetList: () => this.widgetList,
|
|
63987
|
+
getFormData: () => this.value,
|
|
63987
63988
|
config: this.data.config,
|
|
63988
63989
|
formId: this.data.formId,
|
|
63989
63990
|
isDraft: this.isDraft
|
|
@@ -67139,15 +67140,25 @@ const UploadFile = params => postAction('/sys/common/upload', params);
|
|
|
67139
67140
|
const API = '/form/formdesiger/countLeaveDays';
|
|
67140
67141
|
/* harmony default export */ __webpack_exports__.Z = ({
|
|
67141
67142
|
methods: {
|
|
67143
|
+
/**
|
|
67144
|
+
* if (that.isClickByUser) {
|
|
67145
|
+
* that.publish('times', {
|
|
67146
|
+
* method:"validateByApiMinxins",
|
|
67147
|
+
* args:{api:'',holidayType:'1',fnArgs:[that.models['kssj'],list]}
|
|
67148
|
+
* })
|
|
67149
|
+
* }
|
|
67150
|
+
* @param args
|
|
67151
|
+
*/
|
|
67142
67152
|
validateByApiMinxins(args) {
|
|
67143
|
-
console.log("validateByApiMinxins");
|
|
67144
67153
|
let api = args.api || API,
|
|
67145
67154
|
kssj = args.fnArgs[0],
|
|
67146
|
-
jssj = args.fnArgs[1]
|
|
67155
|
+
jssj = args.fnArgs[1],
|
|
67156
|
+
holidayType = args.holidayType || 2;
|
|
67147
67157
|
if (kssj && jssj) {
|
|
67148
67158
|
let params = {
|
|
67149
67159
|
kssj,
|
|
67150
|
-
jssj
|
|
67160
|
+
jssj,
|
|
67161
|
+
holidayType
|
|
67151
67162
|
};
|
|
67152
67163
|
(0,_api_manage__WEBPACK_IMPORTED_MODULE_0__/* .getAction */ .s7)(api, params).then(res => {
|
|
67153
67164
|
res.success && this.updateModelByPulish(res.result);
|
|
@@ -67155,6 +67166,21 @@ const API = '/form/formdesiger/countLeaveDays';
|
|
|
67155
67166
|
} else {
|
|
67156
67167
|
this.updateModelByPulish('0');
|
|
67157
67168
|
}
|
|
67169
|
+
},
|
|
67170
|
+
httpApiActions(args) {
|
|
67171
|
+
const {
|
|
67172
|
+
method = 'get',
|
|
67173
|
+
api,
|
|
67174
|
+
data,
|
|
67175
|
+
showError
|
|
67176
|
+
} = args;
|
|
67177
|
+
let func = method === 'get' ? _api_manage__WEBPACK_IMPORTED_MODULE_0__/* .getAction */ .s7 : _api_manage__WEBPACK_IMPORTED_MODULE_0__/* .postAction */ .SI;
|
|
67178
|
+
func(api, data).then(res => {
|
|
67179
|
+
res.success && this.updateModelByPulish(res.result);
|
|
67180
|
+
if (!res.success && showError) {
|
|
67181
|
+
this.$message.error(res.message);
|
|
67182
|
+
}
|
|
67183
|
+
});
|
|
67158
67184
|
}
|
|
67159
67185
|
}
|
|
67160
67186
|
});
|
|
@@ -67184,6 +67210,10 @@ const API = '/form/formdesiger/countLeaveDays';
|
|
|
67184
67210
|
from: 'getWidgetList',
|
|
67185
67211
|
default: () => () => [[]]
|
|
67186
67212
|
},
|
|
67213
|
+
getFormData: {
|
|
67214
|
+
from: 'getFormData',
|
|
67215
|
+
default: () => () => ({})
|
|
67216
|
+
},
|
|
67187
67217
|
isAllLayout: {
|
|
67188
67218
|
from: 'isAllLayout',
|
|
67189
67219
|
default: false
|
|
@@ -67858,7 +67888,7 @@ module.exports = {
|
|
|
67858
67888
|
|
|
67859
67889
|
/***/ }),
|
|
67860
67890
|
|
|
67861
|
-
/***/
|
|
67891
|
+
/***/ 8633:
|
|
67862
67892
|
/***/ (function(__unused_webpack_module, __webpack_exports__, __webpack_require__) {
|
|
67863
67893
|
|
|
67864
67894
|
"use strict";
|
|
@@ -73115,8 +73145,8 @@ var Slider_widgetDesign_component = (0,componentNormalizer/* default */.Z)(
|
|
|
73115
73145
|
widgetSetup: Slider_widgetSetup,
|
|
73116
73146
|
widgetDesign: Slider_widgetDesign
|
|
73117
73147
|
});
|
|
73118
|
-
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/component.vue?vue&type=template&id=
|
|
73119
|
-
var
|
|
73148
|
+
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/component.vue?vue&type=template&id=37b953c4&scoped=true&
|
|
73149
|
+
var componentvue_type_template_id_37b953c4_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.widget)?_c('div',{staticClass:"custom_form_item",style:({ height: _vm.widget.options.height + 'px' })},[_c('a-form-model-item',{ref:_vm.widget.model,attrs:{"colon":false,"label-col":_vm.labelCol,"wrapperCol":_vm.wrapperCol,"prop":_vm.tableKey ? (_vm.tableKey + "." + _vm.tableIndex + "." + (_vm.widget.model)) : _vm.widget.model,"rules":_vm.tableKey ? _vm.rules[_vm.tableKey][_vm.widget.model] : _vm.rules[_vm.widget.model]}},[_c('a-radio-group',{attrs:{"disabled":_vm.isdisabled ? _vm.show : _vm.widget.options.disabled,"placeholder":_vm.widget.options.placeholder},on:{"change":_vm.onChange},nativeOn:{"click":function($event){_vm.isClickByUser = true}},model:{value:(_vm.dataModel),callback:function ($$v) {_vm.dataModel=$$v},expression:"dataModel"}},[(_vm.widget.options.inline == true)?_vm._l((_vm.dictOptions),function(item,index){return _c('a-radio',{key:index,style:({
|
|
73120
73150
|
display: 'inline-block',
|
|
73121
73151
|
}),attrs:{"value":item.value}},[_vm._v(" "+_vm._s(item.text)+" ")])}):_vm._e(),(_vm.widget.options.inline == false)?_vm._l((_vm.dictOptions),function(item,index){return _c('a-radio',{key:index,style:({
|
|
73122
73152
|
display: 'block'
|
|
@@ -73125,7 +73155,7 @@ var componentvue_type_template_id_74d2be94_render = function () {var _vm=this;va
|
|
|
73125
73155
|
_vm.config.validate === true && _vm.widget.options.required === true
|
|
73126
73156
|
? 'is_required'
|
|
73127
73157
|
: 'no_required' ],style:({ color: this.config.color }),attrs:{"slot":"label"},slot:"label"},[_vm._v(" "+_vm._s(_vm.widget.name)+" ")]):_vm._e()],1)],1):_vm._e()}
|
|
73128
|
-
var
|
|
73158
|
+
var componentvue_type_template_id_37b953c4_scoped_true_staticRenderFns = []
|
|
73129
73159
|
|
|
73130
73160
|
|
|
73131
73161
|
;// CONCATENATED MODULE: ./node_modules/_thread-loader@3.0.4@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.3.0@babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/component.vue?vue&type=script&lang=js&
|
|
@@ -73284,10 +73314,15 @@ var componentvue_type_template_id_74d2be94_staticRenderFns = []
|
|
|
73284
73314
|
});
|
|
73285
73315
|
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/component.vue?vue&type=script&lang=js&
|
|
73286
73316
|
/* harmony default export */ var components_Radio_componentvue_type_script_lang_js_ = (Radio_componentvue_type_script_lang_js_);
|
|
73287
|
-
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/component.vue?vue&type=style&index=0&id=
|
|
73317
|
+
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/component.vue?vue&type=style&index=0&id=37b953c4&prod&lang=css&
|
|
73288
73318
|
// extracted by mini-css-extract-plugin
|
|
73289
73319
|
|
|
73290
|
-
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/component.vue?vue&type=style&index=0&id=
|
|
73320
|
+
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/component.vue?vue&type=style&index=0&id=37b953c4&prod&lang=css&
|
|
73321
|
+
|
|
73322
|
+
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/component.vue?vue&type=style&index=1&id=37b953c4&prod&lang=less&scoped=true&
|
|
73323
|
+
// extracted by mini-css-extract-plugin
|
|
73324
|
+
|
|
73325
|
+
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/component.vue?vue&type=style&index=1&id=37b953c4&prod&lang=less&scoped=true&
|
|
73291
73326
|
|
|
73292
73327
|
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/component.vue
|
|
73293
73328
|
|
|
@@ -73296,15 +73331,16 @@ var componentvue_type_template_id_74d2be94_staticRenderFns = []
|
|
|
73296
73331
|
;
|
|
73297
73332
|
|
|
73298
73333
|
|
|
73334
|
+
|
|
73299
73335
|
/* normalize component */
|
|
73300
73336
|
|
|
73301
73337
|
var Radio_component_component = (0,componentNormalizer/* default */.Z)(
|
|
73302
73338
|
components_Radio_componentvue_type_script_lang_js_,
|
|
73303
|
-
|
|
73304
|
-
|
|
73339
|
+
componentvue_type_template_id_37b953c4_scoped_true_render,
|
|
73340
|
+
componentvue_type_template_id_37b953c4_scoped_true_staticRenderFns,
|
|
73305
73341
|
false,
|
|
73306
73342
|
null,
|
|
73307
|
-
|
|
73343
|
+
"37b953c4",
|
|
73308
73344
|
null
|
|
73309
73345
|
|
|
73310
73346
|
)
|
|
@@ -73456,8 +73492,8 @@ var Radio_widgetSetup_component = (0,componentNormalizer/* default */.Z)(
|
|
|
73456
73492
|
)
|
|
73457
73493
|
|
|
73458
73494
|
/* harmony default export */ var Radio_widgetSetup = (Radio_widgetSetup_component.exports);
|
|
73459
|
-
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/widgetDesign.vue?vue&type=template&id=
|
|
73460
|
-
var
|
|
73495
|
+
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/widgetDesign.vue?vue&type=template&id=d38be826&scoped=true&
|
|
73496
|
+
var widgetDesignvue_type_template_id_d38be826_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.widget)?_c('div',{staticClass:"custom_form_item",style:({ height: _vm.widget.options.height + 'px' })},[_c('a-form-model-item',{attrs:{"colon":false,"label-col":_vm.labelCol,"wrapperCol":_vm.wrapperCol}},[(!_vm.widget.options.disabled)?_c('a-radio-group',{attrs:{"placeholder":_vm.widget.options.placeholder},model:{value:(_vm.val),callback:function ($$v) {_vm.val=$$v},expression:"val"}},[(_vm.widget.options.inline == true)?_vm._l((_vm.dictOptions),function(item,index){return _c('a-radio',{key:index,style:({
|
|
73461
73497
|
display: 'inline-block'
|
|
73462
73498
|
}),attrs:{"value":item.value}},[_vm._v(" "+_vm._s(item.text)+" ")])}):_vm._e(),(_vm.widget.options.inline == false)?_vm._l((_vm.dictOptions),function(item,index){return _c('a-radio',{key:index,style:({
|
|
73463
73499
|
display: 'block'
|
|
@@ -73469,7 +73505,7 @@ var widgetDesignvue_type_template_id_ac34c41c_render = function () {var _vm=this
|
|
|
73469
73505
|
],style:({
|
|
73470
73506
|
color: _vm.config.color
|
|
73471
73507
|
}),attrs:{"slot":"label"},slot:"label"},[_vm._v(" "+_vm._s(_vm.widget.name)+" ")])],1)],1):_vm._e()}
|
|
73472
|
-
var
|
|
73508
|
+
var widgetDesignvue_type_template_id_d38be826_scoped_true_staticRenderFns = []
|
|
73473
73509
|
|
|
73474
73510
|
|
|
73475
73511
|
;// CONCATENATED MODULE: ./node_modules/_thread-loader@3.0.4@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.3.0@babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/widgetDesign.vue?vue&type=script&lang=js&
|
|
@@ -73663,21 +73699,27 @@ var widgetDesignvue_type_template_id_ac34c41c_staticRenderFns = []
|
|
|
73663
73699
|
});
|
|
73664
73700
|
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/widgetDesign.vue?vue&type=script&lang=js&
|
|
73665
73701
|
/* harmony default export */ var components_Radio_widgetDesignvue_type_script_lang_js_ = (Radio_widgetDesignvue_type_script_lang_js_);
|
|
73702
|
+
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Radio/widgetDesign.vue?vue&type=style&index=0&id=d38be826&prod&lang=less&scoped=true&
|
|
73703
|
+
// extracted by mini-css-extract-plugin
|
|
73704
|
+
|
|
73705
|
+
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/widgetDesign.vue?vue&type=style&index=0&id=d38be826&prod&lang=less&scoped=true&
|
|
73706
|
+
|
|
73666
73707
|
;// CONCATENATED MODULE: ./src/form/modules/components/Radio/widgetDesign.vue
|
|
73667
73708
|
|
|
73668
73709
|
|
|
73669
73710
|
|
|
73711
|
+
;
|
|
73670
73712
|
|
|
73671
73713
|
|
|
73672
73714
|
/* normalize component */
|
|
73673
|
-
|
|
73715
|
+
|
|
73674
73716
|
var Radio_widgetDesign_component = (0,componentNormalizer/* default */.Z)(
|
|
73675
73717
|
components_Radio_widgetDesignvue_type_script_lang_js_,
|
|
73676
|
-
|
|
73677
|
-
|
|
73718
|
+
widgetDesignvue_type_template_id_d38be826_scoped_true_render,
|
|
73719
|
+
widgetDesignvue_type_template_id_d38be826_scoped_true_staticRenderFns,
|
|
73678
73720
|
false,
|
|
73679
73721
|
null,
|
|
73680
|
-
|
|
73722
|
+
"d38be826",
|
|
73681
73723
|
null
|
|
73682
73724
|
|
|
73683
73725
|
)
|
|
@@ -76802,8 +76844,8 @@ var AllLayout_widgetDesign_component = (0,componentNormalizer/* default */.Z)(
|
|
|
76802
76844
|
widgetSetup: AllLayout_widgetSetup,
|
|
76803
76845
|
widgetDesign: AllLayout_widgetDesign
|
|
76804
76846
|
});
|
|
76805
|
-
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Verify/component.vue?vue&type=template&id=
|
|
76806
|
-
var
|
|
76847
|
+
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Verify/component.vue?vue&type=template&id=6ed57857&scoped=true&
|
|
76848
|
+
var componentvue_type_template_id_6ed57857_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.widget)?_c('div',{staticClass:"custom_form_item custom_form_item_special",style:({ height: _vm.widget.options.height + 'px' })},[_c('a-form-model-item',{ref:_vm.widget.model,attrs:{"colon":false,"label-col":_vm.labelCol,"wrapperCol":_vm.wrapperCol,"prop":_vm.tableKey ? (_vm.tableKey + "." + _vm.tableIndex + "." + (_vm.widget.model)) : _vm.widget.model,"rules":_vm.tableKey ? _vm.rules[_vm.tableKey][_vm.widget.model] : _vm.rules[_vm.widget.model]}},[_c('div',{staticClass:"verify clear verify-no-border",style:({ height: _vm.widget.options.height + 'px' })},[_c('a-form-model-item',{attrs:{"colon":false,"label-col":_vm.labelCol,"wrapperCol":_vm.wrapperCol}},[_c('div',{class:[
|
|
76807
76849
|
_vm.config.align,
|
|
76808
76850
|
_vm.config.validate === true && _vm.widget.options.required === true
|
|
76809
76851
|
? 'is_required'
|
|
@@ -76811,8 +76853,8 @@ var componentvue_type_template_id_515e9137_scoped_true_render = function () {var
|
|
|
76811
76853
|
return triggerNode.parentNode || _vm.document.body;
|
|
76812
76854
|
}},on:{"confirm":function($event){return _vm.handleSeal(2)}}},[_c('a',{attrs:{"href":"#"}},[_vm._v("盖章")])])],1)]:_vm._e(),(_vm.widget.options.isAuditing == '1' && _vm.widget.model === _vm.verifyNode)?[_c('div',{staticClass:"tw-flex flex-gap-[6px] tw-items-center tw-absolute tw-leading-[30px]",staticStyle:{"font-size":"13px","right":"1%","bottom":"11%","z-index":"10"}},[_c('span',[_vm._v("推荐审核意见:")]),_vm._l((_vm.notes),function(item,idx){return _c('span',{key:idx,staticClass:"tw-cursor-pointer tw-h-[23px] tw-mr-[10px] tw-px-[14px] tw-rounded-[6px] tw-leading-[23px] tw-bg-[#ecf5fc] tw-text-[#006EC5]",on:{"click":function($event){_vm.models[_vm.widget.model].comments = item}}},[_vm._v(_vm._s(item))])})],2)]:_vm._e()],2),_c('div',{staticClass:"verify-option"},[_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operation)+" ")]),_c('span',[_c('a-select',{directives:[{name:"show",rawName:"v-show",value:(_vm.models[_vm.widget.model]),expression:"models[widget.model]"}],style:({ width: '90%' }),attrs:{"disabled":_vm.widget.model !== _vm.verifyNode,"default-value":_vm.models[_vm.widget.model].operation},on:{"change":_vm.handleChange}},_vm._l((_vm.suggest),function(item,idx){return _c('a-select-option',{key:idx,attrs:{"value":item.value}},[_vm._v(_vm._s(item.label))])}),1)],1)]),_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operator)+" ")]),(_vm.widget.model == _vm.verifyNode)?[(_vm.widget.options.platform && !_vm.userSign)?_c('span',[_c('a-popconfirm',{attrs:{"title":"请确认是否添加签名?","ok-text":"是","cancel-text":"否","getPopupContainer":function (triggerNode) {
|
|
76813
76855
|
return triggerNode.parentNode || _vm.document.body;
|
|
76814
|
-
}},on:{"confirm":function($event){return _vm.handleSeal(1)}}},[_c('a-button',{attrs:{"type":"link"}},[_vm._v("签名")])],1)],1):(_vm.userSign)?_c('span',[_c('img',{staticStyle:{"width":"100%","height":"100%"},attrs:{"src":_vm.userSign.startsWith('data:image') ? _vm.userSign: (_vm.imgUrl + _vm.userSign),"alt":""}}),_c('a-icon',{attrs:{"name":"close"}})],1):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]:[(_vm.models[_vm.widget.model].userSign)?_c('span',[_c('img',{staticStyle:{"width":"100%","height":"100%"},attrs:{"src":_vm.models[_vm.widget.model].userSign.startsWith('data:image') ? _vm.models[_vm.widget.model].userSign : (_vm.imgUrl + _vm.models[_vm.widget.model].userSign),"alt":""}})]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]],2),_c('div',{staticStyle:{"flex-grow":"1.1"}},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operationTime)+" ")]),_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operationTime : "")+" ")])])])],2)])],1)]),(_vm.widget.model == _vm.verifyNode && _vm.widget.options.platform)?_c('a-modal',{attrs:{"zIndex":100000,"title":"选择签名签章","footer":null},model:{value:(_vm.platformVisible),callback:function ($$v) {_vm.platformVisible=$$v},expression:"platformVisible"}},[_c('a-spin',{attrs:{"tip":"加载中","spinning":_vm.iframeLoading}},[_c('iframe',{ref:"platformIframe",staticStyle:{"width":"100%","height":"470px"},attrs:{"src":_vm.platformUrl},on:{"load":_vm.platformIframeLoad,"error":function($event){_vm.iframeLoading = false; _vm.$message.error('页面加载失败')}}})])],1):_vm._e()],1):_vm._e()}
|
|
76815
|
-
var
|
|
76856
|
+
}},on:{"confirm":function($event){return _vm.handleSeal(1)}}},[_c('a-button',{attrs:{"type":"link"}},[_vm._v("签名")])],1)],1):(_vm.userSign)?_c('span',[_c('img',{staticStyle:{"max-width":"100%","height":"100%"},attrs:{"src":_vm.userSign.startsWith('data:image') ? _vm.userSign: (_vm.imgUrl + _vm.userSign),"alt":""}}),_c('a-icon',{attrs:{"name":"close"}})],1):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]:[(_vm.models[_vm.widget.model].userSign)?_c('span',[_c('img',{staticStyle:{"max-width":"100%","height":"100%"},attrs:{"src":_vm.models[_vm.widget.model].userSign.startsWith('data:image') ? _vm.models[_vm.widget.model].userSign : (_vm.imgUrl + _vm.models[_vm.widget.model].userSign),"alt":""}})]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]],2),_c('div',{staticStyle:{"flex-grow":"1.1"}},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operationTime)+" ")]),_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operationTime : "")+" ")])])])],2)])],1)]),(_vm.widget.model == _vm.verifyNode && _vm.widget.options.platform)?_c('a-modal',{attrs:{"zIndex":100000,"title":"选择签名签章","footer":null},model:{value:(_vm.platformVisible),callback:function ($$v) {_vm.platformVisible=$$v},expression:"platformVisible"}},[_c('a-spin',{attrs:{"tip":"加载中","spinning":_vm.iframeLoading}},[_c('iframe',{ref:"platformIframe",staticStyle:{"width":"100%","height":"470px"},attrs:{"src":_vm.platformUrl},on:{"load":_vm.platformIframeLoad,"error":function($event){_vm.iframeLoading = false; _vm.$message.error('页面加载失败')}}})])],1):_vm._e()],1):_vm._e()}
|
|
76857
|
+
var componentvue_type_template_id_6ed57857_scoped_true_staticRenderFns = []
|
|
76816
76858
|
|
|
76817
76859
|
|
|
76818
76860
|
;// CONCATENATED MODULE: ./src/utils/util.js
|
|
@@ -77435,10 +77477,10 @@ const Verify_componentvue_type_script_lang_js_layoutItem = () => Promise.resolve
|
|
|
77435
77477
|
});
|
|
77436
77478
|
;// CONCATENATED MODULE: ./src/form/modules/components/Verify/component.vue?vue&type=script&lang=js&
|
|
77437
77479
|
/* harmony default export */ var components_Verify_componentvue_type_script_lang_js_ = (Verify_componentvue_type_script_lang_js_);
|
|
77438
|
-
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Verify/component.vue?vue&type=style&index=0&id=
|
|
77480
|
+
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/Verify/component.vue?vue&type=style&index=0&id=6ed57857&prod&lang=less&scoped=true&
|
|
77439
77481
|
// extracted by mini-css-extract-plugin
|
|
77440
77482
|
|
|
77441
|
-
;// CONCATENATED MODULE: ./src/form/modules/components/Verify/component.vue?vue&type=style&index=0&id=
|
|
77483
|
+
;// CONCATENATED MODULE: ./src/form/modules/components/Verify/component.vue?vue&type=style&index=0&id=6ed57857&prod&lang=less&scoped=true&
|
|
77442
77484
|
|
|
77443
77485
|
;// CONCATENATED MODULE: ./src/form/modules/components/Verify/component.vue
|
|
77444
77486
|
|
|
@@ -77451,11 +77493,11 @@ const Verify_componentvue_type_script_lang_js_layoutItem = () => Promise.resolve
|
|
|
77451
77493
|
|
|
77452
77494
|
var Verify_component_component = (0,componentNormalizer/* default */.Z)(
|
|
77453
77495
|
components_Verify_componentvue_type_script_lang_js_,
|
|
77454
|
-
|
|
77455
|
-
|
|
77496
|
+
componentvue_type_template_id_6ed57857_scoped_true_render,
|
|
77497
|
+
componentvue_type_template_id_6ed57857_scoped_true_staticRenderFns,
|
|
77456
77498
|
false,
|
|
77457
77499
|
null,
|
|
77458
|
-
"
|
|
77500
|
+
"6ed57857",
|
|
77459
77501
|
null
|
|
77460
77502
|
|
|
77461
77503
|
)
|
|
@@ -108612,18 +108654,18 @@ var RichEditor_widgetDesign_component = (0,componentNormalizer/* default */.Z)(
|
|
|
108612
108654
|
widgetSetup: RichEditor_widgetSetup,
|
|
108613
108655
|
widgetDesign: RichEditor_widgetDesign
|
|
108614
108656
|
});
|
|
108615
|
-
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/AllComponent/hnkj/Verify/component.vue?vue&type=template&id=
|
|
108616
|
-
var
|
|
108657
|
+
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/AllComponent/hnkj/Verify/component.vue?vue&type=template&id=4a3e94a4&scoped=true&
|
|
108658
|
+
var componentvue_type_template_id_4a3e94a4_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.widget)?_c('div',{class:("custom_form_item custom_form_item_special " + (_vm.widget.options.type === 'grid-verify' ? 'verify-style_grid_verify' : '')),style:({
|
|
108617
108659
|
height: _vm.widget.options.type === 'grid-verify' ? '100%' : (_vm.widget.options.height * (_vm.verifyLogsList.length + 1) + 'px'),
|
|
108618
108660
|
borderRight: _vm.widget.options.type === 'grid-verify' ? '1px solid #000' : ''
|
|
108619
108661
|
})},[_c('a-form-model-item',{ref:_vm.widget.model,attrs:{"colon":false,"label-col":_vm.labelCol,"wrapperCol":_vm.wrapperCol,"prop":_vm.tableKey ? (_vm.tableKey + "." + _vm.tableIndex + "." + (_vm.widget.model)) : _vm.widget.model,"rules":_vm.tableKey ? _vm.rules[_vm.tableKey][_vm.widget.model] : _vm.rules[_vm.widget.model]}},[_c('div',{class:("verify clear verify-no-border verify-style_label_" + (_vm.widget.options.labelPosition)),style:({ height: _vm.widget.options.type === 'grid-verify' ? '100%' : (_vm.widget.options.height * (_vm.verifyLogsList.length + 1) + 'px') })},[_c('a-form-model-item',{attrs:{"colon":false,"label-col":_vm.labelCol,"wrapperCol":_vm.wrapperCol}},[_c('div',{class:[
|
|
108620
108662
|
_vm.config.align,
|
|
108621
108663
|
_vm.config.validate === true && _vm.widget.options.required === true
|
|
108622
108664
|
? 'is_required'
|
|
108623
|
-
: 'no_required' ],style:({ color: _vm.config.color }),attrs:{"slot":"label"},slot:"label"},[_vm._v(" "+_vm._s(_vm.widget.name)+" ")]),_vm._l((_vm.verifyLogsList),function(log,idx){return [_c('div',{staticClass:"verify-right",style:({ 'border-color': _vm.config.borderColor, height: ("calc(100% / " + (_vm.verifyLogsList.length + 1) + ")!important"), 'border-bottom': '1px solid '+_vm.config.borderColor })},[(log.userSeal)?_c('div',{staticClass:"verify-seal",style:(Object.assign({}, _vm.getUserSealPosition({ left: log['sealPositionLeft'], top: log['sealPositionTop']}), {position: 'absolute'}))},[_c('img',{style:(_vm.style),attrs:{"src":_vm.imgUrl + log.userSeal,"alt":""}})]):_vm._e(),_c('div',{staticClass:"verify-text",style:({ 'border-color': _vm.config.borderColor })},[_c('span',[(log['note'])?_c('a-input',{style:({ position: 'relative', zIndex: 2 }),attrs:{"type":"textarea","rows":"4","disabled":true,"placeholder":_vm.widget.options.placeholder},model:{value:(log['note']),callback:function ($$v) {_vm.$set(log, 'note', $$v)},expression:"log['note']"}}):_vm._e()],1)]),_c('div',{staticClass:"verify-option"},[_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operation)+" ")]),_c('span',[_c('a-select',{directives:[{name:"show",rawName:"v-show",value:(log['shenpiYijian']),expression:"log['shenpiYijian']"}],style:({ width: '90%' }),attrs:{"disabled":true,"default-value":log['shenpiYijian']}},_vm._l((_vm.suggest),function(item,idx){return _c('a-select-option',{key:idx,attrs:{"value":item.value}},[_vm._v(_vm._s(item.label))])}),1)],1)]),_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operator)+" ")]),[(log['userSign'])?_c('span',[(log['userSign'].startsWith('/'))?_c('img',{staticStyle:{"width":"100%","height":"100%"},attrs:{"src":_vm.imgUrl + log['userSign'],"alt":""}}):_c('span',[_vm._v(" "+_vm._s(log['userSign'])+" ")])]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(log['realname'] || '')+" ")])]],2),_c('div',{staticStyle:{"flex-grow":"1.1"}},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operationTime)+" ")]),_c('span',[_vm._v(" "+_vm._s(log['shenpiTime'])+" ")])])])])]}),_c('div',{ref:"verifyRight",staticClass:"verify-right",style:({ 'border-color': _vm.config.borderColor, height: _vm.widget.options.type === 'grid-verify' ? '100%' : ("calc(100% / " + (_vm.verifyLogsList.length + 1) + ")!important") })},[(_vm.widget.model == _vm.verifyNode)?[(_vm.userSeal && _vm.isShowSeal)?_c('vdr',{staticStyle:{"position":"absolute","z-index":"999"},attrs:{"w":_vm.initCdrUserSeal.width,"h":_vm.initCdrUserSeal.height,"y":_vm.initCdrUserSeal.y,"x":_vm.initCdrUserSeal.x,"resizable":false,"parent":true},on:{"dragging":_vm.onSealDrag}},[_c('img',{style:(_vm.style),attrs:{"src":_vm.imgUrl + _vm.userSeal,"alt":""}}),_c('a-icon',{directives:[{name:"show",rawName:"v-show",value:(_vm.userSeal && _vm.isShowSeal),expression:"userSeal && isShowSeal"}],staticClass:"verify-icon",staticStyle:{"font-size":"18px"},attrs:{"type":"close"},on:{"click":_vm.handleClose}})],1):_vm._e()]:[(_vm.models[_vm.widget.model] && _vm.models[_vm.widget.model].userSeal)?_c('div',{staticClass:"verify-seal",style:(Object.assign({}, _vm.userSealPosition, {position: 'absolute'}))},[_c('img',{style:(_vm.style),attrs:{"src":_vm.imgUrl + _vm.models[_vm.widget.model].userSeal,"alt":""}})]):_vm._e()],_c('div',{staticClass:"verify-text",style:({ 'border-color': _vm.config.borderColor })},[_c('span',[(_vm.models[_vm.widget.model])?_c('text-area',{style:({ position: 'relative', zIndex: 2 }),attrs:{"type":"textarea","show-word-limit":"","max-length":_vm.widget.options.commentsLength,"disabled":_vm.widget.model !== _vm.verifyNode,"rows":"4","placeholder":_vm.widget.options.placeholder},model:{value:(_vm.models[_vm.widget.model].comments),callback:function ($$v) {_vm.$set(_vm.models[_vm.widget.model], "comments", $$v)},expression:"models[widget.model].comments"}}):_vm._e()],1),(_vm.widget.model == _vm.verifyNode)?[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isShowBtn),expression:"isShowBtn"}],staticClass:"verify-btn"},[_c('a-popconfirm',{attrs:{"title":"请确认是否添加印章?","ok-text":"是","cancel-text":"否","getPopupContainer":function (triggerNode) {
|
|
108665
|
+
: 'no_required' ],style:({ color: _vm.config.color }),attrs:{"slot":"label"},slot:"label"},[_vm._v(" "+_vm._s(_vm.widget.name)+" ")]),_vm._l((_vm.verifyLogsList),function(log,idx){return [_c('div',{staticClass:"verify-right",style:({ 'border-color': _vm.config.borderColor, height: ("calc(100% / " + (_vm.verifyLogsList.length + 1) + ")!important"), 'border-bottom': '1px solid '+_vm.config.borderColor })},[(log.userSeal)?_c('div',{staticClass:"verify-seal",style:(Object.assign({}, _vm.getUserSealPosition({ left: log['sealPositionLeft'], top: log['sealPositionTop']}), {position: 'absolute'}))},[_c('img',{style:(_vm.style),attrs:{"src":_vm.imgUrl + log.userSeal,"alt":""}})]):_vm._e(),_c('div',{staticClass:"verify-text",style:({ 'border-color': _vm.config.borderColor })},[_c('span',[(log['note'])?_c('a-input',{style:({ position: 'relative', zIndex: 2 }),attrs:{"type":"textarea","rows":"4","disabled":true,"placeholder":_vm.widget.options.placeholder},model:{value:(log['note']),callback:function ($$v) {_vm.$set(log, 'note', $$v)},expression:"log['note']"}}):_vm._e()],1)]),_c('div',{staticClass:"verify-option"},[_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operation)+" ")]),_c('span',[_c('a-select',{directives:[{name:"show",rawName:"v-show",value:(log['shenpiYijian']),expression:"log['shenpiYijian']"}],style:({ width: '90%' }),attrs:{"disabled":true,"default-value":log['shenpiYijian']}},_vm._l((_vm.suggest),function(item,idx){return _c('a-select-option',{key:idx,attrs:{"value":item.value}},[_vm._v(_vm._s(item.label))])}),1)],1)]),_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operator)+" ")]),[(log['userSign'])?_c('span',[(log['userSign'].startsWith('/'))?_c('img',{staticStyle:{"max-width":"100%","height":"100%"},attrs:{"src":_vm.imgUrl + log['userSign'],"alt":""}}):_c('span',[_vm._v(" "+_vm._s(log['userSign'])+" ")])]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(log['realname'] || '')+" ")])]],2),_c('div',{staticStyle:{"flex-grow":"1.1"}},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operationTime)+" ")]),_c('span',[_vm._v(" "+_vm._s(log['shenpiTime'])+" ")])])])])]}),_c('div',{ref:"verifyRight",staticClass:"verify-right",style:({ 'border-color': _vm.config.borderColor, height: _vm.widget.options.type === 'grid-verify' ? '100%' : ("calc(100% / " + (_vm.verifyLogsList.length + 1) + ")!important") })},[(_vm.widget.model == _vm.verifyNode)?[(_vm.userSeal && _vm.isShowSeal)?_c('vdr',{staticStyle:{"position":"absolute","z-index":"999"},attrs:{"w":_vm.initCdrUserSeal.width,"h":_vm.initCdrUserSeal.height,"y":_vm.initCdrUserSeal.y,"x":_vm.initCdrUserSeal.x,"resizable":false,"parent":true},on:{"dragging":_vm.onSealDrag}},[_c('img',{style:(_vm.style),attrs:{"src":_vm.imgUrl + _vm.userSeal,"alt":""}}),_c('a-icon',{directives:[{name:"show",rawName:"v-show",value:(_vm.userSeal && _vm.isShowSeal),expression:"userSeal && isShowSeal"}],staticClass:"verify-icon",staticStyle:{"font-size":"18px"},attrs:{"type":"close"},on:{"click":_vm.handleClose}})],1):_vm._e()]:[(_vm.models[_vm.widget.model] && _vm.models[_vm.widget.model].userSeal)?_c('div',{staticClass:"verify-seal",style:(Object.assign({}, _vm.userSealPosition, {position: 'absolute'}))},[_c('img',{style:(_vm.style),attrs:{"src":_vm.imgUrl + _vm.models[_vm.widget.model].userSeal,"alt":""}})]):_vm._e()],_c('div',{staticClass:"verify-text",style:({ 'border-color': _vm.config.borderColor })},[_c('span',[(_vm.models[_vm.widget.model])?_c('text-area',{style:({ position: 'relative', zIndex: 2 }),attrs:{"type":"textarea","show-word-limit":"","max-length":_vm.widget.options.commentsLength,"disabled":_vm.widget.model !== _vm.verifyNode,"rows":"4","placeholder":_vm.widget.options.placeholder},model:{value:(_vm.models[_vm.widget.model].comments),callback:function ($$v) {_vm.$set(_vm.models[_vm.widget.model], "comments", $$v)},expression:"models[widget.model].comments"}}):_vm._e()],1),(_vm.widget.model == _vm.verifyNode)?[_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isShowBtn),expression:"isShowBtn"}],staticClass:"verify-btn"},[_c('a-popconfirm',{attrs:{"title":"请确认是否添加印章?","ok-text":"是","cancel-text":"否","getPopupContainer":function (triggerNode) {
|
|
108624
108666
|
return triggerNode.parentNode || _vm.document.body;
|
|
108625
|
-
}},on:{"confirm":_vm.handleSeal}},[_c('a',{attrs:{"href":"#"}},[_vm._v("盖章")])])],1)]:_vm._e()],2),_c('div',{staticClass:"verify-option"},[_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operation)+" ")]),_c('span',[_c('a-select',{directives:[{name:"show",rawName:"v-show",value:(_vm.models[_vm.widget.model]),expression:"models[widget.model]"}],style:({ width: '90%' }),attrs:{"disabled":_vm.widget.model !== _vm.verifyNode,"default-value":_vm.models[_vm.widget.model].operation},on:{"change":_vm.handleChange}},_vm._l((_vm.suggest),function(item,idx){return _c('a-select-option',{key:idx,attrs:{"value":item.value}},[_vm._v(_vm._s(item.label))])}),1)],1)]),_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operator)+" ")]),(_vm.widget.model == _vm.verifyNode)?[(_vm.userSign)?_c('span',[(_vm.userSign.startsWith('/'))?_c('img',{staticStyle:{"width":"100%","height":"100%"},attrs:{"src":_vm.imgUrl + _vm.userSign,"alt":""}}):_c('span',[_vm._v(" "+_vm._s(_vm.userSign)+" ")])]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]:[(_vm.models[_vm.widget.model].userSign)?_c('span',[(_vm.models[_vm.widget.model].userSign.startsWith('/'))?_c('img',{staticStyle:{"width":"100%","height":"100%"},attrs:{"src":_vm.imgUrl + _vm.models[_vm.widget.model].userSign,"alt":""}}):_c('span',[_vm._v(_vm._s(_vm.models[_vm.widget.model].userSign))])]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]],2),_c('div',{staticStyle:{"flex-grow":"1.1"}},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operationTime)+" ")]),_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operationTime : "")+" ")])])])],2)],2)],1)])],1):_vm._e()}
|
|
108626
|
-
var
|
|
108667
|
+
}},on:{"confirm":_vm.handleSeal}},[_c('a',{attrs:{"href":"#"}},[_vm._v("盖章")])])],1)]:_vm._e()],2),_c('div',{staticClass:"verify-option"},[_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operation)+" ")]),_c('span',[_c('a-select',{directives:[{name:"show",rawName:"v-show",value:(_vm.models[_vm.widget.model]),expression:"models[widget.model]"}],style:({ width: '90%' }),attrs:{"disabled":_vm.widget.model !== _vm.verifyNode,"default-value":_vm.models[_vm.widget.model].operation},on:{"change":_vm.handleChange}},_vm._l((_vm.suggest),function(item,idx){return _c('a-select-option',{key:idx,attrs:{"value":item.value}},[_vm._v(_vm._s(item.label))])}),1)],1)]),_c('div',{style:({ 'border-color': _vm.config.borderColor })},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operator)+" ")]),(_vm.widget.model == _vm.verifyNode)?[(_vm.userSign)?_c('span',[(_vm.userSign.startsWith('/'))?_c('img',{staticStyle:{"max-width":"100%","height":"100%"},attrs:{"src":_vm.imgUrl + _vm.userSign,"alt":""}}):_c('span',[_vm._v(" "+_vm._s(_vm.userSign)+" ")])]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]:[(_vm.models[_vm.widget.model].userSign)?_c('span',[(_vm.models[_vm.widget.model].userSign.startsWith('/'))?_c('img',{staticStyle:{"max-width":"100%","height":"100%"},attrs:{"src":_vm.imgUrl + _vm.models[_vm.widget.model].userSign,"alt":""}}):_c('span',[_vm._v(_vm._s(_vm.models[_vm.widget.model].userSign))])]):_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operator : "")+" ")])]],2),_c('div',{staticStyle:{"flex-grow":"1.1"}},[_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.widget.options.operationTime)+" ")]),_c('span',{style:({ 'border-color': _vm.config.borderColor })},[_vm._v(" "+_vm._s(_vm.models[_vm.widget.model] ? _vm.models[_vm.widget.model].operationTime : "")+" ")])])])],2)],2)],1)])],1):_vm._e()}
|
|
108668
|
+
var componentvue_type_template_id_4a3e94a4_scoped_true_staticRenderFns = []
|
|
108627
108669
|
|
|
108628
108670
|
|
|
108629
108671
|
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/components/TextArea/TextArea.vue?vue&type=template&id=64726beb&scoped=true&
|
|
@@ -109247,10 +109289,10 @@ var TextArea_component = (0,componentNormalizer/* default */.Z)(
|
|
|
109247
109289
|
});
|
|
109248
109290
|
;// CONCATENATED MODULE: ./src/form/modules/components/AllComponent/hnkj/Verify/component.vue?vue&type=script&lang=js&
|
|
109249
109291
|
/* harmony default export */ var AllComponent_hnkj_Verify_componentvue_type_script_lang_js_ = (hnkj_Verify_componentvue_type_script_lang_js_);
|
|
109250
|
-
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/AllComponent/hnkj/Verify/component.vue?vue&type=style&index=0&id=
|
|
109292
|
+
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/components/AllComponent/hnkj/Verify/component.vue?vue&type=style&index=0&id=4a3e94a4&prod&lang=less&scoped=true&
|
|
109251
109293
|
// extracted by mini-css-extract-plugin
|
|
109252
109294
|
|
|
109253
|
-
;// CONCATENATED MODULE: ./src/form/modules/components/AllComponent/hnkj/Verify/component.vue?vue&type=style&index=0&id=
|
|
109295
|
+
;// CONCATENATED MODULE: ./src/form/modules/components/AllComponent/hnkj/Verify/component.vue?vue&type=style&index=0&id=4a3e94a4&prod&lang=less&scoped=true&
|
|
109254
109296
|
|
|
109255
109297
|
;// CONCATENATED MODULE: ./src/form/modules/components/AllComponent/hnkj/Verify/component.vue
|
|
109256
109298
|
|
|
@@ -109263,11 +109305,11 @@ var TextArea_component = (0,componentNormalizer/* default */.Z)(
|
|
|
109263
109305
|
|
|
109264
109306
|
var hnkj_Verify_component_component = (0,componentNormalizer/* default */.Z)(
|
|
109265
109307
|
AllComponent_hnkj_Verify_componentvue_type_script_lang_js_,
|
|
109266
|
-
|
|
109267
|
-
|
|
109308
|
+
componentvue_type_template_id_4a3e94a4_scoped_true_render,
|
|
109309
|
+
componentvue_type_template_id_4a3e94a4_scoped_true_staticRenderFns,
|
|
109268
109310
|
false,
|
|
109269
109311
|
null,
|
|
109270
|
-
"
|
|
109312
|
+
"4a3e94a4",
|
|
109271
109313
|
null
|
|
109272
109314
|
|
|
109273
109315
|
)
|
|
@@ -111126,8 +111168,8 @@ var CorrectionItemvue_type_template_id_4d910d38_scoped_true_render = function ()
|
|
|
111126
111168
|
var CorrectionItemvue_type_template_id_4d910d38_scoped_true_staticRenderFns = []
|
|
111127
111169
|
|
|
111128
111170
|
|
|
111129
|
-
// EXTERNAL MODULE: ./src/form/modules/components/index.js +
|
|
111130
|
-
var components = __webpack_require__(
|
|
111171
|
+
// EXTERNAL MODULE: ./src/form/modules/components/index.js + 858 modules
|
|
111172
|
+
var components = __webpack_require__(8633);
|
|
111131
111173
|
;// CONCATENATED MODULE: ./node_modules/_thread-loader@3.0.4@thread-loader/dist/cjs.js!./node_modules/_babel-loader@8.3.0@babel-loader/lib/index.js??clonedRuleSet-40.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/common/Modals/CorrectionItem.vue?vue&type=script&lang=js&
|
|
111132
111174
|
//
|
|
111133
111175
|
//
|
|
@@ -112977,8 +113019,8 @@ var vuedraggable_umd = __webpack_require__(6507);
|
|
|
112977
113019
|
var vuedraggable_umd_default = /*#__PURE__*/__webpack_require__.n(vuedraggable_umd);
|
|
112978
113020
|
// EXTERNAL MODULE: ./src/api/manage.js
|
|
112979
113021
|
var manage = __webpack_require__(1474);
|
|
112980
|
-
// EXTERNAL MODULE: ./src/form/modules/components/index.js +
|
|
112981
|
-
var components = __webpack_require__(
|
|
113022
|
+
// EXTERNAL MODULE: ./src/form/modules/components/index.js + 858 modules
|
|
113023
|
+
var components = __webpack_require__(8633);
|
|
112982
113024
|
// EXTERNAL MODULE: ./src/form/util/Bus.js
|
|
112983
113025
|
var Bus = __webpack_require__(767);
|
|
112984
113026
|
// EXTERNAL MODULE: ./src/form/modules/config/hnkj.js
|
|
@@ -113595,7 +113637,7 @@ module.exports = __WEBPACK_EXTERNAL_MODULE__7203__;
|
|
|
113595
113637
|
/***/ (function(module) {
|
|
113596
113638
|
|
|
113597
113639
|
"use strict";
|
|
113598
|
-
module.exports = {"i8":"1.1.
|
|
113640
|
+
module.exports = {"i8":"1.1.130"};
|
|
113599
113641
|
|
|
113600
113642
|
/***/ })
|
|
113601
113643
|
|
|
@@ -113728,7 +113770,7 @@ if (typeof window !== 'undefined') {
|
|
|
113728
113770
|
// EXTERNAL MODULE: external {"commonjs":"vue","commonjs2":"vue","root":"Vue"}
|
|
113729
113771
|
var external_commonjs_vue_commonjs2_vue_root_Vue_ = __webpack_require__(7203);
|
|
113730
113772
|
var external_commonjs_vue_commonjs2_vue_root_Vue_default = /*#__PURE__*/__webpack_require__.n(external_commonjs_vue_commonjs2_vue_root_Vue_);
|
|
113731
|
-
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/layout/layoutForPaper.vue?vue&type=template&id=
|
|
113773
|
+
;// CONCATENATED MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/layout/layoutForPaper.vue?vue&type=template&id=831ec93a&scoped=true&
|
|
113732
113774
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a-spin',{staticClass:"layout layout-input-all-setting",class:{ 'no-border': !_vm.data.config.border, 'save-pdf': _vm.showLine, 'ant-form-noBorder': _vm.data.config.componentsNoBorder },style:({ 'overflow-x': _vm.data.config.layout === 'horizontal' ? 'auto' : 'initial' }),attrs:{"spinning":_vm.formLoading,"tip":_vm.formLoadingTip}},[_c('a-form-model',{ref:"Form",attrs:{"hideRequiredMark":true,"model":_vm.models,"rules":_vm.rules,"wrapper-col":{}},on:{"update:rules":function($event){_vm.rules=$event},"validate":_vm.validate}},_vm._l((_vm.widgetList),function(list,listindex){return _c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.widgetList[0].length > 0),expression:"widgetList[0].length > 0"}],key:listindex,staticClass:"paper",style:(_vm.contentStyle)},[(listindex == 0)?_vm._t("default"):_vm._e(),(listindex == 0)?_c('div',{staticClass:"form-title",style:(Object.assign({}, {height: _vm.formNameHeight}, _vm.formNameStyle))},[_vm._v(" "+_vm._s(_vm.data.config.formName)+" ")]):_vm._e(),(_vm.value && _vm.value.formIndex)?_c('div',{staticStyle:{"text-align":"right","font-weight":"bold"}},[_vm._v(_vm._s(_vm.value.formIndex))]):_vm._e(),(_vm.data.config.pageHeader && listindex === 0)?_c('div',{style:(_vm.data.config.headerHeight),domProps:{"innerHTML":_vm._s(_vm.data.config.pageHeader)}}):_vm._e(),_c('div',{staticClass:"page-border",style:({ borderColor: _vm.data.config.borderColor })},[_vm._l((list),function(widget,index){return [(widget.type == 'table')?[(
|
|
113733
113775
|
widget.options.layoutModel === 'auto' ||
|
|
113734
113776
|
widget.options.layoutModel === undefined
|
|
@@ -113764,15 +113806,15 @@ var staticRenderFns = []
|
|
|
113764
113806
|
var layoutForPapervue_type_script_lang_js_ = __webpack_require__(1936);
|
|
113765
113807
|
;// CONCATENATED MODULE: ./src/form/modules/layout/layoutForPaper.vue?vue&type=script&lang=js&
|
|
113766
113808
|
/* harmony default export */ var layout_layoutForPapervue_type_script_lang_js_ = (layoutForPapervue_type_script_lang_js_/* default */.Z);
|
|
113767
|
-
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=1&id=
|
|
113809
|
+
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-32.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-32.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-32.use[2]!./node_modules/_less-loader@5.0.0@less-loader/dist/cjs.js??clonedRuleSet-32.use[3]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=1&id=831ec93a&prod&lang=less&scoped=true&
|
|
113768
113810
|
// extracted by mini-css-extract-plugin
|
|
113769
113811
|
|
|
113770
|
-
;// CONCATENATED MODULE: ./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=1&id=
|
|
113812
|
+
;// CONCATENATED MODULE: ./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=1&id=831ec93a&prod&lang=less&scoped=true&
|
|
113771
113813
|
|
|
113772
|
-
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=2&id=
|
|
113814
|
+
;// CONCATENATED MODULE: ./node_modules/_mini-css-extract-plugin@2.7.6@mini-css-extract-plugin/dist/loader.js??clonedRuleSet-12.use[0]!./node_modules/_css-loader@6.8.1@css-loader/dist/cjs.js??clonedRuleSet-12.use[1]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/loaders/stylePostLoader.js!./node_modules/_postcss-loader@6.2.1@postcss-loader/dist/cjs.js??clonedRuleSet-12.use[2]!./node_modules/_vue-loader@15.10.2@vue-loader/lib/index.js??vue-loader-options!./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=2&id=831ec93a&prod&lang=css&
|
|
113773
113815
|
// extracted by mini-css-extract-plugin
|
|
113774
113816
|
|
|
113775
|
-
;// CONCATENATED MODULE: ./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=2&id=
|
|
113817
|
+
;// CONCATENATED MODULE: ./src/form/modules/layout/layoutForPaper.vue?vue&type=style&index=2&id=831ec93a&prod&lang=css&
|
|
113776
113818
|
|
|
113777
113819
|
// EXTERNAL MODULE: ./node_modules/_vue-loader@15.10.2@vue-loader/lib/runtime/componentNormalizer.js
|
|
113778
113820
|
var componentNormalizer = __webpack_require__(7506);
|
|
@@ -113792,7 +113834,7 @@ var component = (0,componentNormalizer/* default */.Z)(
|
|
|
113792
113834
|
staticRenderFns,
|
|
113793
113835
|
false,
|
|
113794
113836
|
null,
|
|
113795
|
-
"
|
|
113837
|
+
"831ec93a",
|
|
113796
113838
|
null
|
|
113797
113839
|
|
|
113798
113840
|
)
|
|
@@ -115121,8 +115163,8 @@ var widgetFormvue_type_template_id_35cafaee_scoped_true_staticRenderFns = []
|
|
|
115121
115163
|
var es_array_push = __webpack_require__(9211);
|
|
115122
115164
|
// EXTERNAL MODULE: ./src/form/util/util.js
|
|
115123
115165
|
var util = __webpack_require__(6955);
|
|
115124
|
-
// EXTERNAL MODULE: ./src/form/modules/components/index.js +
|
|
115125
|
-
var components = __webpack_require__(
|
|
115166
|
+
// EXTERNAL MODULE: ./src/form/modules/components/index.js + 858 modules
|
|
115167
|
+
var components = __webpack_require__(8633);
|
|
115126
115168
|
// EXTERNAL MODULE: ./src/api/manage.js
|
|
115127
115169
|
var manage = __webpack_require__(1474);
|
|
115128
115170
|
// EXTERNAL MODULE: ./src/form/modules/widgetFormItem.vue + 6 modules
|