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.
- package/build/centaline/centaline.path.js +1 -0
- package/package.json +1 -1
- package/src/Form.vue +2 -2
- package/src/SearchList.vue +3 -3
- package/src/centaline/dynamicD/src/dynamicD.vue +4 -0
- package/src/centaline/dynamicDetail/src/dynamicContactList.vue +387 -684
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +1 -1
- package/src/centaline/dynamicSosTt/index.js +14 -0
- package/src/centaline/dynamicSosTt/src/dynamicSosTt.vue +283 -0
- package/src/centaline/loader/src/ctl/ContactList.js +347 -27
- package/src/centaline/loader/src/ctl/D.js +3 -0
- package/src/centaline/loader/src/ctl/Router.js +29 -0
- package/src/centaline/loader/src/ctl/SosTt.js +146 -0
- package/src/centaline/loader/src/ctl/lib/Enum.js +28 -0
- package/src/centaline/loader/src/ctl/lib/LibFunction.js +10 -1
- package/src/centaline/loader/src/ctl.js +1 -0
- package/wwwroot/static/centaline/centaline-data-driven.js +3 -3
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
|
@@ -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
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="'
|
|
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: {
|
|
28
|
+
para: {propertyID: "1", actionType: 2}
|
|
29
29
|
// apiParam: {
|
|
30
30
|
// actionType: 2,
|
|
31
31
|
// agentId: "1450283160825425922",
|
package/src/SearchList.vue
CHANGED
|
@@ -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
|
-
|
|
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();
|