centaline-data-driven 1.5.59 → 1.5.61
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/release-log.md +20 -0
- package/src/Form.vue +2 -2
- package/src/SearchList.vue +3 -1
- package/src/centaline/dynamicInputNumber/src/dynamicInputNumber.vue +3 -1
- package/src/centaline/dynamicMo/src/dynamicMo.vue +6 -5
- package/src/centaline/dynamicT/src/dynamicT.vue +28 -23
- package/src/main.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +26 -22
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/release-log.md
CHANGED
package/src/Form.vue
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="form-app" class="data-driven" style="width:100%;height:100%;overflow:auto">
|
|
3
3
|
<!-- <ct-form :source="formdata.content" :apiParam="apiParam"></ct-form> -->
|
|
4
|
-
<ct-form :api="'/
|
|
4
|
+
<ct-form :api="'/PropertyPublish/readDetail'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
|
|
15
|
+
publishID: "330436", actionType: 3
|
|
16
16
|
},
|
|
17
17
|
topHeight:10,
|
|
18
18
|
}
|
package/src/SearchList.vue
CHANGED
|
@@ -76,11 +76,13 @@
|
|
|
76
76
|
|
|
77
77
|
<!-- <ct-searchlist :searchConditionApi="'/CustomerImportList/getLayoutOfSearch'" :searchDataApi="'/CustomerImportList/getListOfSearchModel'"></ct-searchlist> -->
|
|
78
78
|
|
|
79
|
-
<ct-searchlist :searchConditionApi="'/CustomerList/getLayoutOfSearch'" :searchStatsApi="'/CustomerList/getListStats'" :searchDataApi="'/CustomerList/getListOfSearchModel'"></ct-searchlist>
|
|
79
|
+
<!-- <ct-searchlist :searchConditionApi="'/CustomerList/getLayoutOfSearch'" :searchStatsApi="'/CustomerList/getListStats'" :searchDataApi="'/CustomerList/getListOfSearchModel'"></ct-searchlist> -->
|
|
80
80
|
|
|
81
81
|
<!-- <ct-searchlist :searchConditionApi="'/CallTaskList/getLayoutOfSearch'" :searchDataApi="'/CallTaskList/getListOfSearchModel'"></ct-searchlist> -->
|
|
82
82
|
|
|
83
83
|
<!-- <ct-searchlist :searchConditionApi="'/RoleList/getLayoutOfSearch'" :searchStatsApi="'/RoleList/getListStats'" :searchDataApi="'/RoleList/getListOfSearchModel'"></ct-searchlist> -->
|
|
84
|
+
|
|
85
|
+
<ct-searchlist :searchConditionApi="'/TaskList/getLayoutOfSearch'" :searchStatsApi="'/TaskList/getListStats'" :searchDataApi="'/TaskList/getListOfSearchModel'"></ct-searchlist>
|
|
84
86
|
|
|
85
87
|
<ct-dialog-list></ct-dialog-list>
|
|
86
88
|
</div>
|
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
</div>
|
|
10
10
|
<div ref="cttags" class="el-select__tags" :style="{'max-width':tagsWidth + 'px'}" @click="clickHandle">
|
|
11
11
|
<span>
|
|
12
|
-
<span class="ct-mo-value-label">{{model.valueLabel}}</span>
|
|
12
|
+
<span class="ct-mo-value-label" v-if="model.valueLabel">{{model.valueLabel}}</span>
|
|
13
13
|
<span class="el-tag el-tag--info" :class="[model.attrs.size?'el-tag--'+model.attrs.size:'']" v-for="item in model.value">
|
|
14
|
-
<span class="el-select__tags-text">{{getOptionText(item)}}</span>
|
|
14
|
+
<span class="el-select__tags-text" style="margin-left: -6px;">{{getOptionText(item)}}</span>
|
|
15
15
|
<i v-if="!model.lock" class="el-tag__close el-icon-close" @click="deleteOption(item,$event)"></i>
|
|
16
16
|
</span>
|
|
17
17
|
</span>
|
|
@@ -361,7 +361,6 @@
|
|
|
361
361
|
cursor: pointer;
|
|
362
362
|
z-index: 2000;
|
|
363
363
|
}
|
|
364
|
-
|
|
365
364
|
.ct-mo .ct-input_inner::-webkit-input-placeholder {
|
|
366
365
|
color: var(--bagGray);
|
|
367
366
|
}
|
|
@@ -373,9 +372,11 @@
|
|
|
373
372
|
.ct-mo .ct-input_inner:-ms-input-placeholder {
|
|
374
373
|
color: var(--bagGray);
|
|
375
374
|
}
|
|
376
|
-
|
|
375
|
+
.ct-mo:hover .ct-input_inner{
|
|
376
|
+
border-color: var(--centalineBlue);
|
|
377
|
+
}
|
|
377
378
|
.ct-mo .ct-input_inner:hover {
|
|
378
|
-
border-color: var(--
|
|
379
|
+
border-color: var(--centalineBlue); /*border-color:#c0c4cc*/
|
|
379
380
|
}
|
|
380
381
|
|
|
381
382
|
.ct-mo.isfocus .ct-input_inner:hover {
|
|
@@ -8,9 +8,6 @@
|
|
|
8
8
|
<span>{{model.label}}</span>
|
|
9
9
|
</div>
|
|
10
10
|
|
|
11
|
-
<div ref="highlights" v-if="model.forbiddenWords" class="backdrop" :style="{width:forbiddenWordsWidth+'px',height:forbiddenWordsHeight+'px',left:forbiddenWordsLeft+'px',top:forbiddenWordsTop+'px'}">
|
|
12
|
-
<div class="highlights" v-html="forbiddenWordsValue"></div>
|
|
13
|
-
</div>
|
|
14
11
|
|
|
15
12
|
<el-popover v-if="model.autoFill && model.paramName" placement="bottom-start" v-model="showDrop" :trigger="'manual'" class="autoFill">
|
|
16
13
|
<div>
|
|
@@ -32,23 +29,26 @@
|
|
|
32
29
|
</el-input>
|
|
33
30
|
</el-popover>
|
|
34
31
|
|
|
35
|
-
<div v-else class="textarea-box" ref="input">
|
|
36
|
-
<
|
|
32
|
+
<div v-else class="textarea-box" ref="input">
|
|
33
|
+
<div ref="highlights" v-if="model.forbiddenWords" class="backdrop hoverColor" :style="{width:forbiddenWordsWidth+'px',height:forbiddenWordsHeight+'px',left:forbiddenWordsLeft+'px',top:forbiddenWordsTop+'px'}">
|
|
34
|
+
<div class="highlights" v-html="forbiddenWordsValue"></div>
|
|
35
|
+
</div>
|
|
36
|
+
<el-input ref="inputText" :title="model.lock?model.value:''" :type="model.rows==1 ? '':model.inputType" v-model="model.value" v-bind="model.attrs" @input="inputHandler($event);isShowClear();applyHighlights()" @change="changeHandler($event)"
|
|
37
37
|
class="ct-flex-div-input max-input" :class="[model.showLabel?'showLabel':'',!valid?'inputError':'',model.forbiddenWords?'inputHighlights':'']"
|
|
38
38
|
:disabled="model.lock" :rows="model.rows"
|
|
39
39
|
:readonly="model.readonly" :show-password="model.isPassword" autocomplete="on" :maxlength="model.max"
|
|
40
40
|
@keyup.enter.native="search()" style="z-index: 3;background-color: transparent;">
|
|
41
|
-
|
|
41
|
+
<span slot="suffix" v-if="model.unitName" class="ct-unitname" :class="showClear?'unitName-20':'unitName-0'">{{model.unitName}}</span>
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
<span slot="suffix" class="el-input__suffix el-input--mini is-show-Span" v-if="!model.isPassword&&showClear" :class="model.unitName?'ct-right-10':'ct-right-0'">
|
|
44
|
+
<span class="el-input__suffix-inner ct-close">
|
|
45
|
+
<i class="el-select__caret el-input__icon el-icon-circle-close is-show-close" @click="clearClickHandle($event)"></i>
|
|
46
|
+
</span>
|
|
46
47
|
</span>
|
|
47
|
-
</
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
<span v-if="!model.forbiddenWords" class="textarea-icon"></span>
|
|
48
|
+
</el-input>
|
|
49
|
+
<span v-if="this.minText" class="textarea-tip">{{this.minText}}</span>
|
|
50
|
+
<span v-if="model.showWordLimit" class="textarea-count">{{model.value.length}}/{{ model.max }}</span>
|
|
51
|
+
<span v-if="!model.forbiddenWords" class="textarea-icon"></span>
|
|
52
52
|
</div>
|
|
53
53
|
<!-- <span v-if="this.minText" :style="{left: minTextLeft+'px'}" style="color: #909399;background: #FFF;position: absolute;font-size: 12px;bottom: 5px;z-index: 3;">{{this.minText}}</span> -->
|
|
54
54
|
<span v-if="model.sufLabel" class="spanMessage ct-flex-div-span">{{model.sufLabel}}</span>
|
|
@@ -118,14 +118,18 @@
|
|
|
118
118
|
else{
|
|
119
119
|
this.minText='至少需要'+this.model.min+'个字';
|
|
120
120
|
}
|
|
121
|
-
this.minTextLeft=this.$refs.
|
|
121
|
+
// this.minTextLeft=this.$refs.inputText.$el.offsetLeft+10;
|
|
122
122
|
}
|
|
123
123
|
if(this.model.forbiddenWords){
|
|
124
|
-
|
|
125
|
-
this.
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
this
|
|
124
|
+
let inputTextWidth=this.$refs.inputText.$el.offsetWidth;
|
|
125
|
+
if(this.model.moreActionRouter && !this.model.lock){
|
|
126
|
+
inputTextWidth=inputTextWidth-42;
|
|
127
|
+
}
|
|
128
|
+
this.forbiddenWordsWidth=inputTextWidth;
|
|
129
|
+
this.forbiddenWordsHeight=this.$refs.inputText.$el.offsetHeight;
|
|
130
|
+
this.forbiddenWordsLeft=this.$refs.inputText.$el.offsetLeft;
|
|
131
|
+
this.forbiddenWordsTop=this.$refs.inputText.$el.offsetTop;
|
|
132
|
+
this.$refs.inputText.$el.addEventListener('scroll',this.scrollHandler,true);
|
|
129
133
|
}
|
|
130
134
|
},
|
|
131
135
|
methods: {
|
|
@@ -221,7 +225,7 @@
|
|
|
221
225
|
});
|
|
222
226
|
},
|
|
223
227
|
scrollHandler() {
|
|
224
|
-
var scrollTop = this.$refs.
|
|
228
|
+
var scrollTop = this.$refs.inputText.$el.children[0].scrollTop;
|
|
225
229
|
this.$refs.highlights.scrollTop=scrollTop;
|
|
226
230
|
},
|
|
227
231
|
applyHighlights() {
|
|
@@ -278,7 +282,8 @@
|
|
|
278
282
|
.backdrop {
|
|
279
283
|
position: absolute;
|
|
280
284
|
z-index: 1;
|
|
281
|
-
border: 1px solid var(--bagGray);
|
|
285
|
+
/* border: 1px solid var(--bagGray); */
|
|
286
|
+
border: none;
|
|
282
287
|
background-color: #fff;
|
|
283
288
|
pointer-events: none;
|
|
284
289
|
overflow-y: auto;
|
|
@@ -292,7 +297,7 @@
|
|
|
292
297
|
white-space: pre-wrap;
|
|
293
298
|
word-wrap: break-word;
|
|
294
299
|
color: transparent;
|
|
295
|
-
padding: 5px 15px 5px
|
|
300
|
+
padding: 5px 15px 5px 5px;
|
|
296
301
|
line-height: 1.5;
|
|
297
302
|
font-family: monospace;
|
|
298
303
|
}
|
package/src/main.js
CHANGED
|
@@ -58,7 +58,7 @@ Vue.use(centaline, {
|
|
|
58
58
|
return {
|
|
59
59
|
oldToken: 'aed9a1f3-c668-4d9e-aa6d-47ebe2b4eedb',
|
|
60
60
|
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjsOwjAQRO_iOiv5s1570zn-NBwiIuBIoUIkkUCIuxMEdPRMMRq95s1dzOsgWmHIccikIFr0gKQsMJYCURKxKdKYlHr-BH7UNz26yCFkByg7Aiw2A-tYwLDtEubgUibRiHo9i1aRRy-dtdSIab-8gdNKvcA618uu3v5x7rRMm3YkOZAfR6BtAWp_3LQHBNI8KHbkqlHi8QQAAP__.RrBgBqaFlp478oO3g5k_EEtjPt_o8qpJBkzgSP78Wa4',
|
|
61
|
-
authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
61
|
+
authObject: '{token:"aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjjEOwjAQBP_iOifl7PP5nC62k4ZHRAk2ElSIJBII8XeCgI6eKaaYZveu5nVSjUrS1hR7A7HTFig5C23vBEIUqYN2hoIM_gP80JcBkbxD7qD1LgIxGRCMApE4Up86E0NSlSrXs2qQvRHHtdWVOo7LOzjx_ArrXC67cvvHudNy3GZZ70eTyYI7TAYIfYZJMgJKJi5c6s3q8QQAAP__.ufrQpM9yM_OKbLBN3IOjInFco7uijiTIijl57f2jdYE"}',
|
|
62
62
|
|
|
63
63
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
64
64
|
EstateInfo: '{"estateId":"201806071109550C867184E8BCA56EC3","estateName":"C%E5%BE%A1%E6%9E%97%E5%B1%B1%E6%99%AF%E6%A5%BC"}',
|
|
@@ -32689,14 +32689,18 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
32689
32689
|
} else {
|
|
32690
32690
|
this.minText = '至少需要' + this.model.min + '个字';
|
|
32691
32691
|
}
|
|
32692
|
-
this.minTextLeft
|
|
32692
|
+
// this.minTextLeft=this.$refs.inputText.$el.offsetLeft+10;
|
|
32693
32693
|
}
|
|
32694
32694
|
if (this.model.forbiddenWords) {
|
|
32695
|
-
|
|
32696
|
-
this.
|
|
32697
|
-
|
|
32698
|
-
|
|
32699
|
-
this
|
|
32695
|
+
var inputTextWidth = this.$refs.inputText.$el.offsetWidth;
|
|
32696
|
+
if (this.model.moreActionRouter && !this.model.lock) {
|
|
32697
|
+
inputTextWidth = inputTextWidth - 42;
|
|
32698
|
+
}
|
|
32699
|
+
this.forbiddenWordsWidth = inputTextWidth;
|
|
32700
|
+
this.forbiddenWordsHeight = this.$refs.inputText.$el.offsetHeight;
|
|
32701
|
+
this.forbiddenWordsLeft = this.$refs.inputText.$el.offsetLeft;
|
|
32702
|
+
this.forbiddenWordsTop = this.$refs.inputText.$el.offsetTop;
|
|
32703
|
+
this.$refs.inputText.$el.addEventListener('scroll', this.scrollHandler, true);
|
|
32700
32704
|
}
|
|
32701
32705
|
},
|
|
32702
32706
|
|
|
@@ -32788,7 +32792,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
32788
32792
|
});
|
|
32789
32793
|
},
|
|
32790
32794
|
scrollHandler: function scrollHandler() {
|
|
32791
|
-
var scrollTop = this.$refs.
|
|
32795
|
+
var scrollTop = this.$refs.inputText.$el.children[0].scrollTop;
|
|
32792
32796
|
this.$refs.highlights.scrollTop = scrollTop;
|
|
32793
32797
|
},
|
|
32794
32798
|
applyHighlights: function applyHighlights() {
|
|
@@ -56281,7 +56285,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
56281
56285
|
"use strict";
|
|
56282
56286
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicT_vue__ = __webpack_require__(215);
|
|
56283
56287
|
/* unused harmony namespace reexport */
|
|
56284
|
-
/* harmony import */ var
|
|
56288
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_4f0ed72e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicT_vue__ = __webpack_require__(568);
|
|
56285
56289
|
function injectStyle (ssrContext) {
|
|
56286
56290
|
__webpack_require__(561)
|
|
56287
56291
|
}
|
|
@@ -56296,12 +56300,12 @@ var __vue_template_functional__ = false
|
|
|
56296
56300
|
/* styles */
|
|
56297
56301
|
var __vue_styles__ = injectStyle
|
|
56298
56302
|
/* scopeId */
|
|
56299
|
-
var __vue_scopeId__ = "data-v-
|
|
56303
|
+
var __vue_scopeId__ = "data-v-4f0ed72e"
|
|
56300
56304
|
/* moduleIdentifier (server only) */
|
|
56301
56305
|
var __vue_module_identifier__ = null
|
|
56302
56306
|
var Component = normalizeComponent(
|
|
56303
56307
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicT_vue__["a" /* default */],
|
|
56304
|
-
|
|
56308
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_4f0ed72e_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicT_vue__["a" /* default */],
|
|
56305
56309
|
__vue_template_functional__,
|
|
56306
56310
|
__vue_styles__,
|
|
56307
56311
|
__vue_scopeId__,
|
|
@@ -56322,7 +56326,7 @@ var content = __webpack_require__(562);
|
|
|
56322
56326
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
56323
56327
|
if(content.locals) module.exports = content.locals;
|
|
56324
56328
|
// add the styles to the DOM
|
|
56325
|
-
var update = __webpack_require__(2)("
|
|
56329
|
+
var update = __webpack_require__(2)("70071aec", content, true, {});
|
|
56326
56330
|
|
|
56327
56331
|
/***/ }),
|
|
56328
56332
|
/* 562 */
|
|
@@ -56334,7 +56338,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
56334
56338
|
|
|
56335
56339
|
|
|
56336
56340
|
// module
|
|
56337
|
-
exports.push([module.i, ".errorMessageMarginLeft[data-v-
|
|
56341
|
+
exports.push([module.i, ".errorMessageMarginLeft[data-v-4f0ed72e]{margin-left:108px}.hoverColor[data-v-4f0ed72e]:hover{border-color:var(--centalineBlue)}.is-show-Span[data-v-4f0ed72e]{display:none}.hoverColor:hover .is-show-Span[data-v-4f0ed72e]{display:inline-block}.backdrop[data-v-4f0ed72e]{position:absolute;z-index:1;border:none;background-color:#fff;pointer-events:none;overflow-y:auto;border-radius:4px;-webkit-transition:-webkit-transform 1s;transition:-webkit-transform 1s;transition:transform 1s;transition:transform 1s,-webkit-transform 1s}.highlights[data-v-4f0ed72e]{white-space:pre-wrap;word-wrap:break-word;color:transparent;padding:5px 15px 5px 5px;line-height:1.5;font-family:monospace}.autoFill[data-v-4f0ed72e]{width:100%}.textarea-box[data-v-4f0ed72e]{border:1px solid var(--bagGray);width:100%;position:relative;border-radius:4px}.textarea-box[data-v-4f0ed72e]:active,.textarea-box[data-v-4f0ed72e]:focus,.textarea-box[data-v-4f0ed72e]:hover{border-color:var(--centalineBlue)!important}.textarea-tip[data-v-4f0ed72e]{margin-left:5px;color:#606266}.textarea-count[data-v-4f0ed72e]{position:absolute;right:10px}.textarea-icon[data-v-4f0ed72e]{background:url(" + escape(__webpack_require__(563)) + ")no-repeat;background-size:100% 100%;width:12px;height:12px;display:inline-block;position:absolute;right:0;bottom:0}", ""]);
|
|
56338
56342
|
|
|
56339
56343
|
// exports
|
|
56340
56344
|
|
|
@@ -56424,7 +56428,7 @@ var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
|
56424
56428
|
/***/ (function(module, __webpack_exports__, __webpack_require__) {
|
|
56425
56429
|
|
|
56426
56430
|
"use strict";
|
|
56427
|
-
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[_c('div',{staticStyle:{"width":"100%"},style:({ display: (_vm.model.inputType === 'textarea' ? 'block' : 'flex') })},[(_vm.model !== null)?_c('div',{staticClass:"ct-text ct-flex-div max-flex-div hoverColor",class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':'',_vm.model.attrs.size?'ct-font-size-'+_vm.model.attrs.size:''],staticStyle:{"flex":"1"},on:{"mouseover":_vm.mouseOverHandle,"mouseout":_vm.mouseOutHandle}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend field-label-div max-input-group",class:[_vm.model.labelClass]},[_c('span',[_vm._v(_vm._s(_vm.model.label))])]):_vm._e(),_vm._v(" "),(_vm.model.
|
|
56431
|
+
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[_c('div',{staticStyle:{"width":"100%"},style:({ display: (_vm.model.inputType === 'textarea' ? 'block' : 'flex') })},[(_vm.model !== null)?_c('div',{staticClass:"ct-text ct-flex-div max-flex-div hoverColor",class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':'',_vm.model.attrs.size?'ct-font-size-'+_vm.model.attrs.size:''],staticStyle:{"flex":"1"},on:{"mouseover":_vm.mouseOverHandle,"mouseout":_vm.mouseOutHandle}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend field-label-div max-input-group",class:[_vm.model.labelClass]},[_c('span',[_vm._v(_vm._s(_vm.model.label))])]):_vm._e(),_vm._v(" "),(_vm.model.autoFill && _vm.model.paramName)?_c('el-popover',{staticClass:"autoFill",attrs:{"placement":"bottom-start","trigger":'manual'},model:{value:(_vm.showDrop),callback:function ($$v) {_vm.showDrop=$$v},expression:"showDrop"}},[_c('div',[_c('ctSelectOptionVertical',{attrs:{"model":_vm.model},on:{"click":function($event){_vm.selectOption($event)}}})],1),_vm._v(" "),_c('el-input',_vm._b({ref:"input",staticClass:"ct-flex-div-input max-input",class:[_vm.model.showLabel?'showLabel':'',!_vm.valid?'inputError':'',_vm.model.forbiddenWords?'inputHighlights':''],staticStyle:{"z-index":"3","background-color":"transparent"},attrs:{"slot":"reference","title":_vm.model.lock?_vm.model.value:'',"type":_vm.model.inputType,"disabled":_vm.model.lock,"rows":_vm.model.rows,"resize":_vm.model.forbiddenWords?'none':'vertical',"readonly":_vm.model.readonly,"show-password":_vm.model.isPassword,"autocomplete":"on","maxlength":_vm.model.max,"show-word-limit":_vm.model.showWordLimit},on:{"input":function($event){_vm.inputHandler($event);_vm.showDropHandle();_vm.isShowClear();_vm.applyHighlights()},"change":function($event){_vm.changeHandler($event)}},nativeOn:{"keyup":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }_vm.search()}},slot:"reference",model:{value:(_vm.model.value),callback:function ($$v) {_vm.$set(_vm.model, "value", $$v)},expression:"model.value"}},'el-input',_vm.model.attrs,false),[(_vm.model.unitName)?_c('span',{staticClass:"ct-unitname",class:_vm.showClear?'unitName-20':'unitName-0',attrs:{"slot":"suffix"},slot:"suffix"},[_vm._v(_vm._s(_vm.model.unitName))]):_vm._e(),_vm._v(" "),(!_vm.model.isPassword&&_vm.showClear)?_c('span',{staticClass:"el-input__suffix el-input--mini is-show-Span",class:_vm.model.unitName?'ct-right-10':'ct-right-0',attrs:{"slot":"suffix"},slot:"suffix"},[_c('span',{staticClass:"el-input__suffix-inner ct-close"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-circle-close is-show-close",on:{"click":function($event){_vm.clearClickHandle($event)}}})])]):_vm._e()])],1):_c('div',{ref:"input",staticClass:"textarea-box"},[(_vm.model.forbiddenWords)?_c('div',{ref:"highlights",staticClass:"backdrop hoverColor",style:({width:_vm.forbiddenWordsWidth+'px',height:_vm.forbiddenWordsHeight+'px',left:_vm.forbiddenWordsLeft+'px',top:_vm.forbiddenWordsTop+'px'})},[_c('div',{staticClass:"highlights",domProps:{"innerHTML":_vm._s(_vm.forbiddenWordsValue)}})]):_vm._e(),_vm._v(" "),_c('el-input',_vm._b({ref:"inputText",staticClass:"ct-flex-div-input max-input",class:[_vm.model.showLabel?'showLabel':'',!_vm.valid?'inputError':'',_vm.model.forbiddenWords?'inputHighlights':''],staticStyle:{"z-index":"3","background-color":"transparent"},attrs:{"title":_vm.model.lock?_vm.model.value:'',"type":_vm.model.rows==1 ? '':_vm.model.inputType,"disabled":_vm.model.lock,"rows":_vm.model.rows,"readonly":_vm.model.readonly,"show-password":_vm.model.isPassword,"autocomplete":"on","maxlength":_vm.model.max},on:{"input":function($event){_vm.inputHandler($event);_vm.isShowClear();_vm.applyHighlights()},"change":function($event){_vm.changeHandler($event)}},nativeOn:{"keyup":function($event){if(!('button' in $event)&&_vm._k($event.keyCode,"enter",13,$event.key,"Enter")){ return null; }_vm.search()}},model:{value:(_vm.model.value),callback:function ($$v) {_vm.$set(_vm.model, "value", $$v)},expression:"model.value"}},'el-input',_vm.model.attrs,false),[(_vm.model.unitName)?_c('span',{staticClass:"ct-unitname",class:_vm.showClear?'unitName-20':'unitName-0',attrs:{"slot":"suffix"},slot:"suffix"},[_vm._v(_vm._s(_vm.model.unitName))]):_vm._e(),_vm._v(" "),(!_vm.model.isPassword&&_vm.showClear)?_c('span',{staticClass:"el-input__suffix el-input--mini is-show-Span",class:_vm.model.unitName?'ct-right-10':'ct-right-0',attrs:{"slot":"suffix"},slot:"suffix"},[_c('span',{staticClass:"el-input__suffix-inner ct-close"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-circle-close is-show-close",on:{"click":function($event){_vm.clearClickHandle($event)}}})])]):_vm._e()]),_vm._v(" "),(this.minText)?_c('span',{staticClass:"textarea-tip"},[_vm._v(_vm._s(this.minText))]):_vm._e(),_vm._v(" "),(_vm.model.showWordLimit)?_c('span',{staticClass:"textarea-count"},[_vm._v(_vm._s(_vm.model.value.length)+"/"+_vm._s(_vm.model.max))]):_vm._e(),_vm._v(" "),(!_vm.model.forbiddenWords)?_c('span',{staticClass:"textarea-icon"}):_vm._e()],1),_vm._v(" "),(_vm.model.sufLabel)?_c('span',{staticClass:"spanMessage ct-flex-div-span"},[_vm._v(_vm._s(_vm.model.sufLabel))]):_vm._e(),_vm._v(" "),(!_vm.model.lock && _vm.model.paramName && !_vm.model.autoFill)?_c('ctQuickInputSos',{staticClass:"ct-flex-div-span",attrs:{"pn":_vm.model.paramName,"action":_vm.api,"flagNew":true,"textValue":_vm.model.value},on:{"click":_vm.quickSelect}}):_vm._e(),_vm._v(" "),(_vm.model.moreActionRouter && !_vm.model.lock)?_c('div',[(_vm.model.moreActionRouter.imgUrl)?_c('img',{staticClass:"ct-tablecurrencyImg ct-tablecurrencyItem",attrs:{"src":_vm.model.moreActionRouter.imgUrl,"title":_vm.model.moreActionRouter.label},on:{"click":function($event){_vm.popupSearchListHandle($event)}}}):_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary"},on:{"click":function($event){_vm.popupSearchListHandle($event)}}},[_vm._v("\n "+_vm._s(_vm.model.moreActionRouter.label)+"\n ")])],1):_vm._e()],1):_vm._e(),_vm._v(" "),_c('transition',{staticClass:"ct-flex-div-span",attrs:{"name":"el-fade-in"}},[_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"errorMessage",class:{ 'errorMessageMarginLeft': _vm.model.inputType === 'textarea' }},[_vm._v("\n "+_vm._s(_vm.validMessage)+"\n ")])])],1)])}
|
|
56428
56432
|
var staticRenderFns = []
|
|
56429
56433
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
56430
56434
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|
|
@@ -56978,7 +56982,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
56978
56982
|
"use strict";
|
|
56979
56983
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicInputNumber_vue__ = __webpack_require__(248);
|
|
56980
56984
|
/* unused harmony namespace reexport */
|
|
56981
|
-
/* harmony import */ var
|
|
56985
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f081264e_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicInputNumber_vue__ = __webpack_require__(594);
|
|
56982
56986
|
function injectStyle (ssrContext) {
|
|
56983
56987
|
__webpack_require__(592)
|
|
56984
56988
|
}
|
|
@@ -56998,7 +57002,7 @@ var __vue_scopeId__ = null
|
|
|
56998
57002
|
var __vue_module_identifier__ = null
|
|
56999
57003
|
var Component = normalizeComponent(
|
|
57000
57004
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicInputNumber_vue__["a" /* default */],
|
|
57001
|
-
|
|
57005
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_f081264e_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicInputNumber_vue__["a" /* default */],
|
|
57002
57006
|
__vue_template_functional__,
|
|
57003
57007
|
__vue_styles__,
|
|
57004
57008
|
__vue_scopeId__,
|
|
@@ -57019,7 +57023,7 @@ var content = __webpack_require__(593);
|
|
|
57019
57023
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
57020
57024
|
if(content.locals) module.exports = content.locals;
|
|
57021
57025
|
// add the styles to the DOM
|
|
57022
|
-
var update = __webpack_require__(2)("
|
|
57026
|
+
var update = __webpack_require__(2)("1f4d02c5", content, true, {});
|
|
57023
57027
|
|
|
57024
57028
|
/***/ }),
|
|
57025
57029
|
/* 593 */
|
|
@@ -57030,7 +57034,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
57030
57034
|
|
|
57031
57035
|
|
|
57032
57036
|
// module
|
|
57033
|
-
exports.push([module.i, ".ct-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid var(--bagGray);-webkit-box-sizing:border-box;box-sizing:border-box;color:#606266;display:inline-block;height:26px;outline:0;padding:0 15px 0 5px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.ct-inputNumber{font-size:12px}.ct-inputNumber-lock .ct-input__inner{background-color:#f5f7fa}.ct-form .ct-inputNumber .inputNumbe-line-feed{word-wrap:break-word;white-space:normal}", ""]);
|
|
57037
|
+
exports.push([module.i, ".ct-input__inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid var(--bagGray);-webkit-box-sizing:border-box;box-sizing:border-box;color:#606266;display:inline-block;height:26px;outline:0;padding:0 15px 0 5px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%}.ct-inputNumber .ct-input__inner:hover{border-color:var(--centalineBlue)}.ct-inputNumber{font-size:12px}.ct-inputNumber-lock .ct-input__inner{background-color:#f5f7fa}.ct-form .ct-inputNumber .inputNumbe-line-feed{word-wrap:break-word;white-space:normal}", ""]);
|
|
57034
57038
|
|
|
57035
57039
|
// exports
|
|
57036
57040
|
|
|
@@ -57279,7 +57283,7 @@ if (typeof window !== 'undefined' && window.Vue) {
|
|
|
57279
57283
|
"use strict";
|
|
57280
57284
|
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicMo_vue__ = __webpack_require__(251);
|
|
57281
57285
|
/* unused harmony namespace reexport */
|
|
57282
|
-
/* harmony import */ var
|
|
57286
|
+
/* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_e7d1179e_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicMo_vue__ = __webpack_require__(610);
|
|
57283
57287
|
function injectStyle (ssrContext) {
|
|
57284
57288
|
__webpack_require__(608)
|
|
57285
57289
|
}
|
|
@@ -57299,7 +57303,7 @@ var __vue_scopeId__ = null
|
|
|
57299
57303
|
var __vue_module_identifier__ = null
|
|
57300
57304
|
var Component = normalizeComponent(
|
|
57301
57305
|
__WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicMo_vue__["a" /* default */],
|
|
57302
|
-
|
|
57306
|
+
__WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_e7d1179e_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicMo_vue__["a" /* default */],
|
|
57303
57307
|
__vue_template_functional__,
|
|
57304
57308
|
__vue_styles__,
|
|
57305
57309
|
__vue_scopeId__,
|
|
@@ -57320,7 +57324,7 @@ var content = __webpack_require__(609);
|
|
|
57320
57324
|
if(typeof content === 'string') content = [[module.i, content, '']];
|
|
57321
57325
|
if(content.locals) module.exports = content.locals;
|
|
57322
57326
|
// add the styles to the DOM
|
|
57323
|
-
var update = __webpack_require__(2)("
|
|
57327
|
+
var update = __webpack_require__(2)("19e5bd0e", content, true, {});
|
|
57324
57328
|
|
|
57325
57329
|
/***/ }),
|
|
57326
57330
|
/* 609 */
|
|
@@ -57331,7 +57335,7 @@ exports = module.exports = __webpack_require__(1)(false);
|
|
|
57331
57335
|
|
|
57332
57336
|
|
|
57333
57337
|
// module
|
|
57334
|
-
exports.push([module.i, ".ct-mo{font-size:14px;position:relative}.ct-mo .ct-input_inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid var(--bagGray);-webkit-box-sizing:border-box;box-sizing:border-box;color:transparent;display:inline-block;font-size:inherit;line-height:26px;outline:0;padding:0 15px 0 5px;padding-right:30px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%;cursor:pointer;z-index:2000}.ct-mo .ct-input_inner::-webkit-input-placeholder{color:var(--bagGray)}.ct-mo .ct-input_inner::-moz-placeholder{color:var(--bagGray)}.ct-mo .ct-input_inner:-ms-input-placeholder{color:var(--bagGray)}.ct-mo .ct-input_inner:hover
|
|
57338
|
+
exports.push([module.i, ".ct-mo{font-size:14px;position:relative}.ct-mo .ct-input_inner{-webkit-appearance:none;background-color:#fff;background-image:none;border-radius:4px;border:1px solid var(--bagGray);-webkit-box-sizing:border-box;box-sizing:border-box;color:transparent;display:inline-block;font-size:inherit;line-height:26px;outline:0;padding:0 15px 0 5px;padding-right:30px;-webkit-transition:border-color .2s cubic-bezier(.645,.045,.355,1);transition:border-color .2s cubic-bezier(.645,.045,.355,1);width:100%;cursor:pointer;z-index:2000}.ct-mo .ct-input_inner::-webkit-input-placeholder{color:var(--bagGray)}.ct-mo .ct-input_inner::-moz-placeholder{color:var(--bagGray)}.ct-mo .ct-input_inner:-ms-input-placeholder{color:var(--bagGray)}.ct-mo .ct-input_inner:hover,.ct-mo.isfocus .ct-input_inner,.ct-mo.isfocus .ct-input_inner:hover,.ct-mo:hover .ct-input_inner{border-color:var(--centalineBlue)}.ct-mo .el-input__suffix{right:10px;cursor:pointer}.ct-mo .el-select__caret{color:#bbb;font-size:inherit;-webkit-transition:-webkit-transform .3s;transition:-webkit-transform .3s;transition:transform .3s;transition:transform .3s,-webkit-transform .3s;-webkit-transform:rotate(180deg);transform:rotate(180deg);cursor:pointer}.ct-mo .is-reverse{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.ct-mo .el-tag{-webkit-box-sizing:border-box;box-sizing:border-box;border-color:transparent;margin:2px 0 2px 6px;background-color:#f0f2f5}.ct-option{margin:5px;cursor:pointer}.ct-mo .ct-close>.el-select__caret.is-show-close:hover{color:var(--centalineMediumGray)}.ct-mo-value-label{padding-left:15px}.h26{height:26px}", ""]);
|
|
57335
57339
|
|
|
57336
57340
|
// exports
|
|
57337
57341
|
|
|
@@ -57342,7 +57346,7 @@ exports.push([module.i, ".ct-mo{font-size:14px;position:relative}.ct-mo .ct-inpu
|
|
|
57342
57346
|
|
|
57343
57347
|
"use strict";
|
|
57344
57348
|
var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[_c('div',{staticClass:"ct-mo",staticStyle:{"width":"100%","display":"flex"}},[_c('div',{class:[(_vm.focus || _vm.showDrop)?'isfocus':'',_vm.model.attrs.size?'ct-mo-'+_vm.model.attrs.size:''
|
|
57345
|
-
],staticStyle:{"flex":"1","display":"flex","margin-right":"5px"},on:{"mouseover":_vm.mouseOverHandle,"mouseout":_vm.mouseOutHandle}},[_c('div',{class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':''],staticStyle:{"flex":"1","position":"relative"}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend",class:[_vm.model.labelClass]},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")]):_vm._e(),_vm._v(" "),_c('div',{ref:"cttags",staticClass:"el-select__tags",style:({'max-width':_vm.tagsWidth + 'px'}),on:{"click":_vm.clickHandle}},[_c('span',[_c('span',{staticClass:"ct-mo-value-label"},[_vm._v(_vm._s(_vm.model.valueLabel))]),_vm._v(" "),_vm._l((_vm.model.value),function(item){return _c('span',{staticClass:"el-tag el-tag--info",class:[_vm.model.attrs.size?'el-tag--'+_vm.model.attrs.size:'']},[_c('span',{staticClass:"el-select__tags-text"},[_vm._v(_vm._s(_vm.getOptionText(item)))]),_vm._v(" "),(!_vm.model.lock)?_c('i',{staticClass:"el-tag__close el-icon-close",on:{"click":function($event){_vm.deleteOption(item,$event)}}}):_vm._e()])})],2)]),_vm._v(" "),_c('el-popover',{ref:"pop",class:[_vm.model.showLabel?'showLabel':''],attrs:{"placement":"bottom-start","trigger":(!_vm.model.paramName || _vm.model.lock) ? 'manual' : 'click',"disabled":_vm.model.lock},model:{value:(_vm.showDrop),callback:function ($$v) {_vm.showDrop=$$v},expression:"showDrop"}},[_c('div',[_c('ct-select-option',{attrs:{"model":_vm.model,"optionRowCount":_vm.optionRowCount},on:{"click":function($event){_vm.selectOption($event)}}})],1),_vm._v(" "),_c('input',_vm._b({ref:"ct-input",class:_vm.model.lock ? 'ct-is-disabled' : 'ct-input_inner',style:({height:_vm.inputHeight + 'px','line-height':_vm.inputLineHeight + 'px'}),attrs:{"slot":"reference","placeholder":_vm.tagsPlaceholder,"disabled":_vm.model.lock},on:{"focus":_vm.focusHandle,"blur":_vm.blurHandle,"click":_vm.clickHandle},slot:"reference"},'input',_vm.model.attrs,false))]),_vm._v(" "),(!_vm.model.lock)?_c('span',{staticClass:"el-input__suffix",class:[_vm.model.attrs.size?'el-input--'+_vm.model.attrs.size:''],on:{"click":_vm.clickHandle}},[(_vm.showClear === false)?_c('span',{staticClass:"el-input__suffix-inner"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-arrow-up",class:{'is-reverse':_vm.showDrop}})]):_vm._e(),_vm._v(" "),(_vm.showClear === true)?_c('span',{staticClass:"el-input__suffix-inner ct-close"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-circle-close is-show-close",on:{"click":function($event){_vm.clearClickHandle($event)}}})]):_vm._e()]):_vm._e()],1),_vm._v(" "),_c('transition',{attrs:{"name":"el-fade-in"}},[_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"errorMessage"},[_vm._v("\n "+_vm._s(_vm.validMessage)+"\n ")])])],1),_vm._v(" "),(_vm.model.popupSearchListType === 1 && !_vm.model.lock)?_c('div',[(!_vm.model.moreActionBtnName)?_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary","icon":"el-icon-search"},on:{"click":_vm.popupSearchListHandle}}):_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary"},on:{"click":_vm.popupSearchListHandle}},[_vm._v(_vm._s(_vm.model.moreActionBtnName))])],1):_vm._e()])])}
|
|
57349
|
+
],staticStyle:{"flex":"1","display":"flex","margin-right":"5px"},on:{"mouseover":_vm.mouseOverHandle,"mouseout":_vm.mouseOutHandle}},[_c('div',{class:[_vm.model.showLabel?'el-input-group el-input-group--prepend':'',!_vm.valid?'inputError':''],staticStyle:{"flex":"1","position":"relative"}},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend",class:[_vm.model.labelClass]},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")]):_vm._e(),_vm._v(" "),_c('div',{ref:"cttags",staticClass:"el-select__tags",style:({'max-width':_vm.tagsWidth + 'px'}),on:{"click":_vm.clickHandle}},[_c('span',[(_vm.model.valueLabel)?_c('span',{staticClass:"ct-mo-value-label"},[_vm._v(_vm._s(_vm.model.valueLabel))]):_vm._e(),_vm._v(" "),_vm._l((_vm.model.value),function(item){return _c('span',{staticClass:"el-tag el-tag--info",class:[_vm.model.attrs.size?'el-tag--'+_vm.model.attrs.size:'']},[_c('span',{staticClass:"el-select__tags-text",staticStyle:{"margin-left":"-6px"}},[_vm._v(_vm._s(_vm.getOptionText(item)))]),_vm._v(" "),(!_vm.model.lock)?_c('i',{staticClass:"el-tag__close el-icon-close",on:{"click":function($event){_vm.deleteOption(item,$event)}}}):_vm._e()])})],2)]),_vm._v(" "),_c('el-popover',{ref:"pop",class:[_vm.model.showLabel?'showLabel':''],attrs:{"placement":"bottom-start","trigger":(!_vm.model.paramName || _vm.model.lock) ? 'manual' : 'click',"disabled":_vm.model.lock},model:{value:(_vm.showDrop),callback:function ($$v) {_vm.showDrop=$$v},expression:"showDrop"}},[_c('div',[_c('ct-select-option',{attrs:{"model":_vm.model,"optionRowCount":_vm.optionRowCount},on:{"click":function($event){_vm.selectOption($event)}}})],1),_vm._v(" "),_c('input',_vm._b({ref:"ct-input",class:_vm.model.lock ? 'ct-is-disabled' : 'ct-input_inner',style:({height:_vm.inputHeight + 'px','line-height':_vm.inputLineHeight + 'px'}),attrs:{"slot":"reference","placeholder":_vm.tagsPlaceholder,"disabled":_vm.model.lock},on:{"focus":_vm.focusHandle,"blur":_vm.blurHandle,"click":_vm.clickHandle},slot:"reference"},'input',_vm.model.attrs,false))]),_vm._v(" "),(!_vm.model.lock)?_c('span',{staticClass:"el-input__suffix",class:[_vm.model.attrs.size?'el-input--'+_vm.model.attrs.size:''],on:{"click":_vm.clickHandle}},[(_vm.showClear === false)?_c('span',{staticClass:"el-input__suffix-inner"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-arrow-up",class:{'is-reverse':_vm.showDrop}})]):_vm._e(),_vm._v(" "),(_vm.showClear === true)?_c('span',{staticClass:"el-input__suffix-inner ct-close"},[_c('i',{staticClass:"el-select__caret el-input__icon el-icon-circle-close is-show-close",on:{"click":function($event){_vm.clearClickHandle($event)}}})]):_vm._e()]):_vm._e()],1),_vm._v(" "),_c('transition',{attrs:{"name":"el-fade-in"}},[_c('span',{directives:[{name:"show",rawName:"v-show",value:(!_vm.valid),expression:"!valid"}],staticClass:"errorMessage"},[_vm._v("\n "+_vm._s(_vm.validMessage)+"\n ")])])],1),_vm._v(" "),(_vm.model.popupSearchListType === 1 && !_vm.model.lock)?_c('div',[(!_vm.model.moreActionBtnName)?_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary","icon":"el-icon-search"},on:{"click":_vm.popupSearchListHandle}}):_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary"},on:{"click":_vm.popupSearchListHandle}},[_vm._v(_vm._s(_vm.model.moreActionBtnName))])],1):_vm._e()])])}
|
|
57346
57350
|
var staticRenderFns = []
|
|
57347
57351
|
var esExports = { render: render, staticRenderFns: staticRenderFns }
|
|
57348
57352
|
/* harmony default export */ __webpack_exports__["a"] = (esExports);
|