centaline-data-driven 1.2.94 → 1.2.95
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/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +3 -0
- package/src/centaline/dynamicSearchList/src/dynamicSearchList.vue +5 -0
- 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
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
{{tag.label}}
|
|
25
25
|
</div>
|
|
26
26
|
</div>
|
|
27
|
+
<div v-if="model.fields1Dic.PropertyDepict" v-html="model.fields1Dic.PropertyDepict.value"
|
|
28
|
+
style="color: blue;font-size: 16px;font-weight: bold;margin-top: 14px;">
|
|
29
|
+
</div>
|
|
27
30
|
</div>
|
|
28
31
|
<div class="head-but">
|
|
29
32
|
<div>
|
|
@@ -185,6 +185,7 @@
|
|
|
185
185
|
},
|
|
186
186
|
tableLoaded() {
|
|
187
187
|
if(this.$refs.table.model.listData.length>0){
|
|
188
|
+
this.flagSideBarOfData=true;
|
|
188
189
|
this.flagSideBar=this.$refs.table.model.flagSideBar;
|
|
189
190
|
this.flagDefaultDisplaySideBar=this.$refs.table.model.flagDefaultDisplaySideBar;
|
|
190
191
|
|
|
@@ -209,6 +210,10 @@
|
|
|
209
210
|
}
|
|
210
211
|
}
|
|
211
212
|
}
|
|
213
|
+
else{
|
|
214
|
+
this.flagSideBarOfData=false;
|
|
215
|
+
this.searchWidth=0;
|
|
216
|
+
}
|
|
212
217
|
this.$emit('tableLoaded', this.$refs.table.model);
|
|
213
218
|
},
|
|
214
219
|
rowClickHandle() {
|
package/src/main.js
CHANGED
|
@@ -14,8 +14,8 @@ Vue.config.productionTip = false;
|
|
|
14
14
|
Vue.use(centaline, {
|
|
15
15
|
baseUrl: "http://10.88.22.46:7070/v1/form/router",
|
|
16
16
|
// baseUrl: "http://10.88.23.22:9999/v1/form/router",
|
|
17
|
-
baseUrl: "http://10.88.22.69:8080/",
|
|
18
|
-
flagRouterSelf: true,
|
|
17
|
+
// baseUrl: "http://10.88.22.69:8080/",
|
|
18
|
+
// flagRouterSelf: true,
|
|
19
19
|
zindex: 999,
|
|
20
20
|
showRequestErrorMessage: true,
|
|
21
21
|
handler: {
|