cnhis-design-vue 2.1.18 → 2.1.19
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/CHANGELOG.md +2219 -2219
- package/es/affix/index.js +8 -8
- package/es/age/index.js +10 -10
- package/es/alert/index.js +8 -8
- package/es/anchor/index.js +8 -8
- package/es/auto-complete/index.js +8 -8
- package/es/avatar/index.js +8 -8
- package/es/back-top/index.js +8 -8
- package/es/badge/index.js +8 -8
- package/es/base/index.js +8 -8
- package/es/big-table/index.js +207 -206
- package/es/big-table/style.css +1 -1
- package/es/breadcrumb/index.js +8 -8
- package/es/button/index.js +31 -31
- package/es/calendar/index.js +8 -8
- package/es/captcha/index.js +3 -3
- package/es/card/index.js +8 -8
- package/es/carousel/index.js +8 -8
- package/es/cascader/index.js +8 -8
- package/es/checkbox/index.js +9 -9
- package/es/col/index.js +8 -8
- package/es/collapse/index.js +8 -8
- package/es/color-picker/index.js +1 -1
- package/es/comment/index.js +8 -8
- package/es/config-provider/index.js +8 -8
- package/es/date-picker/index.js +8 -8
- package/es/descriptions/index.js +8 -8
- package/es/divider/index.js +8 -8
- package/es/drag-layout/index.js +3 -3
- package/es/drawer/index.js +8 -8
- package/es/dropdown/index.js +8 -8
- package/es/editor/index.js +1 -1
- package/es/empty/index.js +8 -8
- package/es/fabric-chart/index.js +427 -314
- package/es/fabric-chart/style.css +1 -1
- package/es/form/index.js +8 -8
- package/es/form-model/index.js +8 -8
- package/es/form-table/index.js +62 -62
- package/es/index/index.js +1078 -963
- package/es/index/style.css +1 -1
- package/es/input/index.js +9 -9
- package/es/input-number/index.js +8 -8
- package/es/layout/index.js +8 -8
- package/es/list/index.js +8 -8
- package/es/locale-provider/index.js +8 -8
- package/es/map/index.js +9 -9
- package/es/mentions/index.js +8 -8
- package/es/menu/index.js +8 -8
- package/es/message/index.js +8 -8
- package/es/multi-chat/index.js +92 -92
- package/es/multi-chat-client/index.js +86 -86
- package/es/multi-chat-history/index.js +4 -4
- package/es/multi-chat-record/index.js +14 -14
- package/es/multi-chat-setting/index.js +27 -27
- package/es/multi-chat-sip/index.js +1 -1
- package/es/notification/index.js +8 -8
- package/es/page-header/index.js +8 -8
- package/es/pagination/index.js +8 -8
- package/es/popconfirm/index.js +8 -8
- package/es/popover/index.js +8 -8
- package/es/progress/index.js +8 -8
- package/es/radio/index.js +9 -9
- package/es/rate/index.js +8 -8
- package/es/result/index.js +8 -8
- package/es/row/index.js +8 -8
- package/es/scale-view/index.js +33 -33
- package/es/select/index.js +11 -11
- package/es/select-label/index.js +11 -11
- package/es/select-person/index.js +20 -20
- package/es/skeleton/index.js +8 -8
- package/es/slider/index.js +8 -8
- package/es/space/index.js +8 -8
- package/es/spin/index.js +8 -8
- package/es/statistic/index.js +8 -8
- package/es/steps/index.js +8 -8
- package/es/switch/index.js +8 -8
- package/es/table-filter/index.js +142 -141
- package/es/table-filter/style.css +1 -1
- package/es/tabs/index.js +8 -8
- package/es/tag/index.js +9 -9
- package/es/time-picker/index.js +8 -8
- package/es/timeline/index.js +8 -8
- package/es/tooltip/index.js +8 -8
- package/es/transfer/index.js +8 -8
- package/es/tree/index.js +8 -8
- package/es/tree-select/index.js +8 -8
- package/es/upload/index.js +8 -8
- package/es/verification-code/index.js +2 -2
- package/lib/cui.common.js +1073 -958
- package/lib/cui.umd.js +1073 -958
- package/lib/cui.umd.min.js +77 -77
- package/package.json +106 -106
- package/packages/big-table/src/BigTable.vue +3039 -3038
- package/packages/big-table/src/assets/style/table-base.less +370 -370
- package/packages/big-table/src/components/AutoLayoutButton.vue +270 -270
- package/packages/big-table/src/utils/batchEditing.js +610 -610
- package/packages/big-table/src/utils/bigTableProps.js +95 -95
- package/packages/button/src/ButtonPrint/components/IdentityVerification.vue +181 -181
- package/packages/button/src/ButtonPrint/index.vue +728 -728
- package/packages/fabric-chart/src/components/TimeScaleValue.vue +113 -117
- package/packages/fabric-chart/src/const/defaultVaule.js +59 -59
- package/packages/fabric-chart/src/fabric-chart/FabricPolylines.vue +1035 -960
- package/packages/fabric-chart/src/fabric-chart/FabricScaleValue.vue +135 -135
- package/packages/fabric-chart/src/fabric-chart/FabricTextGroup.vue +558 -558
- package/packages/fabric-chart/src/fabric-chart2/FabricTop.vue +172 -172
- package/packages/fabric-chart/src/mixins/draw.js +70 -62
- package/packages/fabric-chart/src/mixins/eventCommon.js +9 -10
- package/packages/multi-chat/chat/chatFooter.vue +1598 -1598
- package/packages/multi-chat/chat/chatMain.vue +1442 -1442
- package/packages/multi-chat/chat/quickReply.vue +439 -439
- package/packages/multi-chat/chat/scrollList.vue +1232 -1232
- package/packages/multi-chat/setting/baseInfo/index.vue +1316 -1316
- package/packages/multi-chat/store/actions.js +448 -448
- package/packages/multi-chat/store/state.js +112 -112
- package/packages/scale-view/formitem/r-choice.vue +714 -714
- package/packages/scale-view/scaleView.vue +2010 -2010
- package/packages/select-person/select-person.vue +1658 -1658
- package/packages/table-filter/src/base-search-com/BaseSearch.vue +2462 -2462
- package/packages/table-filter/src/components/c-tree-select/tree-select.vue +336 -336
- package/packages/table-filter/src/components/multi-select/multi-select.vue +219 -219
- package/packages/table-filter/src/components/out-quick-search/out-quick-search.vue +340 -340
- package/packages/table-filter/src/components/search-condition/SearchCondition.vue +3 -2
- package/packages/table-filter/src/const/dataOptions.js +43 -43
- package/packages/table-filter/src/mixins/mixins.js +695 -695
- package/packages/table-filter/src/quick-search/QuickSearch.vue +2083 -2083
- package/src/directive/preventReClick.js +12 -12
package/es/scale-view/index.js
CHANGED
|
@@ -314,7 +314,7 @@ module.exports = require("core-js/modules/es.array.filter.js");
|
|
|
314
314
|
|
|
315
315
|
"use strict";
|
|
316
316
|
|
|
317
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
317
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select-label/select-label.vue?vue&type=template&id=0d391bef&scoped=true&
|
|
318
318
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"label-page"},[_c('div',{staticClass:"tag-label"},[_vm._l((_vm.labelSelectedList),function(v){return _c('a-tag',{key:v.labelId,style:(_vm.handleLabelColor(v, true)),attrs:{"closable":_vm.item_is_edit},on:{"close":function($event){return _vm.closeTag(v)}}},[_vm._v(" "+_vm._s(v.labelName)+" ")])}),(!_vm.explicit)?_c('span',{directives:[{name:"show",rawName:"v-show",value:(_vm.item_is_edit),expression:"item_is_edit"}],staticClass:"form-add-icon form-add-icon-label",class:{ disable: _vm.isLock },on:{"click":_vm.handleEditLabel}},[_c('a-icon',{staticClass:"add-icon",attrs:{"type":"plus-circle"}}),_vm._v(" 新增 ")],1):_vm._e()],2),(_vm.sourceType == 'form' && _vm.commonLabelList.length && _vm.item_is_edit && !_vm.explicit)?_c('div',{staticClass:"common-label"},[_c('span',[_vm._v("常用")]),_vm._l((_vm.commonLabelList),function(item,i){return _c('a-checkable-tag',{key:i,style:(_vm.handleLabelColor(item)),on:{"change":function($event){return _vm.handleCommonLabelChange($event, item)}},model:{value:(item.isSelect),callback:function ($$v) {_vm.$set(item, "isSelect", $$v)},expression:"item.isSelect"}},[_vm._v(" "+_vm._s(item.labelName)+" ")])})],2):_vm._e(),(_vm.explicit && _vm.item_is_edit)?_c('div',[_c('labelFormContent',_vm._b({ref:"labelFormContent",attrs:{"explicit":_vm.explicit,"labelVisible":_vm.labelVisible,"item":_vm.item,"isEdit":_vm.isEdit,"isLock":_vm.isLock,"labelSelectedList":_vm.labelSelectedList,"isChangeWindow":_vm.isChangeWindow,"labelOptions":_vm.editLabelItem.labelObj,"sourceType":_vm.sourceType},on:{"updateLabelData":_vm.updateLabelData,"explicitOnChange":_vm.explicitOnChange}},'labelFormContent',_vm.$attrs,false))],1):_vm._e(),_c('a-modal',{staticClass:"label-form-modal-wrap modal-wrap standard-modal standard-modal-white",class:{ 'modal-screen': _vm.isChangeWindow },attrs:{"maskClosable":false,"destroyOnClose":true,"width":_vm.modalWidth,"cancelText":'取消',"okText":'确定',"bodyStyle":{
|
|
319
319
|
height: _vm.modalHeight,
|
|
320
320
|
maxHeight: _vm.maxHeight,
|
|
@@ -2171,7 +2171,7 @@ module.exports = require("ant-design-vue/es/button/style");
|
|
|
2171
2171
|
|
|
2172
2172
|
"use strict";
|
|
2173
2173
|
|
|
2174
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2174
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/map/src/Map.vue?vue&type=template&id=262a05a2&scoped=true&
|
|
2175
2175
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"map"},[_c('div',{staticClass:"search-container"},[_c('div',[_c('a-input-search',{attrs:{"placeholder":"请输入地址","enter-button":"检索"},on:{"search":_vm.searchKeyword},model:{value:(_vm.searchKey),callback:function ($$v) {_vm.searchKey=$$v},expression:"searchKey"}})],1)]),_c('div',{attrs:{"id":"map-core"}}),(_vm.addressList && _vm.addressList.length)?_c('ul',{staticClass:"address-list"},[_c('li',[_vm._v(" 地址:"+_vm._s(_vm.addressList[0] && _vm.addressList[0].name)+" "),_c('a-button',{attrs:{"type":"primary","size":"small"},on:{"click":function($event){return _vm.selectLocation(_vm.addressList[0], 'li')}}},[_vm._v(" 确定")])],1),_vm._l((_vm.addressList),function(item,index){return _c('li',{key:index,staticClass:"address-item"},[_c('div',{on:{"click":function($event){return _vm.selectLocation(item, 'div')}}},[_c('div',{staticClass:"title"},[_vm._v(_vm._s(item.name))]),_c('span',[_vm._v(_vm._s(item.address))])])])})],2):_vm._e()])}
|
|
2176
2176
|
var staticRenderFns = []
|
|
2177
2177
|
|
|
@@ -4634,7 +4634,7 @@ var es_promise_finally = __webpack_require__("a79d");
|
|
|
4634
4634
|
// EXTERNAL MODULE: external "core-js/modules/es.function.name.js"
|
|
4635
4635
|
var es_function_name_js_ = __webpack_require__("db0a");
|
|
4636
4636
|
|
|
4637
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
4637
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/scaleView.vue?vue&type=template&id=781354c5&scoped=true&
|
|
4638
4638
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"r-scale"},[(_vm.spinning)?_vm._t("default",function(){return [_c('a-spin',{attrs:{"indicator":_vm.indicator,"tip":"加载中..."}})]}):_vm._e(),(!_vm.spinning && !_vm.hasFrontAddress)?_vm._t("default",function(){return [(_vm.noData)?_c('NoData',{attrs:{"noDataImg":_vm.noDataImg,"noDataTip":_vm.noDataTip}}):[(_vm.showEvaluateEntry)?_c('evaluatePage',{attrs:{"formArray":_vm.formArray,"evaluateResultConfig":_vm.config.evaluateResultConfig,"evaluateResultSetting":_vm.config.evaluateResultSetting,"isFinished":_vm.isFinished,"maxScore":_vm.maxScore},on:{"writeGuage":_vm.writeGuage}}):[(_vm.showEvaluateCoundownPage)?_c('evaluateCountdown',{ref:"evaluateCountdown",attrs:{"formArray":_vm.formArray,"evaluateResultConfig":_vm.config.evaluateResultConfig,"evaluateResultSetting":_vm.config.evaluateResultSetting,"form":_vm.form,"isFinished":_vm.isFinished,"currentTime":_vm.currentTime,"showEvaluateCountdown":_vm.showEvaluateCountdown},on:{"closeEvaluateCountdown":_vm.closeEvaluateCountdown}}):_vm._e(),_c('div',{staticClass:"scale-container",class:{ 'scale-container-nopadding': _vm.handlePageClass },style:(_vm.scaleStyle)},[(_vm.hasScore)?_c('div',{staticClass:"totalScore-warp"},[_c('div',[_vm._v(" 测评总分: "),_c('span',[_vm._v(_vm._s(_vm.maxScore)+"分")])]),_c('div',[_vm._v(" 测评分数: "),_c('span',{style:({ color: _vm.getEvaResColor })},[_vm._v(_vm._s(_vm.config.totalScore)+"分")])]),(_vm.hasEvaluateSetting)?[_c('div',[_vm._v(" 测评结果: "),_c('span',{staticClass:"score-result",style:({ color: _vm.getEvaResColor })},[_vm._v(_vm._s(_vm.config.evaluateResult))])]),_c('div',[_vm._v(" 结果说明: "),_c('span',[_vm._v(_vm._s(_vm.config.evaluateResultExplain))])])]:_vm._e()],2):_vm._e(),_c('a-form-model',{ref:"ruleForm",staticClass:"main",attrs:{"model":_vm.form,"rules":_vm.rules,"layout":_vm.form.layout,"colon":false}},[_vm._l((_vm.formArray),function(item,index){return [(item.type == 'TITLE')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"colon":false}},[_c('h1',{staticClass:"lb-title"},[_vm._v(_vm._s(item.title))]),_c('div',{staticClass:"lb-title"},[_vm._v(_vm._s(item.describe))])]):_vm._e()]:(item.type == 'LINEBAR')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"colon":false}},[(item.title)?_c('div',{staticClass:"linebar-div"},[_c('span',[_vm._v(_vm._s(item.title))]),_c('a-divider')],1):[_c('a-divider')]],2):_vm._e()]:(item.type == 'PROMPT')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,staticClass:"my-prompt",attrs:{"colon":false}},[_c('MyPrompt',{key:item.id || item.seq,attrs:{"options":item.setting}})],1):_vm._e()]:(item.type == 'IMGCARD')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"colon":false}},[(item.setting.imgLink)?_c('a',{attrs:{"href":item.setting.imgLink,"target":"_blank"}},[_c('img',{staticClass:"img-card",attrs:{"src":item.setting.imgUrl}})]):_c('img',{staticClass:"img-card",attrs:{"src":item.setting.imgUrl}})]):_vm._e()]:(item.type == 'RICH_TEXT')?[_c('div',{key:item.id || item.seq,staticClass:"rich-text-content",domProps:{"innerHTML":_vm._s(item.setting.defaultValue)}})]:[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"prop":_vm.formKey(item)}},[_c('span',{attrs:{"slot":"label"},slot:"label"},[_c('span',{class:{ 'scale-label-required': _vm.isFormBoldOpen(item) },domProps:{"innerHTML":_vm._s(_vm.handleShowQuestionNumber(item))}}),(_vm.isFormBoldOpen(item))?_c('span',{staticClass:"required-text"},[_vm._v("(必填)")]):_vm._e(),(_vm.showEvaluateLabel(item))?_c('span',{staticClass:"evalute-label"},[_vm._v(_vm._s(_vm.showEvaluateLabel(item)))]):_vm._e(),(_vm.showEvatip(item))?[_c('span',{staticClass:"evalute-tip",on:{"click":function($event){return _vm.showEvaTipModal(item)}}},[_c('svg-icon',{attrs:{"icon-class":"a-xitongtubiaotishi"}}),_vm._v("查看提示 ")],1)]:_vm._e()],2),(_vm.isInput(item.type))?_c('MyInput',_vm._b({attrs:{"type":item.valueType,"row":item.setting.inputRow || 1,"defaultPlaceHolder":item.setting.defaultPlaceHolder,"isLock":_vm.componentDisable},model:{value:(_vm.form[_vm.formKey(item)]),callback:function ($$v) {_vm.$set(_vm.form, _vm.formKey(item), $$v)},expression:"form[formKey(item)]"}},'MyInput',_vm.$attrs,false)):(_vm.isChoice(item.type))?_c('MyChoice',_vm._b({attrs:{"item":item,"isLock":_vm.componentDisable,"curIndex":index,"openType":_vm.openType},on:{"change":function($event){return _vm.handleChoice($event, item)},"radioChange":_vm.radioChange,"checkboxChange":_vm.checkboxChange},model:{value:(_vm.form[_vm.formKey(item)]),callback:function ($$v) {_vm.$set(_vm.form, _vm.formKey(item), $$v)},expression:"form[formKey(item)]"}},'MyChoice',_vm.$attrs,false)):(_vm.isTime(item.type))?_c('MyTime',_vm._b({attrs:{"value":_vm.getTimeValue(item),"type":item.type,"startToStop":item.setting.startToStop,"dateType":item.setting.dateType,"isLock":_vm.componentDisable},on:{"change":function($event){return _vm.changeTime($event, item)}}},'MyTime',_vm.$attrs,false)):(_vm.isUpload(item.type))?_c('MyUpload',_vm._b({attrs:{"upType":item.type,"useFileList":item.dbValue,"limitPic":item.setting.limitPic,"isLock":_vm.componentDisable},on:{"change":function($event){return _vm.changeUpload($event, item)}}},'MyUpload',_vm.$attrs,false)):(item.type === 'LOCATION')?_c('div',{class:{ 'map-container': !_vm.isLock },on:{"click":function($event){!_vm.isLock && (_vm.mapVisible = !_vm.mapVisible)}}},[_c('a-input',{attrs:{"placeholder":"请选择","value":_vm.handleGetAddress(_vm.form[_vm.formKey(item)]),"disabled":""}},[_c('a-icon',{attrs:{"slot":"prefix","type":"info-circle"},slot:"prefix"})],1),_c('MapComp',_vm._b({attrs:{"visible":_vm.mapVisible,"locationProp":_vm.form[_vm.formKey(item)],"isLock":_vm.componentDisable},on:{"update:visible":function($event){_vm.mapVisible=$event},"selectLocation":function($event){return _vm.handleSelectLocation($event, item)}}},'MapComp',_vm.$attrs,false))],1):(item.type === 'ADDRESS')?_c('MyAddress',_vm._b({attrs:{"setting":item.setting,"defaultValue":_vm.defaultAddress,"isLock":_vm.componentDisable},on:{"change":function($event){return _vm.changeAddress($event, item)}}},'MyAddress',_vm.$attrs,false)):(item.type === 'LABEL')?_c('label-form',_vm._b({attrs:{"item":item,"selectedList":_vm.labelSelectedList,"isLock":_vm.componentDisable,"sourceType":_vm.source},on:{"onChange":function($event){return _vm.labelChange($event, item)}}},'label-form',_vm.$attrs,false)):(item.type === 'VEDIO')?_c('vod-Chunk-upload',_vm._b({attrs:{"source":'guage',"formData":item,"limitNum":item.setting.limitPic,"defFileList":_vm.form[_vm.formKey(item)],"isLock":_vm.componentDisable},on:{"vodFileList":function($event){return _vm.vodFileList($event, item)}}},'vod-Chunk-upload',_vm.$attrs,false)):_vm._e(),(_vm.showAnswerParse(item))?_c('answerParse',{attrs:{"item":item}}):_vm._e()],1):_vm._e()]]})],2)],1),(_vm.type === 'customList')?[(!_vm.noBtn)?_c('div',{staticClass:"footer"},[(false)?undefined:_vm._e(),_c('a-button',{attrs:{"type":"primary","disabled":_vm.banSubmit},on:{"click":_vm.onSubmit}},[_vm._v("保存")])],1):_vm._e()]:[(_vm.showSaveBtn)?_c('div',{staticClass:"footer"},[_c('a-button',{staticStyle:{"margin-right":"8px"},on:{"click":_vm.cancel}},[_vm._v("取消")]),(!_vm.isLock)?_c('a-button',{attrs:{"type":"primary","disabled":_vm.banSubmit},on:{"click":_vm.onSubmit}},[_vm._v("保存")]):_vm._e()],1):_vm._e()]]]]}):_vm._e()],2)}
|
|
4639
4639
|
var staticRenderFns = []
|
|
4640
4640
|
|
|
@@ -4782,7 +4782,7 @@ var es_array_join_js_ = __webpack_require__("be94");
|
|
|
4782
4782
|
// EXTERNAL MODULE: ./src/core/create.js
|
|
4783
4783
|
var create = __webpack_require__("8aef");
|
|
4784
4784
|
|
|
4785
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
4785
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/formitem/r-time.vue?vue&type=template&id=40b2ff5d&scoped=true&
|
|
4786
4786
|
var r_timevue_type_template_id_40b2ff5d_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',[(_vm.type == 'DATE')?[(_vm.startToStop != 1)?_c('a-date-picker',{attrs:{"disabled":_vm.isLock},on:{"change":_vm.changeDate},model:{value:(_vm.timeValue),callback:function ($$v) {_vm.timeValue=$$v},expression:"timeValue"}}):_c('a-range-picker',{on:{"change":_vm.changeRange},model:{value:(_vm.rangeValue),callback:function ($$v) {_vm.rangeValue=$$v},expression:"rangeValue"}})]:(_vm.type == 'TIME')?[(_vm.startToStop != 1)?_c('a-time-picker',{attrs:{"disabled":_vm.isLock},on:{"change":_vm.changeTime},model:{value:(_vm.timeValue),callback:function ($$v) {_vm.timeValue=$$v},expression:"timeValue"}}):_vm._e(),(_vm.startToStop == 1)?_vm._t("default",function(){return [_c('a-time-picker',{attrs:{"disabled":_vm.isLock,"disabledHours":_vm.disStartHours,"disabledMinutes":_vm.disStartMinute,"disabledSeconds":_vm.disStartSeconds},on:{"change":_vm.changeRangeTime},model:{value:(_vm.rangeValue[0]),callback:function ($$v) {_vm.$set(_vm.rangeValue, 0, $$v)},expression:"rangeValue[0]"}}),_vm._v(" - "),_c('a-time-picker',{attrs:{"disabled":_vm.isLock,"disabledHours":_vm.disEndHours,"disabledMinutes":_vm.disEndMinute,"disabledSeconds":_vm.disEndSeconds},on:{"change":_vm.changeRangeTime},model:{value:(_vm.rangeValue[1]),callback:function ($$v) {_vm.$set(_vm.rangeValue, 1, $$v)},expression:"rangeValue[1]"}})]}):_vm._e()]:(_vm.type == 'DATETIME')?[(_vm.dateType == 'time')?_c('div',[(_vm.startToStop != 1)?_c('a-time-picker',{attrs:{"disabled":_vm.isLock},on:{"change":_vm.changeTime},model:{value:(_vm.timeValue),callback:function ($$v) {_vm.timeValue=$$v},expression:"timeValue"}}):_vm._e(),(_vm.startToStop == 1)?_vm._t("default",function(){return [_c('a-time-picker',{attrs:{"disabled":_vm.isLock,"disabledHours":_vm.disStartHours,"disabledMinutes":_vm.disStartMinute,"disabledSeconds":_vm.disStartSeconds},on:{"change":_vm.changeRangeTime},model:{value:(_vm.rangeValue[0]),callback:function ($$v) {_vm.$set(_vm.rangeValue, 0, $$v)},expression:"rangeValue[0]"}}),_vm._v(" - "),_c('a-time-picker',{attrs:{"disabled":_vm.isLock,"disabledHours":_vm.disEndHours,"disabledMinutes":_vm.disEndMinute,"disabledSeconds":_vm.disEndSeconds},on:{"change":_vm.changeRangeTime},model:{value:(_vm.rangeValue[1]),callback:function ($$v) {_vm.$set(_vm.rangeValue, 1, $$v)},expression:"rangeValue[1]"}})]}):_vm._e()],2):_c('div',[(_vm.startToStop != 1)?_c('a-date-picker',{attrs:{"disabled":_vm.isLock,"show-time":_vm.dateType == 'datetime',"showToday":false,"dropdownClassName":"scale-time-picker"},on:{"change":_vm.changeDate},model:{value:(_vm.timeValue),callback:function ($$v) {_vm.timeValue=$$v},expression:"timeValue"}}):_c('a-range-picker',{attrs:{"show-time":_vm.dateType == 'datetime',"placeholder":_vm.rangePlaceholder},on:{"change":_vm.changeRange},model:{value:(_vm.rangeValue),callback:function ($$v) {_vm.rangeValue=$$v},expression:"rangeValue"}})],1)]:_vm._e()],2)}
|
|
4787
4787
|
var r_timevue_type_template_id_40b2ff5d_scoped_true_staticRenderFns = []
|
|
4788
4788
|
|
|
@@ -5157,7 +5157,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
5157
5157
|
)
|
|
5158
5158
|
|
|
5159
5159
|
/* harmony default export */ var r_time = (component.exports);
|
|
5160
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
5160
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/formitem/r-choice.vue?vue&type=template&id=3a4861a8&scoped=true&
|
|
5161
5161
|
var r_choicevue_type_template_id_3a4861a8_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"r-choice"},[(_vm.item.type == 'RADIO_BLOCK' || _vm.item.type === 'EVALUATE_RADIO_BLOCK')?_c('a-radio-group',{staticClass:"choice-wrap",class:['choice-wrap-' + (_vm.item.setting.chooseStyleSetting || 1)],on:{"change":_vm.radioChange},model:{value:(_vm.curvalue),callback:function ($$v) {_vm.curvalue=$$v},expression:"curvalue"}},_vm._l((_vm.curOptions),function(o,i){return _c('a-radio',{key:o.key + i + o.label,staticClass:"choice-radio",class:{ 'block-radio': !_vm.item.setting.isHorizontal },style:({ color: _vm.choiceColor(o) }),attrs:{"value":o[_vm.choiceUseKey],"disabled":_vm.isLock}},[(_vm.showImgWrap(o))?[_c('span',{staticClass:"scale-choice-img-wrap"},[_c('img',{staticClass:"show-picture",attrs:{"src":o.imageUrl}}),_c('div',{staticClass:"scale-preview-wrap"},[_c('a-icon',{attrs:{"type":"zoom-in"},on:{"click":function($event){$event.stopPropagation();$event.preventDefault();return _vm.handlePreview(o.imageUrl, i)}}})],1)])]:_vm._e(),[(_vm.isRadioItem && _vm.showPreSuffix(o))?[(o.prefix)?_c('span',{staticClass:"prefix-span",style:({ color: _vm.choiceColor(o) })},[_vm._v(_vm._s(o.prefix))]):_vm._e(),_c('a-input',{style:({ color: _vm.choiceColor(o) }),attrs:{"disabled":_vm.isLock || _vm.inputLock,"placeholder":"请输入"},on:{"change":function($event){return _vm.inputPreSuffixChange(o, i)}},model:{value:(_vm.optionsPreSuffixObj[o.key]),callback:function ($$v) {_vm.$set(_vm.optionsPreSuffixObj, o.key, $$v)},expression:"optionsPreSuffixObj[o.key]"}}),(o.suffix)?_c('span',{staticClass:"suffix-span",style:({ color: _vm.choiceColor(o) })},[_vm._v(_vm._s(o.suffix))]):_vm._e()]:_c('span',{style:({ color: _vm.choiceColor(o) })},[_vm._v(_vm._s(o.label))]),(o.importability)?_c('a-input',{style:({ color: _vm.choiceColor(o) }),attrs:{"disabled":_vm.isLock || _vm.inputLock,"placeholder":"请输入"},on:{"change":_vm.inputChange},model:{value:(_vm.othersText),callback:function ($$v) {_vm.othersText=$$v},expression:"othersText"}}):_vm._e()]],2)}),1):(_vm.item.type == 'CHECKBOX_BLOCK' || _vm.item.type === 'EVALUATE_CHECKBOX_BLOCK')?_c('a-checkbox-group',{staticClass:"choice-wrap",class:['choice-wrap-' + (_vm.item.setting.chooseStyleSetting || 1)],on:{"change":_vm.checkboxChange},model:{value:(_vm.curCheckboxValue),callback:function ($$v) {_vm.curCheckboxValue=$$v},expression:"curCheckboxValue"}},_vm._l((_vm.curOptions),function(o,i){return _c('a-checkbox',{key:o.key + i + o.label,staticClass:"choice-checkbox",class:{ 'block-checkbox': !_vm.item.setting.isHorizontal },style:({ color: _vm.choiceColor(o) }),attrs:{"value":o[_vm.choiceUseKey],"disabled":_vm.isLock}},[(_vm.showImgWrap(o))?[_c('span',{staticClass:"scale-choice-img-wrap"},[_c('img',{staticClass:"show-picture",attrs:{"src":o.imageUrl}}),_c('div',{staticClass:"scale-preview-wrap"},[_c('a-icon',{attrs:{"type":"zoom-in"},on:{"click":function($event){$event.stopPropagation();$event.preventDefault();return _vm.handlePreview(o.imageUrl, i)}}})],1)])]:_vm._e(),[(_vm.isCheckboxItem && _vm.showPreSuffix(o))?[(o.prefix)?_c('span',{staticClass:"prefix-span",style:({ color: _vm.choiceColor(o) })},[_vm._v(_vm._s(o.prefix))]):_vm._e(),_c('a-input',{style:({ color: _vm.choiceColor(o) }),attrs:{"disabled":_vm.isLock || _vm.inputLock,"placeholder":"请输入"},on:{"change":function($event){return _vm.inputPreSuffixCheckboxChange(o, i)}},model:{value:(_vm.optionsPreSuffixObj[o.key]),callback:function ($$v) {_vm.$set(_vm.optionsPreSuffixObj, o.key, $$v)},expression:"optionsPreSuffixObj[o.key]"}}),(o.suffix)?_c('span',{staticClass:"suffix-span",style:({ color: _vm.choiceColor(o) })},[_vm._v(_vm._s(o.suffix))]):_vm._e()]:_c('span',{staticStyle:{"white-space":"initial"},style:({ color: _vm.choiceColor(o) })},[_vm._v(_vm._s(o.label))]),(o.importability)?_c('a-input',{style:({ color: _vm.choiceColor(o) }),attrs:{"disabled":_vm.isLock || _vm.inputLock,"placeholder":"请输入"},on:{"change":_vm.inputCheckboxChange},model:{value:(_vm.othersText),callback:function ($$v) {_vm.othersText=$$v},expression:"othersText"}}):_vm._e()]],2)}),1):(_vm.cloneItem.type == 'SELECT' || _vm.item.type === 'EVALUATE_SELECT')?_c('a-select',{attrs:{"placeholder":"请选择","show-search":"","mode":_vm.showMulti,"disabled":_vm.isLock,"getPopupContainer":_vm.getPopupContainer,"filterOption":_vm.filterOption,"notFoundContent":_vm.fetching ? undefined : '暂无数据'},on:{"search":_vm.handleSearch,"change":_vm.handleSelectChange},model:{value:(_vm.choiceValue),callback:function ($$v) {_vm.choiceValue=$$v},expression:"choiceValue"}},[(_vm.fetching)?_c('a-spin',{attrs:{"slot":"notFoundContent","size":"small"},slot:"notFoundContent"}):_vm._e(),_vm._l((_vm.curOptions),function(v,i){return _c('a-select-option',{key:i,attrs:{"value":v[_vm.columnKey]}},[_vm._v(_vm._s(v[_vm.labelKey]))])})],2):(_vm.cloneItem.type == 'SEARCH_CASCADE')?_c('a-cascader',{staticClass:"m-cascader",attrs:{"placeholder":"请选择","options":_vm.curOptions,"disabled":_vm.isLock,"change-on-select":""},model:{value:(_vm.choiceValue),callback:function ($$v) {_vm.choiceValue=$$v},expression:"choiceValue"}}):_vm._e(),_c('viewer',{ref:"viewer",staticClass:"viewer",staticStyle:{"display":"none"},attrs:{"images":_vm.previewImages},on:{"inited":_vm.inited},scopedSlots:_vm._u([{key:"default",fn:function(scope){return _vm._l((scope.images),function(src){return _c('img',{key:src,attrs:{"src":src}})})}}])})],1)}
|
|
5162
5162
|
var r_choicevue_type_template_id_3a4861a8_scoped_true_staticRenderFns = []
|
|
5163
5163
|
|
|
@@ -6099,7 +6099,7 @@ var r_choice_component = Object(componentNormalizer["a" /* default */])(
|
|
|
6099
6099
|
)
|
|
6100
6100
|
|
|
6101
6101
|
/* harmony default export */ var r_choice = (r_choice_component.exports);
|
|
6102
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
6102
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/formitem/r-input.vue?vue&type=template&id=383ae00b&scoped=true&
|
|
6103
6103
|
var r_inputvue_type_template_id_383ae00b_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"my-input"},[(_vm.eleType == 'INPUT' || _vm.eleType == 'EVALUATE_INPUT')?_c('a-textarea',{staticStyle:{"resize":"none"},attrs:{"disabled":_vm.isLock,"placeholder":_vm.defaultPlaceHolder,"autoSize":_vm.setTextareaRow,"autocomplete":"off"},on:{"input":_vm.changeTextarea,"keydown":_vm.keydown},model:{value:(_vm.inputValue),callback:function ($$v) {_vm.inputValue=$$v},expression:"inputValue"}}):_vm._e(),(_vm.eleType == 'ID_CARD')?_c('a-input',{attrs:{"type":_vm.type,"disabled":_vm.isLock,"placeholder":"请输入"},on:{"keydown":_vm.keydown},model:{value:(_vm.inputValue),callback:function ($$v) {_vm.inputValue=$$v},expression:"inputValue"}}):_vm._e(),(_vm.eleType == 'MOBILE')?_c('a-input',{attrs:{"type":_vm.type,"disabled":_vm.isLock,"placeholder":"请输入"},on:{"keydown":_vm.keydown},model:{value:(_vm.inputValue),callback:function ($$v) {_vm.inputValue=$$v},expression:"inputValue"}}):_vm._e()],1)}
|
|
6104
6104
|
var r_inputvue_type_template_id_383ae00b_scoped_true_staticRenderFns = []
|
|
6105
6105
|
|
|
@@ -6208,7 +6208,7 @@ var r_input_component = Object(componentNormalizer["a" /* default */])(
|
|
|
6208
6208
|
)
|
|
6209
6209
|
|
|
6210
6210
|
/* harmony default export */ var r_input = (r_input_component.exports);
|
|
6211
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
6211
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/formitem/r-address.vue?vue&type=template&id=58c85e0e&scoped=true&
|
|
6212
6212
|
var r_addressvue_type_template_id_58c85e0e_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"m-address"},[_c('div',{staticClass:"field-select"},[_c('div',{staticClass:"field-row"},[(_vm.addressType.includes('province'))?_c('a-select',{staticClass:"field-cell",attrs:{"labelInValue":"","showSearch":"","filterOption":_vm.filterOption,"disabled":_vm.isLock,"getPopupContainer":_vm.getPopupContainer},on:{"change":_vm.handleProvince},model:{value:(_vm.provinceValue),callback:function ($$v) {_vm.provinceValue=$$v},expression:"provinceValue"}},_vm._l((_vm.province),function(item){return _c('a-select-option',{key:item.code,attrs:{"value":item.code}},[_vm._v(_vm._s(item.name))])}),1):_vm._e(),(_vm.addressType.includes('city'))?_c('a-select',{staticClass:"field-cell",attrs:{"labelInValue":"","showSearch":"","disabled":_vm.isLock,"filterOption":_vm.filterOption,"getPopupContainer":_vm.getPopupContainer},on:{"change":_vm.handleCity},model:{value:(_vm.cityValue),callback:function ($$v) {_vm.cityValue=$$v},expression:"cityValue"}},_vm._l((_vm.city),function(item){return _c('a-select-option',{key:item.code,attrs:{"value":item.code}},[_vm._v(_vm._s(item.name))])}),1):_vm._e(),(_vm.addressType.includes('district'))?_c('a-select',{staticClass:"field-cell",attrs:{"labelInValue":"","showSearch":"","disabled":_vm.isLock,"filterOption":_vm.filterOption,"getPopupContainer":_vm.getPopupContainer},on:{"change":_vm.handleArea},model:{value:(_vm.areaValue),callback:function ($$v) {_vm.areaValue=$$v},expression:"areaValue"}},_vm._l((_vm.area),function(item){return _c('a-select-option',{key:item.code,attrs:{"value":item.code}},[_vm._v(_vm._s(item.name))])}),1):_vm._e()],1)]),(_vm.addressType.includes('address'))?_c('div',{staticClass:"field-control"},[_c('a-input',{attrs:{"disabled":_vm.isLock,"placeholder":"请输入"},on:{"change":_vm.handleAddress},model:{value:(_vm.addressValue),callback:function ($$v) {_vm.addressValue=$$v},expression:"addressValue"}})],1):_vm._e()])}
|
|
6213
6213
|
var r_addressvue_type_template_id_58c85e0e_scoped_true_staticRenderFns = []
|
|
6214
6214
|
|
|
@@ -10454,7 +10454,7 @@ var r_address_component = Object(componentNormalizer["a" /* default */])(
|
|
|
10454
10454
|
)
|
|
10455
10455
|
|
|
10456
10456
|
/* harmony default export */ var r_address = (r_address_component.exports);
|
|
10457
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10457
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/formitem/r-upload.vue?vue&type=template&id=8e272e76&scoped=true&
|
|
10458
10458
|
var r_uploadvue_type_template_id_8e272e76_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"r-upload"},[(_vm.upType == 'UPFILE')?_c('div',[_c('a-upload-dragger',{attrs:{"name":"file","multiple":true,"defaultFileList":_vm.defaultFileList,"action":_vm.uploadFileUrl,"disabled":_vm.isLock},on:{"change":_vm.handleFileChange}},[_c('p',{staticClass:"dragger-upload-text"},[_c('a-icon',{staticClass:"m-icon",attrs:{"type":"plus"}}),_vm._v("请点击文件上传,单个文件50M以内。 ")],1)])],1):_vm._e(),(_vm.upType == 'UPPICTURE')?_c('div',[_c('a-upload',{attrs:{"list-type":"picture-card","accept":"image/*","method":"post","defaultFileList":_vm.defaultFileList,"action":_vm.uploadPictureUrl,"before-upload":_vm.beforeUpload,"disabled":_vm.isLock},on:{"preview":_vm.handlePreview,"change":_vm.handlePictureChange}},[(_vm.fileList.length < _vm.limitPic)?_c('div',{staticClass:"upload-img-wrap"},[_c('a-icon',{attrs:{"type":"camera"}}),_c('p',[_vm._v("添加图片")])],1):_vm._e()]),_c('a-modal',{attrs:{"visible":_vm.previewVisible,"footer":null,"cancelText":'取消',"okText":'确定'},on:{"cancel":_vm.handleCancel}},[_c('img',{staticStyle:{"width":"100%"},attrs:{"alt":"example","src":_vm.previewImage}})])],1):_vm._e()])}
|
|
10459
10459
|
var r_uploadvue_type_template_id_8e272e76_scoped_true_staticRenderFns = []
|
|
10460
10460
|
|
|
@@ -10726,7 +10726,7 @@ var r_upload_component = Object(componentNormalizer["a" /* default */])(
|
|
|
10726
10726
|
)
|
|
10727
10727
|
|
|
10728
10728
|
/* harmony default export */ var r_upload = (r_upload_component.exports);
|
|
10729
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10729
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/formitem/r-prompt.vue?vue&type=template&id=532b5798&scoped=true&
|
|
10730
10730
|
var r_promptvue_type_template_id_532b5798_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"prompt-message",class:_vm.className},[(_vm.options.promptType === 'strong')?_c('a-icon',{staticClass:"prompt-icon",attrs:{"type":"exclamation-circle"}}):_vm._e(),_c('div',{staticClass:"prompt-message-content "},[_vm._v(" "+_vm._s(_vm.options.promptMsg || "")+" ")])],1)}
|
|
10731
10731
|
var r_promptvue_type_template_id_532b5798_scoped_true_staticRenderFns = []
|
|
10732
10732
|
|
|
@@ -10785,7 +10785,7 @@ var r_prompt_component = Object(componentNormalizer["a" /* default */])(
|
|
|
10785
10785
|
|
|
10786
10786
|
|
|
10787
10787
|
|
|
10788
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10788
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/map/src/popup-map.vue?vue&type=template&id=21504265&scoped=true&
|
|
10789
10789
|
var popup_mapvue_type_template_id_21504265_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a-modal',{staticClass:"map-modal",attrs:{"title":"地图","bodyStyle":{ height: '800px' },"visible":_vm.calculateVisible,"keyboard":false,"maskClosable":false,"footer":null,"width":800},on:{"cancel":_vm.handleCancel}},[_c('c-map',_vm._g(_vm._b({},'c-map',_vm.$attrs,false),_vm.$listeners))],1)}
|
|
10790
10790
|
var popup_mapvue_type_template_id_21504265_scoped_true_staticRenderFns = []
|
|
10791
10791
|
|
|
@@ -10867,14 +10867,14 @@ var popup_map_component = Object(componentNormalizer["a" /* default */])(
|
|
|
10867
10867
|
// EXTERNAL MODULE: ./packages/select-label/select-label.vue + 4 modules
|
|
10868
10868
|
var select_label = __webpack_require__("1b4e");
|
|
10869
10869
|
|
|
10870
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10870
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/chunk-upload/vod-chunk-upload.vue?vue&type=template&id=8a93562e&scoped=true&
|
|
10871
10871
|
var vod_chunk_uploadvue_type_template_id_8a93562e_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"upload"},[(!_vm.isDetail)?_c('div',{directives:[{name:"show",rawName:"v-show",value:(_vm.isShowBtn),expression:"isShowBtn"}],staticClass:"chunk-uploader-btn",class:{ 'disable-upload': _vm.isDisabled },on:{"click":_vm.handleBtnOnClick}},[_c('div',{staticClass:"chunk-btn-content"},[_c('div',{staticClass:"c-uploader-btn"},[(_vm.source == 'guage')?[_c('img',{staticClass:"guage-img",attrs:{"src":__webpack_require__("1c04"),"alt":""}}),_vm._m(0)]:[_c('img',{staticClass:"guage-img",attrs:{"src":__webpack_require__("1c04"),"alt":""}}),_vm._m(1)]],2)])]):_vm._e(),[_c('draggable',{staticClass:"drag-content",attrs:{"animation":"150","disabled":_vm.isDisabled,"options":_vm.draggableOptions},on:{"update":_vm.draggableUpdate},model:{value:(_vm.fileList),callback:function ($$v) {_vm.fileList=$$v},expression:"fileList"}},_vm._l((_vm.fileList),function(item,index){return _c('div',{key:index,staticClass:"vod-wrap uploader-preview-wrap"},[(item.status === 'uploading')?_vm._t("default",function(){return [_c('div',{staticClass:"vod-def-bg vod-uploading"},[_c('div',{staticClass:"uploading-mask",style:({ height: _vm.maskHeight(item) })},[_c('span',[_vm._v(_vm._s(_vm.showPercent(item.percent))+"%")])])])]}):(item.status === 'done')?_vm._t("default",function(){return [_c('div',{staticClass:"vod-def-bg vod-done"},[_c('img',{staticClass:"vod-cover-img",attrs:{"src":_vm.getvideoCover(item)}}),_c('div',{staticClass:"tooltip-wrap",class:{ 'is-new': item.isNew }},[_c('img',{staticClass:"upload-img",attrs:{"src":__webpack_require__("d284"),"alt":""}}),_vm._v(" 上传成功 ")]),_c('div',{staticClass:"icon-wrap"},[_c('a-icon',{staticClass:"icon-play theme_filled",attrs:{"theme":"filled","type":"play-circle"},on:{"click":function($event){$event.preventDefault();$event.stopPropagation();return _vm.palyerVod(item, index)}}}),_c('a-icon',{staticClass:"icon-play theme_outlined",attrs:{"type":"play-circle"},on:{"click":function($event){$event.preventDefault();$event.stopPropagation();return _vm.palyerVod(item, index)}}})],1)])]}):(item.status === 'error')?_vm._t("default",function(){return [_c('div',{staticClass:"vod-def-bg vod-error"},[_c('img',{staticClass:"vod-cover-img",attrs:{"src":item.thumbUrl}}),_c('div',{staticClass:"tooltip-wrap error-wrap"},[_c('span',[_vm._v(" "+_vm._s(item.message ? item.message : '上传失败,继续上传?')+" ")]),_c('a-button',{attrs:{"size":"small"},on:{"click":function($event){$event.preventDefault();$event.stopPropagation();return _vm.restartUpload(item)}}},[_vm._v(" 确定 ")])],1)])]}):_vm._e(),(['done', 'error'].includes(item.status) && !_vm.isDisabled && !_vm.isDetail)?_c('div',{staticClass:"uploader-preview-delete",on:{"click":function($event){$event.stopPropagation();return _vm.handleDelFileList(index)}}},[_c('a-icon',{staticClass:"pre-delete",attrs:{"type":"minus-circle","theme":"filled"}})],1):_vm._e()],2)}),0)],(_vm.videoVisible)?_c('video-modal',{attrs:{"visible":_vm.videoVisible,"playerOptions":_vm.playerOptions},on:{"update:visible":function($event){_vm.videoVisible=$event}}}):_vm._e(),_c('vodUploadModal',_vm._b({attrs:{"modalTitle":_vm.formData.name,"max_size":_vm.max_size,"maxLength":_vm.maxlength,"propsCategoryMap":_vm.propsDefaultAccept,"defaultList":_vm.fileList},on:{"getSumbitList":_vm.getSumbitList},model:{value:(_vm.chunkUploadVisible),callback:function ($$v) {_vm.chunkUploadVisible=$$v},expression:"chunkUploadVisible"}},'vodUploadModal',_vm.$attrs,false))],2)}
|
|
10872
10872
|
var vod_chunk_uploadvue_type_template_id_8a93562e_scoped_true_staticRenderFns = [function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"uploader-text"},[_c('p',[_vm._v("点击上传")]),_c('span',{staticClass:"guage-text"},[_vm._v("上传视频(不超过50M)")])])},function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"uploader-text"},[_c('p',[_vm._v("上传视频")])])}]
|
|
10873
10873
|
|
|
10874
10874
|
|
|
10875
10875
|
// CONCATENATED MODULE: ./packages/upload/chunk-upload/vod-chunk-upload.vue?vue&type=template&id=8a93562e&scoped=true&
|
|
10876
10876
|
|
|
10877
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10877
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/component/player-vod/video-modal.vue?vue&type=template&id=05a5d41e&scoped=true&
|
|
10878
10878
|
var video_modalvue_type_template_id_05a5d41e_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a-modal',{attrs:{"visible":_vm.previewVisible,"footer":null,"wrapClassName":"image-modal","width":"65vw","bodyStyle":{
|
|
10879
10879
|
height: '600px',
|
|
10880
10880
|
overflowY: 'auto'
|
|
@@ -10891,14 +10891,14 @@ var carousel_style_ = __webpack_require__("7442");
|
|
|
10891
10891
|
var carousel_ = __webpack_require__("34fc");
|
|
10892
10892
|
var carousel_default = /*#__PURE__*/__webpack_require__.n(carousel_);
|
|
10893
10893
|
|
|
10894
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10894
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/component/player-vod/index.vue?vue&type=template&id=1bf8472c&scoped=true&
|
|
10895
10895
|
var player_vodvue_type_template_id_1bf8472c_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"video-container cp",on:{"contextmenu":function($event){$event.preventDefault();}}},[_c('player',{attrs:{"options":_vm.playerOptions}})],1)}
|
|
10896
10896
|
var player_vodvue_type_template_id_1bf8472c_scoped_true_staticRenderFns = []
|
|
10897
10897
|
|
|
10898
10898
|
|
|
10899
10899
|
// CONCATENATED MODULE: ./src/component/player-vod/index.vue?vue&type=template&id=1bf8472c&scoped=true&
|
|
10900
10900
|
|
|
10901
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
10901
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/component/player-vod/player.vue?vue&type=template&id=76757f5e&
|
|
10902
10902
|
var playervue_type_template_id_76757f5e_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('video',{ref:"video",staticClass:"video-js vjs-default-skin vjs-big-play-centered",attrs:{"controls":"","webkit-playsinline":"true","playsinline":""},on:{"contextmenu":function($event){$event.preventDefault();}}})}
|
|
10903
10903
|
var playervue_type_template_id_76757f5e_staticRenderFns = []
|
|
10904
10904
|
|
|
@@ -11273,7 +11273,7 @@ var video_modal_component = Object(componentNormalizer["a" /* default */])(
|
|
|
11273
11273
|
)
|
|
11274
11274
|
|
|
11275
11275
|
/* harmony default export */ var video_modal = (video_modal_component.exports);
|
|
11276
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11276
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/chunk-upload/vod-upload-modal.vue?vue&type=template&id=d40700ea&scoped=true&
|
|
11277
11277
|
var vod_upload_modalvue_type_template_id_d40700ea_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return (_vm.chunkUploadVisible)?_c('a-modal',{staticClass:"upload-modal upload-modal1 standard-modal standard-modal-white",attrs:{"destroyOnClose":"","bodyStyle":{
|
|
11278
11278
|
height: '644px',
|
|
11279
11279
|
overflowY: 'auto',
|
|
@@ -11284,7 +11284,7 @@ var vod_upload_modalvue_type_template_id_d40700ea_scoped_true_staticRenderFns =
|
|
|
11284
11284
|
|
|
11285
11285
|
// CONCATENATED MODULE: ./packages/upload/chunk-upload/vod-upload-modal.vue?vue&type=template&id=d40700ea&scoped=true&
|
|
11286
11286
|
|
|
11287
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
11287
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/upload/chunk-upload/chunk-upload-new.vue?vue&type=template&id=08a78540&scoped=true&
|
|
11288
11288
|
var chunk_upload_newvue_type_template_id_08a78540_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"chunk-upload-container"},[_c('uploader',{ref:"uploader",staticClass:"uploader-app",attrs:{"options":_vm.options,"autoStart":_vm.autoStart},on:{"file-added":_vm.onFileAdded,"file-success":_vm.onFileSuccess,"file-progress":_vm.onFileProgress,"file-error":_vm.onFileError}},[_c('uploader-unsupport'),_c('uploader-drop',[_c('div',{staticClass:"drap-container dragger-btn",on:{"click":_vm.hanldeDraggerBtnClick}},[_c('a-icon',{attrs:{"type":"folder-add"}}),_c('p',[_vm._v("点击或将文件拖拽到这里上传")])],1)]),_c('uploader-list',{scopedSlots:_vm._u([{key:"default",fn:function(props){return _c('div',{staticClass:"file-list-conatiner"},[_c('ul',{staticClass:"file-list"},_vm._l((props.fileList),function(file){return _c('li',{key:file.id},[_c('uploader-file',{ref:"files",refInFor:true,class:'file_' + file.id,attrs:{"file":file,"list":true},scopedSlots:_vm._u([{key:"default",fn:function(props){return _c('div',{staticClass:"c-file-container",class:{
|
|
11289
11289
|
'file-boder-bottom': ['complete', 'failed'].includes(
|
|
11290
11290
|
_vm.getUploadShowStatus(file, 'status')
|
|
@@ -12979,7 +12979,7 @@ var vod_chunk_upload_component = Object(componentNormalizer["a" /* default */])(
|
|
|
12979
12979
|
}
|
|
12980
12980
|
}
|
|
12981
12981
|
});
|
|
12982
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
12982
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/evaluatePage.vue?vue&type=template&id=7bb80553&scoped=true&
|
|
12983
12983
|
var evaluatePagevue_type_template_id_7bb80553_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"evaluate-page"},[_c('div',{staticClass:"evaluate-container"},[(_vm.evaluateResultSetting.evaluateName)?_c('h4',{staticClass:"evaluate-name"},[_vm._v(" "+_vm._s(_vm.evaluateResultSetting.evaluateName))]):_vm._e(),(_vm.evaluateResultSetting.evaluateExplain)?_c('div',{staticClass:"evaluate-explain"},[_c('div',[_vm._v(" "+_vm._s(_vm.evaluateResultSetting.evaluateExplain)+" ")])]):_vm._e(),_c('ul',{staticClass:"evaluate-score"},[_c('li',[_c('div',[_vm._v(_vm._s(_vm.totalLen))]),_c('span',[_vm._v("测评总题")])]),_c('li',[_c('div',[_vm._v(_vm._s(_vm.maxScore))]),_c('span',[_vm._v("测评总分")])]),(_vm.getEvaluateTime)?_c('li',[_c('div',[_vm._v(_vm._s(_vm.getEvaluateTime))]),_c('span',[_vm._v("测试时间(分钟)")])]):_vm._e()]),(_vm.showRange)?_c('div',{staticClass:"evaluate-time-range"},[_vm._v(" "+_vm._s(_vm.timeRange)+" ")]):_vm._e(),_c('a-button',{staticClass:"evaluate-btn",attrs:{"type":"primary","disabled":_vm.disabledEvaluate || _vm.banStart},on:{"click":_vm.writeGuage}},[_vm._v(" "+_vm._s(_vm.getEvaluateText)+" "),(!_vm.isTimeOut && _vm.countdownStr)?[_vm._v("("+_vm._s(_vm.countdownStr)+")")]:_vm._e()],2)],1)])}
|
|
12984
12984
|
var evaluatePagevue_type_template_id_7bb80553_scoped_true_staticRenderFns = []
|
|
12985
12985
|
|
|
@@ -13282,7 +13282,7 @@ var evaluatePage_component = Object(componentNormalizer["a" /* default */])(
|
|
|
13282
13282
|
)
|
|
13283
13283
|
|
|
13284
13284
|
/* harmony default export */ var evaluatePage = (evaluatePage_component.exports);
|
|
13285
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13285
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/evaluateCountdown.vue?vue&type=template&id=15bc47d0&scoped=true&
|
|
13286
13286
|
var evaluateCountdownvue_type_template_id_15bc47d0_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"evaluateCountdown",class:{ 'evaluateCountdown-hasTime': _vm.showEvaluateCountdown }},[(_vm.showEvaluateCountdown)?_c('div',{staticClass:"countdown",class:{ 'countdown-red': _vm.countdownRed }},[_c('span',[_vm._v(_vm._s(_vm.countdownStr))]),_c('svg-icon',{attrs:{"icon-class":"zhongtai-zujianliebiao-gongzuoshijian"}})],1):_vm._e(),_c('div',{staticClass:"answered-wrap"},[_vm._v(" 答题情况: "+_vm._s(_vm.setAnswered)+"/"),_c('span',[_vm._v(_vm._s(_vm.totalLen))])])])}
|
|
13287
13287
|
var evaluateCountdownvue_type_template_id_15bc47d0_scoped_true_staticRenderFns = []
|
|
13288
13288
|
|
|
@@ -13416,7 +13416,7 @@ var evaluateCountdown_component = Object(componentNormalizer["a" /* default */])
|
|
|
13416
13416
|
)
|
|
13417
13417
|
|
|
13418
13418
|
/* harmony default export */ var evaluateCountdown = (evaluateCountdown_component.exports);
|
|
13419
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13419
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/answerParse.vue?vue&type=template&id=00cdab3d&scoped=true&
|
|
13420
13420
|
var answerParsevue_type_template_id_00cdab3d_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"answerParse",class:{ 'answerParse-success': _vm.answerSuccess }},[_c('div',{staticClass:"answer-res-wrap"},[_c('div',{staticClass:"answer-res"},[_c('svg-icon',{attrs:{"iconClass":_vm.answerIcon}}),_vm._v(" "+_vm._s(_vm.answerResText)+" ")],1),(_vm.answerSuccess)?_c('div',[_vm._v(" "+_vm._s(_vm.scoreText)+"得分:"+_vm._s(_vm.questionScore)+"分 ")]):_vm._e()]),(_vm.correctAnswer)?_c('div',{staticClass:"correct-answer"},[_c('p',[_vm._v("正确答案:")]),_c('span',[_vm._v(_vm._s(_vm.correctAnswer))])]):_vm._e(),_c('div',{staticClass:"answer-key"},[_c('p',[_vm._v("答案解析:")]),_c('span',[_vm._v(_vm._s(_vm.answerKeyText))])])])}
|
|
13421
13421
|
var answerParsevue_type_template_id_00cdab3d_scoped_true_staticRenderFns = []
|
|
13422
13422
|
|
|
@@ -13526,7 +13526,7 @@ var answerParse_component = Object(componentNormalizer["a" /* default */])(
|
|
|
13526
13526
|
)
|
|
13527
13527
|
|
|
13528
13528
|
/* harmony default export */ var answerParse = (answerParse_component.exports);
|
|
13529
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
13529
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/NoData.vue?vue&type=template&id=fa98eabe&scoped=true&
|
|
13530
13530
|
var NoDatavue_type_template_id_fa98eabe_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"no-data-tip NoData-page"},[(_vm.showImg)?_c('img',{attrs:{"src":__webpack_require__("3a88")("./" + _vm.noDataImg + ".png"),"alt":""}}):_vm._e(),_c('p',[_vm._v(_vm._s(_vm.$t(_vm.noDataTip)))]),(_vm.handleDesc)?_c('span',[_vm._v(" "+_vm._s(_vm.handleDesc))]):_vm._e()])}
|
|
13531
13531
|
var NoDatavue_type_template_id_fa98eabe_scoped_true_staticRenderFns = []
|
|
13532
13532
|
|
|
@@ -14195,8 +14195,8 @@ var scaleViewvue_type_script_lang_js_components;
|
|
|
14195
14195
|
return res;
|
|
14196
14196
|
},
|
|
14197
14197
|
|
|
14198
|
-
/** *
|
|
14199
|
-
* 解析测评参数
|
|
14198
|
+
/** *
|
|
14199
|
+
* 解析测评参数
|
|
14200
14200
|
*/
|
|
14201
14201
|
handleEvaluateParams: function handleEvaluateParams(evaluateResultSetting) {
|
|
14202
14202
|
var _this4 = this;
|
|
@@ -14595,8 +14595,8 @@ var scaleViewvue_type_script_lang_js_components;
|
|
|
14595
14595
|
});
|
|
14596
14596
|
},
|
|
14597
14597
|
|
|
14598
|
-
/**
|
|
14599
|
-
* "RADIO_BLOCK", "CHECKBOX_BLOCK" 将取值value改为key, relationLogic需要重新处理
|
|
14598
|
+
/**
|
|
14599
|
+
* "RADIO_BLOCK", "CHECKBOX_BLOCK" 将取值value改为key, relationLogic需要重新处理
|
|
14600
14600
|
*/
|
|
14601
14601
|
handleRelationLogic: function handleRelationLogic(list, relationLogicObj) {
|
|
14602
14602
|
var _this8 = this;
|
|
@@ -14627,8 +14627,8 @@ var scaleViewvue_type_script_lang_js_components;
|
|
|
14627
14627
|
});
|
|
14628
14628
|
},
|
|
14629
14629
|
|
|
14630
|
-
/**
|
|
14631
|
-
* "RADIO_BLOCK", "CHECKBOX_BLOCK" 将取值value改为key, nextLogic需要重新处理
|
|
14630
|
+
/**
|
|
14631
|
+
* "RADIO_BLOCK", "CHECKBOX_BLOCK" 将取值value改为key, nextLogic需要重新处理
|
|
14632
14632
|
*/
|
|
14633
14633
|
handLenextLogic: function handLenextLogic(item) {
|
|
14634
14634
|
var _this9 = this;
|
|
@@ -15561,9 +15561,9 @@ var scaleViewvue_type_script_lang_js_components;
|
|
|
15561
15561
|
if (hasCallbackItem) {
|
|
15562
15562
|
isCallback = this.showEvent(hasCallbackItem, true);
|
|
15563
15563
|
}
|
|
15564
|
-
/**
|
|
15565
|
-
* NOTE:
|
|
15566
|
-
* 提交数据往外推
|
|
15564
|
+
/**
|
|
15565
|
+
* NOTE:
|
|
15566
|
+
* 提交数据往外推
|
|
15567
15567
|
*/
|
|
15568
15568
|
|
|
15569
15569
|
|
|
@@ -15730,14 +15730,14 @@ var scaleView_component = Object(componentNormalizer["a" /* default */])(
|
|
|
15730
15730
|
)
|
|
15731
15731
|
|
|
15732
15732
|
/* harmony default export */ var scaleView = (scaleView_component.exports);
|
|
15733
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15733
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/customList.vue?vue&type=template&id=d295e338&scoped=true&
|
|
15734
15734
|
var customListvue_type_template_id_d295e338_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"r-scale"},[(_vm.spinning)?_vm._t("default",function(){return [_c('a-spin',{attrs:{"indicator":_vm.indicator}})]}):_vm._t("default",function(){return [_c('a-form-model',{ref:"ruleForm",staticClass:"main",attrs:{"model":_vm.form,"rules":_vm.rules,"layout":_vm.form.layout}},[_vm._l((_vm.formArray),function(item){return [(item.type == 'TITLE')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"colon":false}},[_c('h1',{staticClass:"lb-title"},[_vm._v(_vm._s(item.title))]),_c('div',{staticClass:"lb-title"},[_vm._v(_vm._s(item.describe))])]):_vm._e()]:(item.type == 'LINEBAR')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"colon":false}},[(item.title)?_c('div',{staticClass:"linebar-div"},[_c('span',[_vm._v(_vm._s(item.title))]),_c('a-divider')],1):[_c('a-divider')]],2):_vm._e()]:(item.type == 'PROMPT')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,staticClass:"my-prompt",attrs:{"colon":false}},[_c('MyPrompt',{key:item.id || item.seq,attrs:{"options":item.setting}})],1):_vm._e()]:(item.type == 'IMGCARD')?[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"colon":false}},[(item.setting.imgLink)?_c('a',{attrs:{"href":item.setting.imgLink,"target":"_blank"}},[_c('img',{staticClass:"img-card",attrs:{"src":item.setting.imgUrl}})]):_c('img',{staticClass:"img-card",attrs:{"src":item.setting.imgUrl}})]):_vm._e()]:[(_vm.isShowItem(item))?_c('a-form-model-item',{key:item.id || item.seq,attrs:{"label":("" + (item.title)),"prop":item.title}},[(_vm.isInput(item.type))?_c('MyInput',_vm._b({attrs:{"type":item.valueType,"row":item.setting.inputRow || 1,"isLock":_vm.isLock},model:{value:(_vm.form[item.title]),callback:function ($$v) {_vm.$set(_vm.form, item.title, $$v)},expression:"form[item.title]"}},'MyInput',_vm.$attrs,false)):(_vm.isChoice(item.type))?_c('MyChoice',_vm._b({attrs:{"item":item,"isLock":_vm.isLock},on:{"change":function($event){return _vm.handleChoice($event, item)},"radioChange":_vm.radioChange,"checkboxChange":_vm.checkboxChange},model:{value:(_vm.form[item.title]),callback:function ($$v) {_vm.$set(_vm.form, item.title, $$v)},expression:"form[item.title]"}},'MyChoice',_vm.$attrs,false)):(_vm.isTime(item.type))?_c('MyTime',_vm._b({attrs:{"value":_vm.form[item.title],"type":item.type,"startToStop":item.setting.startToStop,"dateType":item.setting.dateType,"isLock":_vm.isLock},on:{"change":function($event){return _vm.changeTime($event, item)}}},'MyTime',_vm.$attrs,false)):(_vm.isUpload(item.type))?_c('MyUpload',_vm._b({attrs:{"upType":item.type,"useFileList":item.useFileList,"limitPic":item.setting.limitPic,"isLock":_vm.isLock},on:{"change":function($event){return _vm.changeUpload($event, item)}}},'MyUpload',_vm.$attrs,false)):(item.type === 'LOCATION')?_c('div',{class:{ 'map-container': !_vm.isLock },on:{"click":function($event){!_vm.isLock && (_vm.mapVisible = !_vm.mapVisible)}}},[_c('a-input',{attrs:{"placeholder":"请选择","value":_vm.handleGetAddress(_vm.form[item.title]),"disabled":""}},[_c('a-icon',{attrs:{"slot":"prefix","type":"info-circle"},slot:"prefix"})],1),_c('MapComp',_vm._b({attrs:{"visible":_vm.mapVisible,"locationProp":_vm.form[item.title],"isLock":_vm.isLock},on:{"update:visible":function($event){_vm.mapVisible=$event},"selectLocation":function($event){return _vm.handleSelectLocation($event, item)}}},'MapComp',_vm.$attrs,false))],1):(item.type === 'ADDRESS')?_c('MyAddress',_vm._b({attrs:{"setting":item.setting,"defaultValue":_vm.defaultAddress,"isLock":_vm.isLock},on:{"change":function($event){return _vm.changeAddress($event, item)}}},'MyAddress',_vm.$attrs,false)):(item.type === 'LABEL')?_c('label-form',_vm._b({attrs:{"item":item,"selectedList":_vm.labelSelectedList,"isLock":_vm.isLock},on:{"onChange":function($event){return _vm.labelChange($event, item)}}},'label-form',_vm.$attrs,false)):(item.type === 'VEDIO')?_c('vod-Chunk-upload',_vm._b({attrs:{"source":'guage',"formData":item,"limitNum":item.setting.limitPic,"defFileList":_vm.form[item.title]},on:{"vodFileList":function($event){return _vm.vodFileList($event, item)}}},'vod-Chunk-upload',_vm.$attrs,false)):_vm._e()],1):_vm._e()]]})],2),(!_vm.noBtn)?_c('div',{staticClass:"footer"},[_c('a-button',{staticStyle:{"margin-right":"10px"},on:{"click":_vm.cancel}},[_vm._v("取消")]),_c('a-button',{attrs:{"type":"primary"},on:{"click":_vm.onSubmit}},[_vm._v("保存")])],1):_vm._e()]})],2)}
|
|
15735
15735
|
var customListvue_type_template_id_d295e338_scoped_true_staticRenderFns = []
|
|
15736
15736
|
|
|
15737
15737
|
|
|
15738
15738
|
// CONCATENATED MODULE: ./packages/scale-view/customList.vue?vue&type=template&id=d295e338&scoped=true&
|
|
15739
15739
|
|
|
15740
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
15740
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/scale-view/formitem/r-upload-custom-list.vue?vue&type=template&id=07a87b0c&scoped=true&
|
|
15741
15741
|
var r_upload_custom_listvue_type_template_id_07a87b0c_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"r-upload"},[(_vm.upType == 'UPFILE')?_c('a-upload-dragger',{attrs:{"name":"file","multiple":true,"defaultFileList":_vm.defaultFileList,"action":_vm.uploadFileUrl,"disabled":_vm.isLock},on:{"change":_vm.handleFileChange}},[_c('p',{staticClass:"dragger-upload-text"},[_c('a-icon',{staticClass:"m-icon",attrs:{"type":"plus"}}),_vm._v("请点击文件上传,单个文件50M以内。 ")],1)]):_vm._e(),(_vm.upType == 'UPPICTURE')?_c('a-upload',{attrs:{"list-type":"picture-card","accept":"image/*","method":"post","defaultFileList":_vm.defaultFileList,"action":_vm.uploadPictureUrl,"before-upload":_vm.beforeUpload,"disabled":_vm.isLock || _vm.isUploading},on:{"preview":_vm.handlePreview,"change":_vm.handlePictureChange}},[(_vm.fileList.length < _vm.limitPic)?_c('div',[_c('a-icon',{attrs:{"type":"plus"}}),_c('div',{staticClass:"ant-upload-text"},[_vm._v(" 添加图片 ")])],1):_vm._e()]):_vm._e(),_c('a-modal',{attrs:{"visible":_vm.previewVisible,"footer":null},on:{"cancel":_vm.handleCancel}},[_c('img',{staticStyle:{"width":"100%"},attrs:{"alt":"example","src":_vm.previewImage}})])],1)}
|
|
15742
15742
|
var r_upload_custom_listvue_type_template_id_07a87b0c_scoped_true_staticRenderFns = []
|
|
15743
15743
|
|
|
@@ -17089,7 +17089,7 @@ module.exports = require("ant-design-vue/es/radio");
|
|
|
17089
17089
|
|
|
17090
17090
|
"use strict";
|
|
17091
17091
|
|
|
17092
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17092
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select-label/labelFormContent.vue?vue&type=template&id=3b3d070c&scoped=true&
|
|
17093
17093
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"labelFormContent-page"},[(_vm.allDisable)?_c('div',{staticClass:"label-disable-wrap"},[_c('p',{staticClass:"label-disable-title"},[_vm._v("无可选标签")]),_c('p',{staticClass:"label-disable-desc"},[_vm._v("请联系管理员进行标签管理设置")])]):_vm._e(),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.allDisable),expression:"!allDisable"}],staticStyle:{"height":"100%"}},[_c('div',{staticClass:"label-wrap"},[(_vm.explicit)?_c('div',{staticClass:"explicit-continer"},[_c('a-tabs',{attrs:{"hideAdd":"","activeKey":_vm.labelAnchorKey,"type":"card","tab-position":"top"},on:{"change":_vm.labelAnchorTabsOnChange}},[_vm._l((_vm.labelConfig),function(v,i){return [_c('a-tab-pane',{key:v.curKey},[_c('span',{attrs:{"slot":"tab"},slot:"tab"},[_vm._v(" "+_vm._s(i)+" "),_c('span',{staticClass:"edit-label-type"},[_vm._v("("+_vm._s(v.multipleChoice == 2 ? '单' : '多')+"选)")])]),_c('div',{staticClass:"explicit-label-wrap left-label-wrap"},[_c('div',{staticClass:"edit-label-content"},[_c('labelClassify',{attrs:{"classifyItem":v,"handleLabelChange":_vm.handleLabelChange,"handleLabelColor":_vm.handleLabelColor,"handleDelLabel":_vm.handleDelLabel,"hanldeBlur":_vm.hanldeBlur,"handleAddLabel":_vm.handleAddLabel,"clearaddVal":_vm.clearaddVal,"isEdit":_vm.isEdit,"sourceType":_vm.sourceType}})],1)])])]})],2)],1):_c('div',{staticClass:"left-label-wrap",class:{
|
|
17094
17094
|
'total-left-label-wrap': _vm.isChangeWindow
|
|
17095
17095
|
}},[_c('a-tabs',{attrs:{"hideAdd":"","activeKey":_vm.labelAnchorKey,"tab-position":"left"},on:{"change":_vm.labelAnchorTabsOnChange}},[_vm._l((_vm.labelConfig),function(v,i){return [_c('a-tab-pane',{key:v.curKey},[_c('span',{attrs:{"slot":"tab"},slot:"tab"},[_vm._v(" "+_vm._s(i)+" ")])])]})],2)],1),(!_vm.explicit)?_c('div',{staticClass:"right-label-wrap",class:{
|
|
@@ -17232,7 +17232,7 @@ var create = __webpack_require__("8aef");
|
|
|
17232
17232
|
var vexutils_ = __webpack_require__("9715");
|
|
17233
17233
|
var vexutils_default = /*#__PURE__*/__webpack_require__.n(vexutils_);
|
|
17234
17234
|
|
|
17235
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
17235
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select-label/label-classify.vue?vue&type=template&id=a7ea64a2&scoped=true&
|
|
17236
17236
|
var label_classifyvue_type_template_id_a7ea64a2_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"edit-content"},[(!_vm.itemList)?_c('div',{staticClass:"label-disable-wrap"},[_c('p',{staticClass:"label-disable-title"},[_vm._v("无可选标签")]),_c('p',{staticClass:"label-disable-desc"},[_vm._v("请联系管理员进行标签管理设置")])]):_c('div',{staticClass:"label-content"},[_vm._l((_vm.itemList),function(item){return _c('a-checkable-tag',{key:item.labelId,class:{ 'sys-label-tag': item.isPublic && item.isPublic == 1 },style:(_vm.handleLabelColor(item)),on:{"change":function($event){return _vm.handleLabelChange($event, item, _vm.classifyItem)}},model:{value:(item.isSelect),callback:function ($$v) {_vm.$set(item, "isSelect", $$v)},expression:"item.isSelect"}},[_c('a-tooltip',{attrs:{"placement":"topLeft"}},[_c('template',{slot:"title"},[_c('span',[_vm._v(_vm._s(item.labelName))])]),_vm._v(" "+_vm._s(item.labelName)+" ")],2),(_vm.sourceType != 'guage')?[_c('a-icon',{directives:[{name:"show",rawName:"v-show",value:(!(item.isPublic && item.isPublic == 1)),expression:"!(item.isPublic && item.isPublic == 1)"}],staticClass:"label-close",attrs:{"type":"close"},nativeOn:{"click":function($event){$event.stopPropagation();return _vm.handleDelLabel(item, _vm.classifyItem)}}})]:_vm._e()],2)}),(_vm.classifyItem.allowCreateByPersonal == 1 )?[(_vm.isEdit && !_vm.classifyItem.isNoAdd && _vm.sourceType != 'guage')?_c('a-button',{directives:[{name:"show",rawName:"v-show",value:(!_vm.classifyItem.showAdd),expression:"!classifyItem.showAdd"}],staticClass:"label-add",attrs:{"type":"dashed"},on:{"click":function($event){return _vm.handleAddLabel($event, _vm.classifyItem)}}},[_c('a-icon',{attrs:{"type":"plus"}}),_vm._v(" 标签 ")],1):_vm._e(),(_vm.isEdit && !_vm.classifyItem.isNoAdd && _vm.sourceType != 'guage')?_c('a-input',{directives:[{name:"show",rawName:"v-show",value:(_vm.classifyItem.showAdd),expression:"classifyItem.showAdd"}],staticClass:"label-add add-input",on:{"blur":function($event){return _vm.hanldeBlur($event, _vm.classifyItem)}},model:{value:(_vm.classifyItem.addVal),callback:function ($$v) {_vm.$set(_vm.classifyItem, "addVal", (typeof $$v === 'string'? $$v.trim(): $$v))},expression:"classifyItem.addVal"}},[_c('a-icon',{attrs:{"slot":"suffix","type":"close"},nativeOn:{"click":function($event){$event.stopPropagation();return _vm.clearaddVal($event, _vm.classifyItem)}},slot:"suffix"})],1):_vm._e()]:_vm._e()],2)])}
|
|
17237
17237
|
var label_classifyvue_type_template_id_a7ea64a2_scoped_true_staticRenderFns = []
|
|
17238
17238
|
|
package/es/select/index.js
CHANGED
|
@@ -1013,14 +1013,14 @@ __webpack_require__.r(__webpack_exports__);
|
|
|
1013
1013
|
/* harmony import */ var ant_design_vue_es_base_style__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(ant_design_vue_es_base_style__WEBPACK_IMPORTED_MODULE_0__);
|
|
1014
1014
|
/* harmony import */ var ant_design_vue_es_base__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("be79");
|
|
1015
1015
|
/* harmony import */ var ant_design_vue_es_base__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(ant_design_vue_es_base__WEBPACK_IMPORTED_MODULE_1__);
|
|
1016
|
-
/* harmony import */ var
|
|
1017
|
-
/* harmony import */ var
|
|
1018
|
-
/* harmony import */ var
|
|
1019
|
-
/* harmony import */ var
|
|
1020
|
-
/* harmony import */ var
|
|
1021
|
-
/* harmony import */ var
|
|
1022
|
-
/* harmony import */ var
|
|
1023
|
-
/* harmony import */ var
|
|
1016
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("e260");
|
|
1017
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_2__);
|
|
1018
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("e6cf");
|
|
1019
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_3__);
|
|
1020
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("cca6");
|
|
1021
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_4__);
|
|
1022
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("a79d");
|
|
1023
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_5__);
|
|
1024
1024
|
|
|
1025
1025
|
|
|
1026
1026
|
|
|
@@ -1369,7 +1369,7 @@ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
|
|
|
1369
1369
|
|
|
1370
1370
|
"use strict";
|
|
1371
1371
|
|
|
1372
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1372
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./src/component/select-pages/index.vue?vue&type=template&id=d0eafa66&scoped=true&functional=true&
|
|
1373
1373
|
var render = function (_h,_vm) {var _c=_vm._c;return _c('div',{staticClass:"form-select-btn",on:{"mousedown":function (e) { return e.preventDefault(); }}},[_c('a-button',{attrs:{"disabled":_vm.props.searchPageConfig.page <= 1,"type":"dashed","block":""},on:{"click":function($event){if($event.target !== $event.currentTarget){ return null; }$event.stopPropagation();return _vm.props.handleSearchChangePage('prev')}}},[_c('a-icon',{attrs:{"type":"left"}}),_vm._v(" 上一页 ")],1),_c('a-button',{attrs:{"disabled":_vm.props.searchPageConfig.asyncCount == 1
|
|
1374
1374
|
? !_vm.props.searchPageConfig.hasNextPage
|
|
1375
1375
|
: _vm.props.searchPageConfig.page >= _vm.props.searchPageConfig.total,"type":"dashed","block":""},on:{"click":function($event){if($event.target !== $event.currentTarget){ return null; }$event.stopPropagation();return _vm.props.handleSearchChangePage('next')}}},[_vm._v(" 下一页 "),_c('a-icon',{attrs:{"type":"right"}})],1)],1)}
|
|
@@ -1811,7 +1811,7 @@ var create = __webpack_require__("8aef");
|
|
|
1811
1811
|
name: 'select-opt-group',
|
|
1812
1812
|
extends: select_default.a.OptGroup
|
|
1813
1813
|
}));
|
|
1814
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
1814
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select/src/CustomSelect/index.vue?vue&type=template&id=c76cd218&scoped=true&
|
|
1815
1815
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('a-select',_vm._g(_vm._b({attrs:{"showSearch":true,"filterOption":false},on:{"search":_vm.debounceSearch},scopedSlots:_vm._u([{key:"dropdownRender",fn:function(menu){return _c('div',{},[(_vm.fetching)?_c('a-spin',{staticStyle:{"width":"100%","margin":"100px 0 100px"}}):[_c('v-nodes',{attrs:{"vnodes":menu}}),(_vm.PagerConfig.total > 1)?_c('selectPages',{attrs:{"searchPageConfig":_vm.PagerConfig,"handleSearchChangePage":_vm.ChangePage}}):_vm._e()]],2)}}])},'a-select',_vm.$attrs,false),_vm.$listeners),_vm._l((_vm.items),function(item,i){return _c('a-select-option',{key:item.value,attrs:{"value":item.value,"disabled":_vm.showTitle && i === 0}},[_c('div',{class:['custom-select-option', { 'title-line': i === 0 }]},_vm._l((item.showLabel),function(label,k){return _c('span',{key:(k + 9).toString(36) + k},[_vm._v(_vm._s(label))])}),0)])}),1)}
|
|
1816
1816
|
var staticRenderFns = []
|
|
1817
1817
|
|
|
@@ -2050,7 +2050,7 @@ var component = Object(componentNormalizer["a" /* default */])(
|
|
|
2050
2050
|
)
|
|
2051
2051
|
|
|
2052
2052
|
/* harmony default export */ var CustomSelect = (component.exports);
|
|
2053
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
2053
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select/src/TableSelect/index.vue?vue&type=template&id=747c0486&scoped=true&
|
|
2054
2054
|
var TableSelectvue_type_template_id_747c0486_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"table-select",on:{"mousedown":function($event){return _vm.mousedown($event)}}},[_c('a-select',_vm._g(_vm._b({ref:"selectBox",staticStyle:{"width":"100%"},attrs:{"showSearch":_vm.type === 'noEdit',"value":_vm.value,"not-found-content":_vm.fetching ? undefined : null,"mode":_vm.mode,"open":_vm.isOpen,"dropdownStyle":{ 'z-index': 100 },"getPopupContainer":function (triggerNode) {
|
|
2055
2055
|
return triggerNode.parentNode || _vm.document.body;
|
|
2056
2056
|
}},on:{"blur":function($event){_vm.isSearch = false},"focus":function($event){_vm.isSearch = true},"search":_vm.debounceSearch,"change":_vm.valueChange},scopedSlots:_vm._u([{key:"dropdownRender",fn:function(menu){return _c('div',{},[(_vm.fetching)?_c('div',{staticClass:"nodata-box"},[_c('a-spin',{attrs:{"slot":"notFoundContent"},slot:"notFoundContent"})],1):[_c('v-nodes',{attrs:{"vnodes":menu}}),_c('c-grid',{ref:"xTable",staticClass:"c-grid",attrs:{"border":"inner","resizable":"","auto-resize":"","show-overflow":"","show-header-overflow":"","highlight-hover-row":"","highlight-current-row":"","max-height":"300","align":"center","row-id":"id","columns":_vm.columns,"data":_vm.tableData,"radio-config":{ trigger: 'row', checkRowKey: _vm.defaultSelecteRow },"edit-config":{ trigger: 'click', mode: 'cell' },"edit-rules":_vm.rules},on:{"radio-change":_vm.radioChangeEvent,"cell-click":_vm.cellClick},scopedSlots:_vm._u([(_vm.type === 'edit')?{key:"operate",fn:function(ref){
|
package/es/select-label/index.js
CHANGED
|
@@ -282,7 +282,7 @@ module.exports = require("core-js/modules/es.array.filter.js");
|
|
|
282
282
|
|
|
283
283
|
"use strict";
|
|
284
284
|
|
|
285
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
285
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select-label/select-label.vue?vue&type=template&id=0d391bef&scoped=true&
|
|
286
286
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"label-page"},[_c('div',{staticClass:"tag-label"},[_vm._l((_vm.labelSelectedList),function(v){return _c('a-tag',{key:v.labelId,style:(_vm.handleLabelColor(v, true)),attrs:{"closable":_vm.item_is_edit},on:{"close":function($event){return _vm.closeTag(v)}}},[_vm._v(" "+_vm._s(v.labelName)+" ")])}),(!_vm.explicit)?_c('span',{directives:[{name:"show",rawName:"v-show",value:(_vm.item_is_edit),expression:"item_is_edit"}],staticClass:"form-add-icon form-add-icon-label",class:{ disable: _vm.isLock },on:{"click":_vm.handleEditLabel}},[_c('a-icon',{staticClass:"add-icon",attrs:{"type":"plus-circle"}}),_vm._v(" 新增 ")],1):_vm._e()],2),(_vm.sourceType == 'form' && _vm.commonLabelList.length && _vm.item_is_edit && !_vm.explicit)?_c('div',{staticClass:"common-label"},[_c('span',[_vm._v("常用")]),_vm._l((_vm.commonLabelList),function(item,i){return _c('a-checkable-tag',{key:i,style:(_vm.handleLabelColor(item)),on:{"change":function($event){return _vm.handleCommonLabelChange($event, item)}},model:{value:(item.isSelect),callback:function ($$v) {_vm.$set(item, "isSelect", $$v)},expression:"item.isSelect"}},[_vm._v(" "+_vm._s(item.labelName)+" ")])})],2):_vm._e(),(_vm.explicit && _vm.item_is_edit)?_c('div',[_c('labelFormContent',_vm._b({ref:"labelFormContent",attrs:{"explicit":_vm.explicit,"labelVisible":_vm.labelVisible,"item":_vm.item,"isEdit":_vm.isEdit,"isLock":_vm.isLock,"labelSelectedList":_vm.labelSelectedList,"isChangeWindow":_vm.isChangeWindow,"labelOptions":_vm.editLabelItem.labelObj,"sourceType":_vm.sourceType},on:{"updateLabelData":_vm.updateLabelData,"explicitOnChange":_vm.explicitOnChange}},'labelFormContent',_vm.$attrs,false))],1):_vm._e(),_c('a-modal',{staticClass:"label-form-modal-wrap modal-wrap standard-modal standard-modal-white",class:{ 'modal-screen': _vm.isChangeWindow },attrs:{"maskClosable":false,"destroyOnClose":true,"width":_vm.modalWidth,"cancelText":'取消',"okText":'确定',"bodyStyle":{
|
|
287
287
|
height: _vm.modalHeight,
|
|
288
288
|
maxHeight: _vm.maxHeight,
|
|
@@ -3661,7 +3661,7 @@ module.exports = /ipad|iphone|ipod/i.test(userAgent) && global.Pebble !== undefi
|
|
|
3661
3661
|
|
|
3662
3662
|
"use strict";
|
|
3663
3663
|
|
|
3664
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3664
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select-label/labelFormContent.vue?vue&type=template&id=3b3d070c&scoped=true&
|
|
3665
3665
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"labelFormContent-page"},[(_vm.allDisable)?_c('div',{staticClass:"label-disable-wrap"},[_c('p',{staticClass:"label-disable-title"},[_vm._v("无可选标签")]),_c('p',{staticClass:"label-disable-desc"},[_vm._v("请联系管理员进行标签管理设置")])]):_vm._e(),_c('div',{directives:[{name:"show",rawName:"v-show",value:(!_vm.allDisable),expression:"!allDisable"}],staticStyle:{"height":"100%"}},[_c('div',{staticClass:"label-wrap"},[(_vm.explicit)?_c('div',{staticClass:"explicit-continer"},[_c('a-tabs',{attrs:{"hideAdd":"","activeKey":_vm.labelAnchorKey,"type":"card","tab-position":"top"},on:{"change":_vm.labelAnchorTabsOnChange}},[_vm._l((_vm.labelConfig),function(v,i){return [_c('a-tab-pane',{key:v.curKey},[_c('span',{attrs:{"slot":"tab"},slot:"tab"},[_vm._v(" "+_vm._s(i)+" "),_c('span',{staticClass:"edit-label-type"},[_vm._v("("+_vm._s(v.multipleChoice == 2 ? '单' : '多')+"选)")])]),_c('div',{staticClass:"explicit-label-wrap left-label-wrap"},[_c('div',{staticClass:"edit-label-content"},[_c('labelClassify',{attrs:{"classifyItem":v,"handleLabelChange":_vm.handleLabelChange,"handleLabelColor":_vm.handleLabelColor,"handleDelLabel":_vm.handleDelLabel,"hanldeBlur":_vm.hanldeBlur,"handleAddLabel":_vm.handleAddLabel,"clearaddVal":_vm.clearaddVal,"isEdit":_vm.isEdit,"sourceType":_vm.sourceType}})],1)])])]})],2)],1):_c('div',{staticClass:"left-label-wrap",class:{
|
|
3666
3666
|
'total-left-label-wrap': _vm.isChangeWindow
|
|
3667
3667
|
}},[_c('a-tabs',{attrs:{"hideAdd":"","activeKey":_vm.labelAnchorKey,"tab-position":"left"},on:{"change":_vm.labelAnchorTabsOnChange}},[_vm._l((_vm.labelConfig),function(v,i){return [_c('a-tab-pane',{key:v.curKey},[_c('span',{attrs:{"slot":"tab"},slot:"tab"},[_vm._v(" "+_vm._s(i)+" ")])])]})],2)],1),(!_vm.explicit)?_c('div',{staticClass:"right-label-wrap",class:{
|
|
@@ -3804,7 +3804,7 @@ var create = __webpack_require__("8aef");
|
|
|
3804
3804
|
var vexutils_ = __webpack_require__("9715");
|
|
3805
3805
|
var vexutils_default = /*#__PURE__*/__webpack_require__.n(vexutils_);
|
|
3806
3806
|
|
|
3807
|
-
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"
|
|
3807
|
+
// CONCATENATED MODULE: ./node_modules/cache-loader/dist/cjs.js?{"cacheDirectory":"node_modules/.cache/vue-loader","cacheIdentifier":"3fd9a2cc-vue-loader-template"}!./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/cache-loader/dist/cjs.js??ref--0-0!./node_modules/vue-loader/lib??vue-loader-options!./packages/select-label/label-classify.vue?vue&type=template&id=a7ea64a2&scoped=true&
|
|
3808
3808
|
var label_classifyvue_type_template_id_a7ea64a2_scoped_true_render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"edit-content"},[(!_vm.itemList)?_c('div',{staticClass:"label-disable-wrap"},[_c('p',{staticClass:"label-disable-title"},[_vm._v("无可选标签")]),_c('p',{staticClass:"label-disable-desc"},[_vm._v("请联系管理员进行标签管理设置")])]):_c('div',{staticClass:"label-content"},[_vm._l((_vm.itemList),function(item){return _c('a-checkable-tag',{key:item.labelId,class:{ 'sys-label-tag': item.isPublic && item.isPublic == 1 },style:(_vm.handleLabelColor(item)),on:{"change":function($event){return _vm.handleLabelChange($event, item, _vm.classifyItem)}},model:{value:(item.isSelect),callback:function ($$v) {_vm.$set(item, "isSelect", $$v)},expression:"item.isSelect"}},[_c('a-tooltip',{attrs:{"placement":"topLeft"}},[_c('template',{slot:"title"},[_c('span',[_vm._v(_vm._s(item.labelName))])]),_vm._v(" "+_vm._s(item.labelName)+" ")],2),(_vm.sourceType != 'guage')?[_c('a-icon',{directives:[{name:"show",rawName:"v-show",value:(!(item.isPublic && item.isPublic == 1)),expression:"!(item.isPublic && item.isPublic == 1)"}],staticClass:"label-close",attrs:{"type":"close"},nativeOn:{"click":function($event){$event.stopPropagation();return _vm.handleDelLabel(item, _vm.classifyItem)}}})]:_vm._e()],2)}),(_vm.classifyItem.allowCreateByPersonal == 1 )?[(_vm.isEdit && !_vm.classifyItem.isNoAdd && _vm.sourceType != 'guage')?_c('a-button',{directives:[{name:"show",rawName:"v-show",value:(!_vm.classifyItem.showAdd),expression:"!classifyItem.showAdd"}],staticClass:"label-add",attrs:{"type":"dashed"},on:{"click":function($event){return _vm.handleAddLabel($event, _vm.classifyItem)}}},[_c('a-icon',{attrs:{"type":"plus"}}),_vm._v(" 标签 ")],1):_vm._e(),(_vm.isEdit && !_vm.classifyItem.isNoAdd && _vm.sourceType != 'guage')?_c('a-input',{directives:[{name:"show",rawName:"v-show",value:(_vm.classifyItem.showAdd),expression:"classifyItem.showAdd"}],staticClass:"label-add add-input",on:{"blur":function($event){return _vm.hanldeBlur($event, _vm.classifyItem)}},model:{value:(_vm.classifyItem.addVal),callback:function ($$v) {_vm.$set(_vm.classifyItem, "addVal", (typeof $$v === 'string'? $$v.trim(): $$v))},expression:"classifyItem.addVal"}},[_c('a-icon',{attrs:{"slot":"suffix","type":"close"},nativeOn:{"click":function($event){$event.stopPropagation();return _vm.clearaddVal($event, _vm.classifyItem)}},slot:"suffix"})],1):_vm._e()]:_vm._e()],2)])}
|
|
3809
3809
|
var label_classifyvue_type_template_id_a7ea64a2_scoped_true_staticRenderFns = []
|
|
3810
3810
|
|
|
@@ -4791,14 +4791,14 @@ var labelFormContent_component = Object(componentNormalizer["a" /* default */])(
|
|
|
4791
4791
|
|
|
4792
4792
|
"use strict";
|
|
4793
4793
|
__webpack_require__.r(__webpack_exports__);
|
|
4794
|
-
/* harmony import */ var
|
|
4795
|
-
/* harmony import */ var
|
|
4796
|
-
/* harmony import */ var
|
|
4797
|
-
/* harmony import */ var
|
|
4798
|
-
/* harmony import */ var
|
|
4799
|
-
/* harmony import */ var
|
|
4800
|
-
/* harmony import */ var
|
|
4801
|
-
/* harmony import */ var
|
|
4794
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__("e260");
|
|
4795
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_array_iterator_js__WEBPACK_IMPORTED_MODULE_0__);
|
|
4796
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__("e6cf");
|
|
4797
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_js__WEBPACK_IMPORTED_MODULE_1__);
|
|
4798
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__("cca6");
|
|
4799
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_object_assign_js__WEBPACK_IMPORTED_MODULE_2__);
|
|
4800
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__("a79d");
|
|
4801
|
+
/* harmony import */ var F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(F_project_crm_high_cnhis_design_vue_node_modules_core_js_modules_es_promise_finally_js__WEBPACK_IMPORTED_MODULE_3__);
|
|
4802
4802
|
/* harmony import */ var core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__("db0a");
|
|
4803
4803
|
/* harmony import */ var core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_function_name_js__WEBPACK_IMPORTED_MODULE_4__);
|
|
4804
4804
|
/* harmony import */ var _select_label__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__("1b4e");
|