centaline-data-driven 1.6.17 → 1.6.18

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.6.17",
3
+ "version": "1.6.18",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/release-log.md CHANGED
@@ -1,3 +1,12 @@
1
+ # v1.6.18
2
+ 2024-08-16
3
+
4
+ 优化
5
+
6
+ 经纬度获取控件优化验证
7
+
8
+ 表单列表锁定样式调整为不显示按钮
9
+
1
10
  # v1.6.17
2
11
  2024-08-14
3
12
  新增
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="'/estatemanage/estate/getEstateInfo'" :apiParam="apiParam" :topHeight="topHeight" :documentHeight="'600px'"></ct-form>
4
+ <ct-form :api="'/salematter/UrgentResponsiblePerson/getUrgentLayoutOfBrowse'" :apiParam="apiParam" :topHeight="topHeight" :documentHeight="'600px'"></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
- "actionType":2
15
+ nurpId: "1fa72659-fa66-4dd0-8f4d-b15c011a4676", alloctNoticeType: "转组别", actionType: 1
16
16
  },
17
17
  topHeight:10,
18
18
  }
@@ -31,10 +31,11 @@
31
31
 
32
32
  <!-- CCES -->
33
33
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/agentuserlist/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/agentuserlist/getList'"></ct-searchlist> -->
34
- <ct-searchlist :apiParam="para" :searchConditionApi="'/contractmanage/ContractList/getLayoutOfSearch'" :searchDataApi="'/contractmanage/ContractList/getList'"></ct-searchlist>
34
+ <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/contractmanage/ContractList/getLayoutOfSearch'" :searchDataApi="'/contractmanage/ContractList/getList'"></ct-searchlist> -->
35
35
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/sunexpensemanage/sunexpenserecordlist/getLayoutOfSearch'" :searchDataApi="'/sunexpensemanage/sunexpenserecordlist/getList'"></ct-searchlist> -->
36
36
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/customermanage/ProjectCustomerList/getLayoutOfSearch'" :searchDataApi="'/customermanage/ProjectCustomerList/getList'"></ct-searchlist> -->
37
37
  <!-- <ct-searchlist :apiParam="para" :searchConditionApi="'/workwxmanage/WorkWXApplicationList/getLayoutOfSearch'" :searchDataApi="'/workwxmanage/WorkWXApplicationList/getList'"></ct-searchlist> -->
38
+ <ct-searchlist :apiParam="para" :searchConditionApi="'/salemattersmanage/UrgentResponsiblePersonList/getLayoutOfSearch'" :searchDataApi="'/salemattersmanage/UrgentResponsiblePersonList/getList'"></ct-searchlist>
38
39
  <!-- CCES -->
39
40
 
40
41
  <!-- <ct-searchlist :apiParam="para"
@@ -1,23 +1,26 @@
1
1
  <template>
2
- <div class="ct-form-list" v-focus="foucus" :class="{'tableDisabled':model.tableDisabled}">
2
+ <div class="ct-form-list" v-focus="foucus">
3
+ <!-- :class="{'tableDisabled':model.tableDisabled}" -->
3
4
  <div v-if="model.title" class="list-title">
4
5
  <h5>{{model.title}}</h5>
5
6
  </div>
6
7
  <div v-else-if="model.create || (model.selectRouter && model.selectRouter.id) || model.toolButtonsShow.length>0" class="list-title"></div>
7
8
  <div class="list-button">
8
- <ul>
9
- <li v-for="(v,i) in model.toolButtonsShow" >
10
- <component :is="v.is" :vmodel="v" :parentModel="model" @click="toolButtonsClick" @importComplete="importComplete" @change="toolButtonsChangeHandler(v,$event)"></component>
11
- </li>
12
- <li v-if="model.selectRouter!==null">
13
- <component :is="model.selectRouter.is" :vmodel="model.selectRouter" @click="popupSearchListHandle" ></component>
14
- </li>
15
- <li v-if="model.create" >
16
- <el-button :disabled="model.disabled" type="success" class="max-btn-add" style="width: auto;" size="mini" icon="el-icon-circle-plus-outline" @click="addRow">
17
- {{model.createText}}
18
- </el-button>
19
- </li>
20
- </ul>
9
+ <template v-if="!model.tableDisabled">
10
+ <ul>
11
+ <li v-for="(v,i) in model.toolButtonsShow" >
12
+ <component :is="v.is" :vmodel="v" :parentModel="model" @click="toolButtonsClick" @importComplete="importComplete" @change="toolButtonsChangeHandler(v,$event)"></component>
13
+ </li>
14
+ <li v-if="model.selectRouter!==null">
15
+ <component :is="model.selectRouter.is" :vmodel="model.selectRouter" @click="popupSearchListHandle" ></component>
16
+ </li>
17
+ <li v-if="model.create" >
18
+ <el-button :disabled="model.disabled" type="success" class="max-btn-add" style="width: auto;" size="mini" icon="el-icon-circle-plus-outline" @click="addRow">
19
+ {{model.createText}}
20
+ </el-button>
21
+ </li>
22
+ </ul>
23
+ </template>
21
24
  </div>
22
25
 
23
26
  <div id="listTable">
@@ -54,20 +57,22 @@
54
57
  <!--操作列-->
55
58
  <el-table-column label="操作" v-if="model.rows[0].edit || model.rows[0].delete || (model.buttons.length > 0 && model.buttonsShow.length > 0)" :fixed="fixedButtons" :width="'100%'" :render-header="renderHeader" :min-width="tableColumnWith">
56
59
  <template slot-scope="scope">
57
- <span v-if="scope.row.edit || scope.row.isSet" class="el-tag el-tag--info el-tag--mini" style="cursor: pointer;" @click="saveRow(scope.row,scope.$index,true)">
58
- {{scope.row.isSet?'保存':"修改"}}
59
- </span>
60
- <span v-if="scope.row.delete && !scope.row.isSet" class="el-tag el-tag--danger el-tag--mini" style="cursor: pointer;" @click="deleteRow(scope.$index, scope.row.$sourceIndex)">
61
- 删除
62
- </span>
63
- <span v-else-if="scope.row.isSet" class="el-tag el-tag--mini" style="cursor: pointer;" @click="saveRow(scope.row,scope.$index,false)">
64
- 取消
65
- </span>
66
- <span v-for="(v,i) in model.buttons"
67
- v-if="!scope.row.isSet && v.show && ( !v.rightField || !scope.row[v.rightField] || scope.row[v.rightField].value == 1 )"
68
- class="el-tag el-tag--info el-tag--mini" style="cursor: pointer;" @click="buttonClick(scope.row, v)">
69
- {{v.label}}
70
- </span>
60
+ <template v-if="!model.tableDisabled">
61
+ <span v-if="scope.row.edit || scope.row.isSet" class="el-tag el-tag--info el-tag--mini" style="cursor: pointer;" @click="saveRow(scope.row,scope.$index,true)">
62
+ {{scope.row.isSet?'保存':"修改"}}
63
+ </span>
64
+ <span v-if="scope.row.delete && !scope.row.isSet" class="el-tag el-tag--danger el-tag--mini" style="cursor: pointer;" @click="deleteRow(scope.$index, scope.row.$sourceIndex)">
65
+ 删除
66
+ </span>
67
+ <span v-else-if="scope.row.isSet" class="el-tag el-tag--mini" style="cursor: pointer;" @click="saveRow(scope.row,scope.$index,false)">
68
+ 取消
69
+ </span>
70
+ <span v-for="(v,i) in model.buttons"
71
+ v-if="!scope.row.isSet && v.show && ( !v.rightField || !scope.row[v.rightField] || scope.row[v.rightField].value == 1 )"
72
+ class="el-tag el-tag--info el-tag--mini" style="cursor: pointer;" @click="buttonClick(scope.row, v)">
73
+ {{v.label}}
74
+ </span>
75
+ </template>
71
76
  </template>
72
77
  </el-table-column>
73
78
  </el-table>
@@ -9,9 +9,9 @@
9
9
  </div>
10
10
  <div style="display:inline-flex;padding-left:0px;" v-bind="model.attrs" :class="model.locked ? 'ct-is-disabled' : ''">
11
11
  <input style="text-align:left;width:100%" class="el-location-input hoverColor" :placeholder="model.attrs.placeholder1"
12
- v-model="model.value" @change="changeHandler($event)"/>
12
+ v-model="model.value" @change="changeModel($event)"/>
13
13
  <input style="text-align:left;width:100%;margin-left:5px;" class="el-location-input hoverColor" :placeholder="model.attrs.placeholder2"
14
- v-model="model.value1" @change="changeHandler($event);"/>
14
+ v-model="model.value1" @change="changeModel($event);"/>
15
15
  </div>
16
16
  <div v-if="model.moreActionRouter" style="display: inline-block;margin-left: 5px;">
17
17
  <img v-if="model.moreActionRouter.imgUrl" class="ct-tablecurrencyImg ct-tablecurrencyItem"
@@ -61,6 +61,9 @@
61
61
  }
62
62
  });
63
63
  },
64
+ changeModel(event) {
65
+ this.changeHandler(event);
66
+ }
64
67
  }
65
68
  }
66
69
  </script>
@@ -206,7 +206,9 @@ const Base = function (source) {
206
206
  || this.type===Enum.ControlType.MultiLineLabel){
207
207
  }
208
208
  else if(this.isScreen){
209
- if(this.type===Enum.ControlType.DateRange || this.type===Enum.ControlType.DateTimeRange){
209
+ if(this.type===Enum.ControlType.DateRange
210
+ || this.type===Enum.ControlType.DateTimeRange
211
+ || this.type===Enum.ControlType.Location){
210
212
  this.value = this.defaultFormat[0];
211
213
  this.value1 = this.defaultFormat[1];
212
214
  }
@@ -240,7 +242,9 @@ const Base = function (source) {
240
242
  }
241
243
  }
242
244
  else{
243
- if(this.type===Enum.ControlType.DateRange || this.type===Enum.ControlType.DateTimeRange){
245
+ if(this.type===Enum.ControlType.DateRange
246
+ || this.type===Enum.ControlType.DateTimeRange
247
+ || this.type===Enum.ControlType.Location){
244
248
  this.value = '';
245
249
  this.value1 = '';
246
250
  }
@@ -1,10 +1,30 @@
1
1
  import base from '../../index';
2
2
  import Base from './Base';
3
+ import valid from '../../../validate/index';
3
4
  const Location = function (source,moreActionRouter) {
4
5
  var rtn = {
5
6
  moreActionRouter: moreActionRouter,
7
+ getFormObj() {
8
+ var rtnFormObj = {};
9
+ Object.defineProperty(rtnFormObj, source.fieldName1, {
10
+ get: function () {
11
+ return source.code1;
12
+ },
13
+ enumerable: true,
14
+ configurable: true
15
+ });
16
+ Object.defineProperty(rtnFormObj, source.fieldName2, {
17
+ get: function () {
18
+ return source.code2;
19
+ },
20
+ enumerable: true,
21
+ configurable: true
22
+ });
23
+ return rtnFormObj;
24
+ },
6
25
  };
7
26
  rtn = base.copy(Base(source), rtn);
27
+ rtn = base.copy(rtn, valid.Init(rtn));
8
28
  return rtn;
9
29
  };
10
30
 
@@ -155,6 +155,7 @@ const SearchScreen = function (source, callBack, screenPara, prevParam) {
155
155
  continue;
156
156
  }
157
157
  if((source.content.fields[key].controlType===Enum.ControlType.DateRange
158
+ || source.content.fields[key].controlType===Enum.ControlType.Location
158
159
  || source.content.fields[key].controlType===Enum.ControlType.DateTimeRange)
159
160
  && source.content.fields[key].code2==undefined){
160
161
  source.content.fields[key].code2='';
@@ -148,9 +148,9 @@ export default {
148
148
  validExcute() {
149
149
  var self = this;
150
150
  self.validMessage="";
151
-
151
+
152
152
  //通用校验
153
- if (typeof this.model.validating === "function") {
153
+ if (typeof this.model.validating === "function") {
154
154
  let validtemp = this.model.validating();
155
155
  self.valid = validtemp.valid;
156
156
  if (!self.valid) {
@@ -278,6 +278,7 @@ const valid = {
278
278
  case Enum.ControlType.DateRange:
279
279
  case Enum.ControlType.DateTimeRange:
280
280
  case Enum.ControlType.ComboBoxWithTextBox:
281
+ case Enum.ControlType.Location:
281
282
  rtnValidate.push(valid.requiredArea);
282
283
  break;
283
284
  case Enum.ControlType.Address:
@@ -341,11 +342,11 @@ const valid = {
341
342
  break;
342
343
  case Enum.ControlType.File:
343
344
  case Enum.ControlType.SliceUpload:
344
- rtnValidate.push(valid.requiredFile);
345
+ rtnValidate.push(valid.requiredFile);
345
346
  break;
346
347
  case Enum.ControlType.PhotoSelect:
347
348
  rtnValidate.push(valid.requiredPhoto);
348
- break;
349
+ break;
349
350
  default:
350
351
  rtnValidate.push(valid.required);
351
352
  break;
package/src/main.js CHANGED
@@ -27,6 +27,7 @@ Vue.use(centaline, {
27
27
  // baseUrl: "https://ccesutest.centaline.com.cn/service-api/v1/form/router",
28
28
  // baseUrl: "http://10.88.22.69:8080/api/",
29
29
  // baseUrl: "http://10.88.22.42:9999/service-api/",
30
+ baseUrl: "http://10.1.245.111:38908/service-api/",
30
31
  // baseUrl: "http://10.1.245.111:31574/service-api/",
31
32
  // baseUrl: "https://tjcptest.centaline.com.cn/",
32
33
  // baseUrl: "https://shccai.centaline.com.cn/api/",
@@ -69,8 +70,8 @@ Vue.use(centaline, {
69
70
  EstateInfo: '{"estateId":"1c581b7c-d629-4670-8a7c-6d622860bc58","estateName":"0%E9%87%91%E9%9A%85%E4%BA%91%E7%AD%91%E5%A4%A9%E6%B4%A5","estDeptPath":"009.014.001.001"}',
70
71
  estateId: '',
71
72
 
72
- authObject: '{"currentEstate":{"estateId":"2209201708108B8F50AB530A49EAA858","estateName":"U%E7%89%88%E6%B5%8B%E8%AF%95%E6%A5%BC%E7%9B%98%E7%82%B9%E4%BD%8D","estDeptPath":"009.001.001"},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"VOLqzn","time":1723600566575,"sign":"32507ac205de93f235f893f5362882a9","systemSource":"CCESU","empNo":"csgl2","empId":"202110201430497BB5FE89123A054CCA"}',
73
- AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjlkYmI0MWU2LThiNTMtNDIzMy1hNDdhLTkyMDZmODhjMTE4YyJ9.8OCB3SpvsX1OfMGyQnJ_wynzDRpR2MU7zNvogYTy_iG6shK2KzXfZ9hZLxJXgR7l4P_RS7flcmS6Admp7r2-xg',
73
+ authObject: '{"currentEstate":{"estateId":"2021012114303422B4EEE3B843911CD0","estateName":"0%E6%81%92%E8%A3%95%E6%B7%B1%E5%9C%B3%E6%B9%BE0","estDeptPath":"001.007.001"},"platform":1,"osVersion":"","clientVersion":"","machineCode":"eeb8e2fc88b5bcbc2e4f297777142537","token":"","random":"vHBZlA","time":1723713874993,"sign":"d38f285069b890a31043567989ec15c0","systemSource":"CCESU","empNo":"ceshics0","empId":"201804231035296D8646770E1ECD32CD"}',
74
+ AuthorizationCode:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImQ3MTJkNWMyLTdiYmUtNGZiMC05Y2ViLTE3ZjM3N2UwODMwOSJ9.4O6r0mtfsBbBLwiW6FQ0QSMbce7oEQRDnKrRP5SypazRGLODIZF5V7qJMMi60I-mdD-OcX-lS9PnykEn6-Gs_w',
74
75
  };
75
76
  },
76
77
  // 请求完成事件,可判断是否登录过期执行响应操作
@@ -6769,7 +6769,7 @@ var Base = function Base(source) {
6769
6769
  var _this = this;
6770
6770
 
6771
6771
  if (this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.Hidden || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.Label || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.MultiLineLabel) {} else if (this.isScreen) {
6772
- if (this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateRange || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateTimeRange) {
6772
+ if (this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateRange || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateTimeRange || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.Location) {
6773
6773
  this.value = this.defaultFormat[0];
6774
6774
  this.value1 = this.defaultFormat[1];
6775
6775
  } else if (this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.CheckBoxList) {
@@ -6798,7 +6798,7 @@ var Base = function Base(source) {
6798
6798
  this.text = this.defaultText;
6799
6799
  }
6800
6800
  } else {
6801
- if (this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateRange || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateTimeRange) {
6801
+ if (this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateRange || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.DateTimeRange || this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.Location) {
6802
6802
  this.value = '';
6803
6803
  this.value1 = '';
6804
6804
  } else if (this.type === __WEBPACK_IMPORTED_MODULE_2__ctl_lib_Enum__["default"].ControlType.CheckBoxList) {
@@ -8892,6 +8892,7 @@ var valid = {
8892
8892
  case __WEBPACK_IMPORTED_MODULE_1__loader_src_ctl_lib_Enum__["default"].ControlType.DateRange:
8893
8893
  case __WEBPACK_IMPORTED_MODULE_1__loader_src_ctl_lib_Enum__["default"].ControlType.DateTimeRange:
8894
8894
  case __WEBPACK_IMPORTED_MODULE_1__loader_src_ctl_lib_Enum__["default"].ControlType.ComboBoxWithTextBox:
8895
+ case __WEBPACK_IMPORTED_MODULE_1__loader_src_ctl_lib_Enum__["default"].ControlType.Location:
8895
8896
  rtnValidate.push(valid.requiredArea);
8896
8897
  break;
8897
8898
  case __WEBPACK_IMPORTED_MODULE_1__loader_src_ctl_lib_Enum__["default"].ControlType.Address:
@@ -16833,15 +16834,39 @@ var Steps = function Steps(source) {
16833
16834
 
16834
16835
  "use strict";
16835
16836
  Object.defineProperty(__webpack_exports__, "__esModule", { value: true });
16836
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__index__ = __webpack_require__(5);
16837
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__Base__ = __webpack_require__(6);
16837
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_define_property__ = __webpack_require__(15);
16838
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_define_property___default = __webpack_require__.n(__WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_define_property__);
16839
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__index__ = __webpack_require__(5);
16840
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_2__Base__ = __webpack_require__(6);
16841
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_3__validate_index__ = __webpack_require__(10);
16842
+
16843
+
16838
16844
 
16839
16845
 
16840
16846
  var Location = function Location(source, moreActionRouter) {
16841
16847
  var rtn = {
16842
- moreActionRouter: moreActionRouter
16848
+ moreActionRouter: moreActionRouter,
16849
+ getFormObj: function getFormObj() {
16850
+ var rtnFormObj = {};
16851
+ __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_define_property___default()(rtnFormObj, source.fieldName1, {
16852
+ get: function get() {
16853
+ return source.code1;
16854
+ },
16855
+ enumerable: true,
16856
+ configurable: true
16857
+ });
16858
+ __WEBPACK_IMPORTED_MODULE_0_babel_runtime_core_js_object_define_property___default()(rtnFormObj, source.fieldName2, {
16859
+ get: function get() {
16860
+ return source.code2;
16861
+ },
16862
+ enumerable: true,
16863
+ configurable: true
16864
+ });
16865
+ return rtnFormObj;
16866
+ }
16843
16867
  };
16844
- rtn = __WEBPACK_IMPORTED_MODULE_0__index__["default"].copy(Object(__WEBPACK_IMPORTED_MODULE_1__Base__["default"])(source), rtn);
16868
+ rtn = __WEBPACK_IMPORTED_MODULE_1__index__["default"].copy(Object(__WEBPACK_IMPORTED_MODULE_2__Base__["default"])(source), rtn);
16869
+ rtn = __WEBPACK_IMPORTED_MODULE_1__index__["default"].copy(rtn, __WEBPACK_IMPORTED_MODULE_3__validate_index__["default"].Init(rtn));
16845
16870
  return rtn;
16846
16871
  };
16847
16872
 
@@ -30365,6 +30390,11 @@ module.exports = g;
30365
30390
  //
30366
30391
  //
30367
30392
  //
30393
+ //
30394
+ //
30395
+ //
30396
+ //
30397
+ //
30368
30398
 
30369
30399
  //Form内表格
30370
30400
  var ctSpan = { //临时的span组件对象,用于vue双向绑定,强制更新
@@ -56497,7 +56527,7 @@ var SearchScreen = function SearchScreen(source, callBack, screenPara, prevParam
56497
56527
  if (source.content.fields[key].controlType === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ControlType.From) {
56498
56528
  continue;
56499
56529
  }
56500
- if ((source.content.fields[key].controlType === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ControlType.DateRange || source.content.fields[key].controlType === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ControlType.DateTimeRange) && source.content.fields[key].code2 == undefined) {
56530
+ if ((source.content.fields[key].controlType === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ControlType.DateRange || source.content.fields[key].controlType === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ControlType.Location || source.content.fields[key].controlType === __WEBPACK_IMPORTED_MODULE_4__lib_Enum__["default"].ControlType.DateTimeRange) && source.content.fields[key].code2 == undefined) {
56501
56531
  source.content.fields[key].code2 = '';
56502
56532
  }
56503
56533
  var field = source.content.fields[key];
@@ -63411,6 +63441,9 @@ var AppContainer = function AppContainer(source, apiParam, callBack) {
63411
63441
  self.model.value1 = data.lat;
63412
63442
  }
63413
63443
  });
63444
+ },
63445
+ changeModel: function changeModel(event) {
63446
+ this.changeHandler(event);
63414
63447
  }
63415
63448
  }
63416
63449
  });
@@ -74345,7 +74378,7 @@ exports.push([module.i, ".el-collapse{border-top:none}.ct-collapse-item-title .e
74345
74378
  "use strict";
74346
74379
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFormListTable_vue__ = __webpack_require__(187);
74347
74380
  /* unused harmony namespace reexport */
74348
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_c8da9662_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFormListTable_vue__ = __webpack_require__(614);
74381
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_8cd8d01a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFormListTable_vue__ = __webpack_require__(614);
74349
74382
  function injectStyle (ssrContext) {
74350
74383
  __webpack_require__(612)
74351
74384
  }
@@ -74365,7 +74398,7 @@ var __vue_scopeId__ = null
74365
74398
  var __vue_module_identifier__ = null
74366
74399
  var Component = normalizeComponent(
74367
74400
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicFormListTable_vue__["a" /* default */],
74368
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_c8da9662_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFormListTable_vue__["a" /* default */],
74401
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_8cd8d01a_hasScoped_false_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicFormListTable_vue__["a" /* default */],
74369
74402
  __vue_template_functional__,
74370
74403
  __vue_styles__,
74371
74404
  __vue_scopeId__,
@@ -74386,7 +74419,7 @@ var content = __webpack_require__(613);
74386
74419
  if(typeof content === 'string') content = [[module.i, content, '']];
74387
74420
  if(content.locals) module.exports = content.locals;
74388
74421
  // add the styles to the DOM
74389
- var update = __webpack_require__(3)("2fb6b997", content, true, {});
74422
+ var update = __webpack_require__(3)("7f2d2d32", content, true, {});
74390
74423
 
74391
74424
  /***/ }),
74392
74425
  /* 613 */
@@ -74407,7 +74440,7 @@ exports.push([module.i, ".el-table-add-row{margin-top:10px;width:100%;height:34p
74407
74440
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
74408
74441
 
74409
74442
  "use strict";
74410
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:"focus",rawName:"v-focus",value:(_vm.foucus),expression:"foucus"}],staticClass:"ct-form-list",class:{'tableDisabled':_vm.model.tableDisabled}},[(_vm.model.title)?_c('div',{staticClass:"list-title"},[_c('h5',[_vm._v(_vm._s(_vm.model.title))])]):(_vm.model.create || (_vm.model.selectRouter && _vm.model.selectRouter.id) || _vm.model.toolButtonsShow.length>0)?_c('div',{staticClass:"list-title"}):_vm._e(),_vm._v(" "),_c('div',{staticClass:"list-button"},[_c('ul',[_vm._l((_vm.model.toolButtonsShow),function(v,i){return _c('li',[_c(v.is,{tag:"component",attrs:{"vmodel":v,"parentModel":_vm.model},on:{"click":_vm.toolButtonsClick,"importComplete":_vm.importComplete,"change":function($event){_vm.toolButtonsChangeHandler(v,$event)}}})],1)}),_vm._v(" "),(_vm.model.selectRouter!==null)?_c('li',[_c(_vm.model.selectRouter.is,{tag:"component",attrs:{"vmodel":_vm.model.selectRouter},on:{"click":_vm.popupSearchListHandle}})],1):_vm._e(),_vm._v(" "),(_vm.model.create)?_c('li',[_c('el-button',{staticClass:"max-btn-add",staticStyle:{"width":"auto"},attrs:{"disabled":_vm.model.disabled,"type":"success","size":"mini","icon":"el-icon-circle-plus-outline"},on:{"click":_vm.addRow}},[_vm._v("\n "+_vm._s(_vm.model.createText)+"\n ")])],1):_vm._e()],2)]),_vm._v(" "),_c('div',{attrs:{"id":"listTable"}},[_c('el-row',[_c('el-col',{attrs:{"span":24}},[_c('el-table',{staticClass:"max-table--border",staticStyle:{"width":"100%"},attrs:{"size":"mini","data":_vm.model.tableData,"border":"","highlight-current-row":"","show-summary":_vm.model.showSummary,"summary-method":_vm.getSummaries}},[_vm._l((_vm.model.rows[0].field),function(v,i){return (v.show !== false && v.type!==13)?_c('el-table-column',{key:i,attrs:{"prop":v.id,"label":v.label,"width":v.width,"fixed":_vm.model.frozenColumns.includes(v.id),"render-header":_vm.renderHeader,"min-width":_vm.tableColumnWith},scopedSlots:_vm._u([{key:"header",fn:function(scope){return [_c('div',{class:[{'ct-table-required':v.required&&_vm.model.rows[0].edit&& _vm.model.rows[0].delete&&!_vm.model.tableDisabled},_vm.getHeadClass(v)]},[_vm._v("\n "+_vm._s(v.label)+"\n ")])]}},{key:"default",fn:function(scope){return [(scope.row.isSet)?_c('span',[_c(_vm.model.currentRow.data[v.id].locked || _vm.model.currentRow.data[v.id].is!==v.is?_vm.model.currentRow.data[v.id].is:v.is,{key:_vm.model.currentRow.data[v.id].rowKey+_vm.itemKey,ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":_vm.model.currentRow.data[v.id],"api":_vm.model.OptApi},on:{"change":function($event){_vm.changeHandler(_vm.model.currentRow.data[v.id], _vm.model.currentRow.data.$sourceIndex)},"input":function($event){_vm.inputHandler(_vm.model.currentRow.data[v.id], _vm.model.currentRow.data.$sourceIndex)}}})],1):(v.is=='ct-sensitiveeye')?_c('span',[_c(v.is,{key:_vm.itemKey,ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":scope.row[v.id],"vrowmodel":scope.row,"api":_vm.model.OptApi}})],1):(v.router)?_c('span',{class:'cell',staticStyle:{"display":"flex"}},[_c('ct-tablecurrency',{attrs:{"router":v.router,"colValue":scope.row[v.id].code1,"rowData":scope.row},on:{"click":_vm.rolRouterClickHandler}})],1):_c('ct-span',{key:scope.row[v.id].rowKey+_vm.itemKey,ref:"FieldsLabel",refInFor:true,attrs:{"vmodel":scope.row[v.id],"rowNum":scope.row.$sourceIndex,"rowData":scope.row}})]}}])}):_vm._e()}),_vm._v(" "),(_vm.model.rows[0].edit || _vm.model.rows[0].delete || (_vm.model.buttons.length > 0 && _vm.model.buttonsShow.length > 0))?_c('el-table-column',{attrs:{"label":"操作","fixed":_vm.fixedButtons,"width":'100%',"render-header":_vm.renderHeader,"min-width":_vm.tableColumnWith},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(scope.row.edit || scope.row.isSet)?_c('span',{staticClass:"el-tag el-tag--info el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.saveRow(scope.row,scope.$index,true)}}},[_vm._v("\n "+_vm._s(scope.row.isSet?'保存':"修改")+"\n ")]):_vm._e(),_vm._v(" "),(scope.row.delete && !scope.row.isSet)?_c('span',{staticClass:"el-tag el-tag--danger el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.deleteRow(scope.$index, scope.row.$sourceIndex)}}},[_vm._v("\n 删除\n ")]):(scope.row.isSet)?_c('span',{staticClass:"el-tag el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.saveRow(scope.row,scope.$index,false)}}},[_vm._v("\n 取消\n ")]):_vm._e(),_vm._v(" "),_vm._l((_vm.model.buttons),function(v,i){return (!scope.row.isSet && v.show && ( !v.rightField || !scope.row[v.rightField] || scope.row[v.rightField].value == 1 ))?_c('span',{staticClass:"el-tag el-tag--info el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.buttonClick(scope.row, v)}}},[_vm._v("\n "+_vm._s(v.label)+"\n ")]):_vm._e()})]}}])}):_vm._e()],2)],1)],1)],1),_vm._v(" "),(_vm.model.description)?_c('div',{domProps:{"innerHTML":_vm._s(_vm.model.description)}}):_vm._e()])}
74443
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{directives:[{name:"focus",rawName:"v-focus",value:(_vm.foucus),expression:"foucus"}],staticClass:"ct-form-list"},[(_vm.model.title)?_c('div',{staticClass:"list-title"},[_c('h5',[_vm._v(_vm._s(_vm.model.title))])]):(_vm.model.create || (_vm.model.selectRouter && _vm.model.selectRouter.id) || _vm.model.toolButtonsShow.length>0)?_c('div',{staticClass:"list-title"}):_vm._e(),_vm._v(" "),_c('div',{staticClass:"list-button"},[(!_vm.model.tableDisabled)?[_c('ul',[_vm._l((_vm.model.toolButtonsShow),function(v,i){return _c('li',[_c(v.is,{tag:"component",attrs:{"vmodel":v,"parentModel":_vm.model},on:{"click":_vm.toolButtonsClick,"importComplete":_vm.importComplete,"change":function($event){_vm.toolButtonsChangeHandler(v,$event)}}})],1)}),_vm._v(" "),(_vm.model.selectRouter!==null)?_c('li',[_c(_vm.model.selectRouter.is,{tag:"component",attrs:{"vmodel":_vm.model.selectRouter},on:{"click":_vm.popupSearchListHandle}})],1):_vm._e(),_vm._v(" "),(_vm.model.create)?_c('li',[_c('el-button',{staticClass:"max-btn-add",staticStyle:{"width":"auto"},attrs:{"disabled":_vm.model.disabled,"type":"success","size":"mini","icon":"el-icon-circle-plus-outline"},on:{"click":_vm.addRow}},[_vm._v("\n "+_vm._s(_vm.model.createText)+"\n ")])],1):_vm._e()],2)]:_vm._e()],2),_vm._v(" "),_c('div',{attrs:{"id":"listTable"}},[_c('el-row',[_c('el-col',{attrs:{"span":24}},[_c('el-table',{staticClass:"max-table--border",staticStyle:{"width":"100%"},attrs:{"size":"mini","data":_vm.model.tableData,"border":"","highlight-current-row":"","show-summary":_vm.model.showSummary,"summary-method":_vm.getSummaries}},[_vm._l((_vm.model.rows[0].field),function(v,i){return (v.show !== false && v.type!==13)?_c('el-table-column',{key:i,attrs:{"prop":v.id,"label":v.label,"width":v.width,"fixed":_vm.model.frozenColumns.includes(v.id),"render-header":_vm.renderHeader,"min-width":_vm.tableColumnWith},scopedSlots:_vm._u([{key:"header",fn:function(scope){return [_c('div',{class:[{'ct-table-required':v.required&&_vm.model.rows[0].edit&& _vm.model.rows[0].delete&&!_vm.model.tableDisabled},_vm.getHeadClass(v)]},[_vm._v("\n "+_vm._s(v.label)+"\n ")])]}},{key:"default",fn:function(scope){return [(scope.row.isSet)?_c('span',[_c(_vm.model.currentRow.data[v.id].locked || _vm.model.currentRow.data[v.id].is!==v.is?_vm.model.currentRow.data[v.id].is:v.is,{key:_vm.model.currentRow.data[v.id].rowKey+_vm.itemKey,ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":_vm.model.currentRow.data[v.id],"api":_vm.model.OptApi},on:{"change":function($event){_vm.changeHandler(_vm.model.currentRow.data[v.id], _vm.model.currentRow.data.$sourceIndex)},"input":function($event){_vm.inputHandler(_vm.model.currentRow.data[v.id], _vm.model.currentRow.data.$sourceIndex)}}})],1):(v.is=='ct-sensitiveeye')?_c('span',[_c(v.is,{key:_vm.itemKey,ref:"Fields",refInFor:true,tag:"component",attrs:{"vmodel":scope.row[v.id],"vrowmodel":scope.row,"api":_vm.model.OptApi}})],1):(v.router)?_c('span',{class:'cell',staticStyle:{"display":"flex"}},[_c('ct-tablecurrency',{attrs:{"router":v.router,"colValue":scope.row[v.id].code1,"rowData":scope.row},on:{"click":_vm.rolRouterClickHandler}})],1):_c('ct-span',{key:scope.row[v.id].rowKey+_vm.itemKey,ref:"FieldsLabel",refInFor:true,attrs:{"vmodel":scope.row[v.id],"rowNum":scope.row.$sourceIndex,"rowData":scope.row}})]}}])}):_vm._e()}),_vm._v(" "),(_vm.model.rows[0].edit || _vm.model.rows[0].delete || (_vm.model.buttons.length > 0 && _vm.model.buttonsShow.length > 0))?_c('el-table-column',{attrs:{"label":"操作","fixed":_vm.fixedButtons,"width":'100%',"render-header":_vm.renderHeader,"min-width":_vm.tableColumnWith},scopedSlots:_vm._u([{key:"default",fn:function(scope){return [(!_vm.model.tableDisabled)?[(scope.row.edit || scope.row.isSet)?_c('span',{staticClass:"el-tag el-tag--info el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.saveRow(scope.row,scope.$index,true)}}},[_vm._v("\n "+_vm._s(scope.row.isSet?'保存':"修改")+"\n ")]):_vm._e(),_vm._v(" "),(scope.row.delete && !scope.row.isSet)?_c('span',{staticClass:"el-tag el-tag--danger el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.deleteRow(scope.$index, scope.row.$sourceIndex)}}},[_vm._v("\n 删除\n ")]):(scope.row.isSet)?_c('span',{staticClass:"el-tag el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.saveRow(scope.row,scope.$index,false)}}},[_vm._v("\n 取消\n ")]):_vm._e(),_vm._v(" "),_vm._l((_vm.model.buttons),function(v,i){return (!scope.row.isSet && v.show && ( !v.rightField || !scope.row[v.rightField] || scope.row[v.rightField].value == 1 ))?_c('span',{staticClass:"el-tag el-tag--info el-tag--mini",staticStyle:{"cursor":"pointer"},on:{"click":function($event){_vm.buttonClick(scope.row, v)}}},[_vm._v("\n "+_vm._s(v.label)+"\n ")]):_vm._e()})]:_vm._e()]}}])}):_vm._e()],2)],1)],1)],1),_vm._v(" "),(_vm.model.description)?_c('div',{domProps:{"innerHTML":_vm._s(_vm.model.description)}}):_vm._e()])}
74411
74444
  var staticRenderFns = []
74412
74445
  var esExports = { render: render, staticRenderFns: staticRenderFns }
74413
74446
  /* harmony default export */ __webpack_exports__["a"] = (esExports);
@@ -81580,7 +81613,7 @@ if (typeof window !== 'undefined' && window.Vue) {
81580
81613
  "use strict";
81581
81614
  /* harmony import */ var __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicLocation_vue__ = __webpack_require__(398);
81582
81615
  /* unused harmony namespace reexport */
81583
- /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_55920f01_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicLocation_vue__ = __webpack_require__(786);
81616
+ /* harmony import */ var __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_702aa6f4_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicLocation_vue__ = __webpack_require__(786);
81584
81617
  function injectStyle (ssrContext) {
81585
81618
  __webpack_require__(784)
81586
81619
  }
@@ -81595,12 +81628,12 @@ var __vue_template_functional__ = false
81595
81628
  /* styles */
81596
81629
  var __vue_styles__ = injectStyle
81597
81630
  /* scopeId */
81598
- var __vue_scopeId__ = "data-v-55920f01"
81631
+ var __vue_scopeId__ = "data-v-702aa6f4"
81599
81632
  /* moduleIdentifier (server only) */
81600
81633
  var __vue_module_identifier__ = null
81601
81634
  var Component = normalizeComponent(
81602
81635
  __WEBPACK_IMPORTED_MODULE_0__babel_loader_node_modules_vue_loader_lib_selector_type_script_index_0_dynamicLocation_vue__["a" /* default */],
81603
- __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_55920f01_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicLocation_vue__["a" /* default */],
81636
+ __WEBPACK_IMPORTED_MODULE_1__node_modules_vue_loader_lib_template_compiler_index_id_data_v_702aa6f4_hasScoped_true_buble_transforms_node_modules_vue_loader_lib_selector_type_template_index_0_dynamicLocation_vue__["a" /* default */],
81604
81637
  __vue_template_functional__,
81605
81638
  __vue_styles__,
81606
81639
  __vue_scopeId__,
@@ -81621,7 +81654,7 @@ var content = __webpack_require__(785);
81621
81654
  if(typeof content === 'string') content = [[module.i, content, '']];
81622
81655
  if(content.locals) module.exports = content.locals;
81623
81656
  // add the styles to the DOM
81624
- var update = __webpack_require__(3)("b8b22b1c", content, true, {});
81657
+ var update = __webpack_require__(3)("73bef7b7", content, true, {});
81625
81658
 
81626
81659
  /***/ }),
81627
81660
  /* 785 */
@@ -81642,7 +81675,7 @@ exports.push([module.i, "", ""]);
81642
81675
  /***/ (function(module, __webpack_exports__, __webpack_require__) {
81643
81676
 
81644
81677
  "use strict";
81645
- var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[(_vm.model !== null)?_c('div',{staticClass:"ct-location",staticStyle:{"width":"100%","display":"flex"}},[_c('div',{staticClass:"el-input el-input--mini el-input-group el-input-group--prepend el-input--suffix showLabel lableinput text-justify"},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend"},[_c('div',{staticClass:"label-ellipsis",class:[_vm.model.labelClass],attrs:{"slot":"prepend","title":_vm.model.label},slot:"prepend"},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")])]):_vm._e(),_vm._v(" "),_c('div',_vm._b({class:_vm.model.locked ? 'ct-is-disabled' : '',staticStyle:{"display":"inline-flex","padding-left":"0px"}},'div',_vm.model.attrs,false),[_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.model.value),expression:"model.value"}],staticClass:"el-location-input hoverColor",staticStyle:{"text-align":"left","width":"100%"},attrs:{"placeholder":_vm.model.attrs.placeholder1},domProps:{"value":(_vm.model.value)},on:{"change":function($event){_vm.changeHandler($event)},"input":function($event){if($event.target.composing){ return; }_vm.$set(_vm.model, "value", $event.target.value)}}}),_vm._v(" "),_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.model.value1),expression:"model.value1"}],staticClass:"el-location-input hoverColor",staticStyle:{"text-align":"left","width":"100%","margin-left":"5px"},attrs:{"placeholder":_vm.model.attrs.placeholder2},domProps:{"value":(_vm.model.value1)},on:{"change":function($event){_vm.changeHandler($event);},"input":function($event){if($event.target.composing){ return; }_vm.$set(_vm.model, "value1", $event.target.value)}}})]),_vm._v(" "),(_vm.model.moreActionRouter)?_c('div',{staticStyle:{"display":"inline-block","margin-left":"5px"}},[(_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.popupLocationHandler($event)}}}):_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary"},on:{"click":function($event){_vm.popupLocationHandler($event)}}},[_vm._v("\n "+_vm._s(_vm.model.moreActionRouter.label)+"\n ")])],1):_vm._e()]),_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._e()])}
81678
+ var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:"field-top"},[(_vm.model !== null)?_c('div',{staticClass:"ct-location",staticStyle:{"width":"100%","display":"flex"}},[_c('div',{staticClass:"el-input el-input--mini el-input-group el-input-group--prepend el-input--suffix showLabel lableinput text-justify"},[(_vm.model.showLabel && _vm.model.label)?_c('div',{staticClass:"el-input-group__prepend"},[_c('div',{staticClass:"label-ellipsis",class:[_vm.model.labelClass],attrs:{"slot":"prepend","title":_vm.model.label},slot:"prepend"},[_vm._v("\n "+_vm._s(_vm.model.label)+"\n ")])]):_vm._e(),_vm._v(" "),_c('div',_vm._b({class:_vm.model.locked ? 'ct-is-disabled' : '',staticStyle:{"display":"inline-flex","padding-left":"0px"}},'div',_vm.model.attrs,false),[_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.model.value),expression:"model.value"}],staticClass:"el-location-input hoverColor",staticStyle:{"text-align":"left","width":"100%"},attrs:{"placeholder":_vm.model.attrs.placeholder1},domProps:{"value":(_vm.model.value)},on:{"change":function($event){_vm.changeModel($event)},"input":function($event){if($event.target.composing){ return; }_vm.$set(_vm.model, "value", $event.target.value)}}}),_vm._v(" "),_c('input',{directives:[{name:"model",rawName:"v-model",value:(_vm.model.value1),expression:"model.value1"}],staticClass:"el-location-input hoverColor",staticStyle:{"text-align":"left","width":"100%","margin-left":"5px"},attrs:{"placeholder":_vm.model.attrs.placeholder2},domProps:{"value":(_vm.model.value1)},on:{"change":function($event){_vm.changeModel($event);},"input":function($event){if($event.target.composing){ return; }_vm.$set(_vm.model, "value1", $event.target.value)}}})]),_vm._v(" "),(_vm.model.moreActionRouter)?_c('div',{staticStyle:{"display":"inline-block","margin-left":"5px"}},[(_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.popupLocationHandler($event)}}}):_c('el-button',{staticClass:"h26",attrs:{"size":"mini","type":"primary"},on:{"click":function($event){_vm.popupLocationHandler($event)}}},[_vm._v("\n "+_vm._s(_vm.model.moreActionRouter.label)+"\n ")])],1):_vm._e()]),_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._e()])}
81646
81679
  var staticRenderFns = []
81647
81680
  var esExports = { render: render, staticRenderFns: staticRenderFns }
81648
81681
  /* harmony default export */ __webpack_exports__["a"] = (esExports);