centaline-data-driven-v3 0.0.47 → 0.0.48
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
CHANGED
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
<template v-if="model.isHorizontalLayout">
|
|
30
30
|
<van-tabs v-model:active="activeName" title-active-color="#EE6B6B" title-inactive-color="#000000"
|
|
31
31
|
background="#FFFFFF" color="#EE6B6B" shrink>
|
|
32
|
-
<template v-for="(
|
|
33
|
-
<van-tab :title="
|
|
32
|
+
<template v-for="(item, index) in model.collapse" :key="index">
|
|
33
|
+
<van-tab :title="item.controlLabel" :name="index.toString()" v-if="item.show !== false">
|
|
34
34
|
<van-cell-group inset :border="false"
|
|
35
35
|
v-for="(field, collapseIndex) in model.collapseFields[index + 1]"
|
|
36
36
|
:key="collapseIndex">
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
<!--分组-->
|
|
50
50
|
<template v-else>
|
|
51
51
|
<van-cell-group v-for="(item, index) in model.collapse" :key="index">
|
|
52
|
-
<template v-for="(field, collapseIndex) in model.collapseFields[index + 1]"
|
|
52
|
+
<template v-if="item.show !== false" v-for="(field, collapseIndex) in model.collapseFields[index + 1]"
|
|
53
53
|
:key="collapseIndex">
|
|
54
54
|
<component ref="Fields" :is="field.is" v-if="field.show !== false" :vmodel="field"
|
|
55
55
|
:parameterAction="model.parameterAction" v-bind="field.bindPara"
|
|
@@ -210,7 +210,6 @@ function load(data) {
|
|
|
210
210
|
nextTick(function () {
|
|
211
211
|
setFormHeight()
|
|
212
212
|
})
|
|
213
|
-
|
|
214
213
|
//通知父组件加载完成
|
|
215
214
|
emit('loaded', model.value);
|
|
216
215
|
}
|
package/src/views/SearchList.vue
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div id="app-search" style="width:100%;height:100%;position: fixed;">
|
|
3
|
-
<ct-searchlist :apiParam="apiParam" :searchConditionApi="'/
|
|
4
|
-
:searchDataApi="'/
|
|
5
|
-
:searchStatsApi="'/propertyPublishList/getListStats'"></ct-searchlist>
|
|
3
|
+
<ct-searchlist :apiParam="apiParam" :searchConditionApi="'/propertyTenderList/getLayoutOfSearch'"
|
|
4
|
+
:searchDataApi="'/propertyTenderList/getListOfSearchModel'"></ct-searchlist>
|
|
6
5
|
<ct-dialoglist ref="dialogList"></ct-dialoglist>
|
|
7
6
|
|
|
8
7
|
</div>
|