centaline-data-driven 1.2.25 → 1.2.28

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.
@@ -7,6 +7,7 @@ const paths = {
7
7
  "dynamicMt": "./src/centaline/dynamicMt/index.js",//多行文本组件
8
8
  "dynamicSo": "./src/centaline/dynamicSo/index.js",//单选下拉菜单
9
9
  "dynamicSos": "./src/centaline/dynamicSos/index.js",//单选搜索下拉菜单
10
+ "dynamicSosTt": "./src/centaline/dynamicSosTt/index.js",//电话号码编辑框
10
11
  "dynamicT": "./src/centaline/dynamicT/index.js",//文本input组件
11
12
  "dynamicL": "./src/centaline/dynamicL/index.js",//文本label组件
12
13
  "dynamicTags": "./src/centaline/dynamicTags/index.js",//多选搜索下拉菜单组件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "centaline-data-driven",
3
- "version": "1.2.25",
3
+ "version": "1.2.28",
4
4
  "description": "ccai",
5
5
  "author": "hjc <3226136347@qq.com>",
6
6
  "private": false,
package/src/Form.vue CHANGED
@@ -8,7 +8,7 @@
8
8
  <!--<ct-form :api="'api/Form/formdata'"></ct-form>-->
9
9
  <!-- <ct-form :api="'/forminfo/readDetail'" :apiParam="apiParam"></ct-form> -->
10
10
  <!-- <ct-form :api="'PropertyKey/getLayoutOfNew'" :apiParam="apiParam"></ct-form> -->
11
- <ct-form :api="'PropertyRealLook/getLayoutOfNew'" :apiParam="para"></ct-form>
11
+ <ct-form :api="'PropertyDuty/getLayoutOfClearDuty'" :apiParam="para"></ct-form>
12
12
  <!-- <ct-form :api="'/api/distribution/transaction/add'" :apiParam="apiParam"></ct-form> -->
13
13
  <ct-dialog-list></ct-dialog-list>
14
14
  </div>
@@ -25,7 +25,7 @@
25
25
  // apiParam: {actionType: 3,formId: "2c12649f-09c5-4aa9-8011-b6d1c7b56a41"} ,
26
26
  // apiParam: {chanceID: "1", actionType: 2} ,
27
27
  // apiParam: {worklistID: "1494206747714392064", actionType: 2}
28
- para: {chanceID: "1", actionType: 2}
28
+ para: {propertyID: "1", actionType: 2}
29
29
  // apiParam: {
30
30
  // actionType: 2,
31
31
  // agentId: "1450283160825425922",
@@ -2,8 +2,8 @@
2
2
  <div id="app-search" style="height:100%;position: fixed;">
3
3
  <!-- <ct-searchlist :searchConditionApi="'/api/third-dept-tran/tran-list/layout'" :searchDataApi="'/api/third-dept-tran/tran-list'"></ct-searchlist> -->
4
4
 
5
- <ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'" :searchDataApi="'/PropertyRETList/getListOfSearchModel'" :searchCategoryApi="'/PropertyRETList/getLayoutOfSearchCategory'"></ct-searchlist>
6
- <!-- <ct-searchlist :searchConditionApi="'/WorklistList/getLayoutOfSearch'" :searchDataApi="'/WorklistList/getListOfSearchModel'" :searchCategoryApi="'/WorklistList/getLayoutOfSearchCategory'"></ct-searchlist> -->
5
+ <!-- <ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'" :searchDataApi="'/PropertyRETList/getListOfSearchModel'" :searchCategoryApi="'/PropertyRETList/getLayoutOfSearchCategory'"></ct-searchlist> -->
6
+ <ct-searchlist :searchConditionApi="'/PropertyPublishLogList/getLayoutOfSearch'" :searchDataApi="'/PropertyPublishLogList/getListOfSearchModel'"></ct-searchlist>
7
7
 
8
8
  <!-- <ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'"
9
9
  :searchDataApi="'/PropertyRETList/getListOfSearchModel'"
@@ -24,7 +24,7 @@
24
24
  data() {
25
25
  return {
26
26
  //para: { agentId: "1424932685198864386", estateId: "L201402181627000007233", estateName: "271医院宿舍区", pageOnly: "true", pageTitle: "销控房源列表" }
27
- para: {}
27
+ para: {publishID: "1503900718229229568"}
28
28
  // para: {paramKey: "PropertyStatusID", code: "002.001", name: "盘源状态", paramName: "盘源状态"}
29
29
  }
30
30
  },
@@ -10,6 +10,7 @@
10
10
  :picker-options="pickerOptions" :disabled="model.lock">
11
11
  </el-date-picker>
12
12
  </div>
13
+ <span v-if="model.sufLabel" class="spanMessage ct-flex-div-span">{{model.sufLabel}}</span>
13
14
  <transition name="el-fade-in">
14
15
  <span v-show="!valid" class="errorMessage">
15
16
  {{validMessage}}
@@ -50,6 +51,9 @@
50
51
  }
51
52
  },
52
53
  dateBlur(event) {
54
+ if(this.model.attrs && this.model.attrs.type && this.model.attrs.type=='month'){
55
+ return;
56
+ }
53
57
  var text = event.$el.querySelector("input").value;
54
58
  text = text.replace('-', '').replace('/', '').replace('\\', '');
55
59
  var nowDate = new Date();