centaline-data-driven 1.3.59 → 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/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 +383 -348
- package/src/centaline/dynamicInputNumber/src/dynamicInputNumber.vue +1 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +0 -5
- package/src/centaline/loader/src/ctl/Cb.js +3 -0
- package/src/centaline/loader/src/ctl/File.js +50 -0
- 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
|
@@ -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>
|