centaline-data-driven 1.3.57 → 1.3.60
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/Detail.vue +1 -1
- package/src/Form.vue +2 -6
- package/src/SearchList.vue +4 -4
- package/src/centaline/dynamicBtn/src/dynamicBtn.vue +1 -2
- package/src/centaline/dynamicCb/src/dynamicCb.vue +5 -1
- package/src/centaline/dynamicContact/src/dynamicContact.vue +7 -0
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailOFI.vue +4 -18
- 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/dynamicSearchList.vue +3 -0
- package/src/centaline/dynamicSearchList/src/dynamicSearchScreen.vue +9 -2
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +23 -14
- 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/Router.js +6 -3
- package/src/centaline/templateControls/src/dynamicTableCurrency.vue +11 -3
- package/src/main.js +2 -2
- package/wwwroot/static/centaline/centaline-data-driven.js +3 -3
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/src/Detail.vue
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="'/PropertyChanceTipOff/getLayoutOfNew'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,11 +12,7 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
|
|
16
|
-
businessId: "1557203282719256578",
|
|
17
|
-
pageOnly: "true",
|
|
18
|
-
pageStyle: "2",
|
|
19
|
-
stepId: "1557203798568316929",
|
|
15
|
+
chanceID: "1526015051042000896", actionType: 2
|
|
20
16
|
},
|
|
21
17
|
topHeight:10,
|
|
22
18
|
}
|
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>
|
|
@@ -40,8 +40,7 @@
|
|
|
40
40
|
:style="{color:model.textColor,backgroundColor:model.imgUrl?'transparent':model.bgColor,borderColor:model.imgUrl?'transparent':model.borderColor,padding:model.imgUrl?'0px':null}"
|
|
41
41
|
:icon="model.icon"
|
|
42
42
|
:disabled="model.disabled || model.locked">
|
|
43
|
-
<el-popover
|
|
44
|
-
class="Stats-popover" :popper-class="'el-popoverCallTel'" :placement="option.placement?option.placement:'left'"
|
|
43
|
+
<el-popover class="Stats-popover" :popper-class="'el-popoverCallTel'" :placement="option.placement?option.placement:'left'"
|
|
45
44
|
v-model="visible" :trigger="option.trigger?option.trigger:''">
|
|
46
45
|
<div style="border-bottom:none">
|
|
47
46
|
<div style="color: #388cd3;text-align: center;">{{message}}</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
|
}
|
|
@@ -158,20 +158,10 @@
|
|
|
158
158
|
</div>
|
|
159
159
|
</div>
|
|
160
160
|
</div>
|
|
161
|
-
<div
|
|
162
|
-
v-for="(col, index) in collapse"
|
|
163
|
-
:key="index"
|
|
164
|
-
class="info-conten-b"
|
|
165
|
-
v-show="allInfo"
|
|
166
|
-
>
|
|
161
|
+
<div v-for="(col, index) in collapse" :key="index" class="info-conten-b" v-show="allInfo">
|
|
167
162
|
<div class="info-row mb20">
|
|
168
|
-
<div
|
|
169
|
-
|
|
170
|
-
:key="i"
|
|
171
|
-
:class="c.singleLine === true ? 'row-i100' : 'row-i'"
|
|
172
|
-
>
|
|
173
|
-
<span>{{ c.label }}</span
|
|
174
|
-
><span>{{ c.value }}</span>
|
|
163
|
+
<div v-for="(c, i) in col" :key="i" :class="c.singleLine === true ? 'row-i100' : 'row-i'">
|
|
164
|
+
<span>{{ c.label }}</span><span>{{ c.value }}</span>
|
|
175
165
|
</div>
|
|
176
166
|
</div>
|
|
177
167
|
</div>
|
|
@@ -181,11 +171,7 @@
|
|
|
181
171
|
</div>
|
|
182
172
|
</div>
|
|
183
173
|
<div class="contacts-info base-box">
|
|
184
|
-
<ct-contactList
|
|
185
|
-
v-if="model.contactApiRouter !== null"
|
|
186
|
-
:apiRouter="model.contactApiRouter"
|
|
187
|
-
:key="'contact' + refershKey"
|
|
188
|
-
></ct-contactList>
|
|
174
|
+
<ct-contactList v-if="model.contactApiRouter !== null" :apiRouter="model.contactApiRouter" :key="'contact' + refershKey"></ct-contactList>
|
|
189
175
|
</div>
|
|
190
176
|
<div class="tablist-info base-box">
|
|
191
177
|
<div class="details-tabs-box">
|
|
@@ -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>
|