centaline-data-driven 1.3.58 → 1.3.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/src/Form.vue +4 -4
- package/src/SearchList.vue +4 -4
- package/src/centaline/dynamicCb/src/dynamicCb.vue +5 -1
- package/src/centaline/dynamicContact/src/dynamicContact.vue +7 -0
- package/src/centaline/dynamicDetail/src/dynamicPropertySimpleDetailRET.vue +1 -1
- package/src/centaline/dynamicFile/src/dynamicFile.vue +385 -345
- package/src/centaline/dynamicInputNumber/src/dynamicInputNumber.vue +1 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +0 -5
- package/src/centaline/dynamicSearchList/src/dynamicTableStats.vue +10 -9
- package/src/centaline/loader/src/ctl/Cb.js +3 -0
- package/src/centaline/loader/src/ctl/File.js +50 -0
- package/src/centaline/loader/src/ctl/Form.js +4 -5
- package/src/centaline/loader/src/ctl/Router.js +6 -3
- package/src/main.js +5 -5
- package/wwwroot/static/centaline/centaline-data-driven.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
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="'/api/
|
|
4
|
+
<ct-form :api="'/api/third-dept-tran/transaction/detail'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,11 +12,11 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
|
|
16
|
-
|
|
15
|
+
actionType: "3",
|
|
16
|
+
originalTraId: "1564517681291898881",
|
|
17
17
|
pageOnly: "true",
|
|
18
18
|
pageStyle: "2",
|
|
19
|
-
|
|
19
|
+
pageTitle: "成交报告",
|
|
20
20
|
},
|
|
21
21
|
topHeight:10,
|
|
22
22
|
}
|
package/src/SearchList.vue
CHANGED
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
:searchCategoryApi="'/ProfileWorklistList/getLayoutOfSearchCategory'"
|
|
9
9
|
:searchDataApi="'/ProfileWorklistList/getListOfSearchModel'" :apiParam="para"></ct-searchlist> -->
|
|
10
10
|
|
|
11
|
-
<ct-searchlist :searchConditionApi="'/api/agenttrans/transactionList/getLayoutOfSearch'"
|
|
11
|
+
<!-- <ct-searchlist :searchConditionApi="'/api/agenttrans/transactionList/getLayoutOfSearch'"
|
|
12
12
|
:searchDataApi="'/api/agenttrans/transactionList/getTableList'">
|
|
13
|
-
</ct-searchlist>
|
|
13
|
+
</ct-searchlist> -->
|
|
14
14
|
|
|
15
|
-
|
|
15
|
+
<ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'"
|
|
16
16
|
:searchDataApi="'/PropertyRETList/getListOfSearchModel'"
|
|
17
17
|
:searchCategoryApi="'/PropertyRETList/getLayoutOfSearchCategory'"
|
|
18
18
|
:searchStatsApi="'/exampleList/getListStats'">
|
|
19
|
-
</ct-searchlist>
|
|
19
|
+
</ct-searchlist>
|
|
20
20
|
|
|
21
21
|
<ct-dialog-list></ct-dialog-list>
|
|
22
22
|
</div>
|
|
@@ -2,11 +2,12 @@
|
|
|
2
2
|
<div class="field-top">
|
|
3
3
|
<div v-if="model !== null" class="ct-checkbox">
|
|
4
4
|
<div :class="[model.showLabel?'el-input-group el-input-group--prepend':'',!valid?'inputError':'']">
|
|
5
|
-
<div v-if="model.showLabel && model.label" class="el-input-group__prepend" :class="[model.labelClass]">
|
|
5
|
+
<div v-if="model.showLabel && model.label" class="el-input-group__prepend line-feed" :class="[model.labelClass]">
|
|
6
6
|
{{model.label}}
|
|
7
7
|
</div>
|
|
8
8
|
<div class="ct-radios">
|
|
9
9
|
<el-checkbox v-model="model.value" :disabled="model.lock" @change="changeCheckBoxHandler"></el-checkbox>
|
|
10
|
+
<span v-show="model.sufLabel1" style="margin-left:1px;color: #767A81;">{{ model.sufLabel1 }}</span>
|
|
10
11
|
</div>
|
|
11
12
|
</div>
|
|
12
13
|
<transition name="el-fade-in">
|
|
@@ -69,4 +70,7 @@
|
|
|
69
70
|
padding-bottom: 3px;
|
|
70
71
|
padding-top: 3px;
|
|
71
72
|
}
|
|
73
|
+
.line-feed {
|
|
74
|
+
white-space: normal;
|
|
75
|
+
}
|
|
72
76
|
</style>
|
|
@@ -325,6 +325,13 @@ export default {
|
|
|
325
325
|
var w2 = this.$refs.routers.clientWidth | 0;
|
|
326
326
|
this.inputLinewidth = w1 - w2 - 80;
|
|
327
327
|
}
|
|
328
|
+
if (this.$parent.$refs.searchlist) {
|
|
329
|
+
if (this.$parent.$refs.searchlist.$refs.table) {
|
|
330
|
+
if (this.$parent.$refs.searchlist.$refs.table.isLayout) {
|
|
331
|
+
this.$parent.$refs.searchlist.$refs.table.setTableHeight();
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
328
335
|
});
|
|
329
336
|
},
|
|
330
337
|
}
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
<div slot="label" v-html="col.appName"></div>
|
|
81
81
|
</el-tab-pane>
|
|
82
82
|
</el-tabs>
|
|
83
|
-
<ct-searchlist v-if="model.searchConditionApiTags1" :key="'list'+listKey.toString()+refershKey"
|
|
83
|
+
<ct-searchlist ref="searchlist" v-if="model.searchConditionApiTags1" :key="'list'+listKey.toString()+refershKey"
|
|
84
84
|
:apiParam="model.paramDataTags1" :flagFocus="false"
|
|
85
85
|
:searchConditionApi="model.searchConditionApiTags1"
|
|
86
86
|
:searchDataApi="model.searchDataApiTags1"></ct-searchlist>
|