centaline-data-driven 1.4.29 → 1.4.30
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 -2
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailOFI.vue +1 -1
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +12 -1
- package/src/centaline/dynamicFile/src/dynamicFile.vue +4 -2
- package/src/centaline/dynamicL/src/dynamicL.vue +1 -0
- package/src/centaline/loader/src/ctl/InputNumber.js +3 -0
- package/src/centaline/progress/src/progress.vue +5 -3
- package/src/main.js +1 -1
- 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/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="'/PropertyRET/getLayoutOfEdit'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
"actionType
|
|
15
|
+
chanceID: "1602509155166457856", actionType: 3
|
|
16
16
|
},
|
|
17
17
|
topHeight:10,
|
|
18
18
|
}
|
|
@@ -234,7 +234,7 @@
|
|
|
234
234
|
<div class="user-title" v-html="m.empNameCN"></div>
|
|
235
235
|
<div class="user-title" style="margin-left: 10px" v-html="m.commissionPercentDesc"></div>
|
|
236
236
|
</div>
|
|
237
|
-
<div class="user-but
|
|
237
|
+
<div class="user-but" v-html="m.commissionRoleName"></div>
|
|
238
238
|
</div>
|
|
239
239
|
</div>
|
|
240
240
|
</div>
|
|
@@ -229,7 +229,7 @@
|
|
|
229
229
|
<div class="user-title" v-html="m.empNameCN"></div>
|
|
230
230
|
<div class="user-title" style="margin-left: 10px" v-html="m.commissionPercentDesc"></div>
|
|
231
231
|
</div>
|
|
232
|
-
<div class="user-but
|
|
232
|
+
<div class="user-but" v-html="m.commissionRoleName"></div>
|
|
233
233
|
</div>
|
|
234
234
|
</div>
|
|
235
235
|
</div>
|
|
@@ -602,7 +602,9 @@ export default {
|
|
|
602
602
|
var collapseItemArr = [];
|
|
603
603
|
var col = 0;
|
|
604
604
|
var colCount = 4;
|
|
605
|
+
debugger
|
|
605
606
|
self.model.fields2Dic.forEach((v, index) => {
|
|
607
|
+
|
|
606
608
|
if (v.type === 13) {
|
|
607
609
|
collapseItemArr = [];
|
|
608
610
|
col = 0;
|
|
@@ -621,21 +623,30 @@ export default {
|
|
|
621
623
|
collapseItemArr.push(v);
|
|
622
624
|
col = col + v.spanCols;
|
|
623
625
|
if (col === colCount || index === self.model.fields2Dic.length - 1) {
|
|
626
|
+
debugger
|
|
624
627
|
self.collapse.push(collapseItemArr);
|
|
625
628
|
collapseItemArr = [];
|
|
626
629
|
col = 0;
|
|
627
630
|
}
|
|
631
|
+
if (index === 6) {
|
|
632
|
+
debugger
|
|
633
|
+
}
|
|
634
|
+
if (index === 7) {
|
|
635
|
+
debugger
|
|
636
|
+
}
|
|
628
637
|
}
|
|
629
638
|
else {
|
|
630
639
|
collapseItemArr.push(v);
|
|
631
640
|
col = col + 1;
|
|
632
641
|
if (col === colCount || index === self.model.fields2Dic.length - 1) {
|
|
642
|
+
debugger
|
|
633
643
|
self.collapse.push(collapseItemArr);
|
|
634
644
|
collapseItemArr = [];
|
|
635
645
|
col = 0;
|
|
636
646
|
}
|
|
637
647
|
}
|
|
638
648
|
});
|
|
649
|
+
debugger
|
|
639
650
|
},
|
|
640
651
|
loadOperation() {
|
|
641
652
|
this.model._operationList = null;
|
|
@@ -126,9 +126,11 @@ export default {
|
|
|
126
126
|
position: relative;
|
|
127
127
|
}
|
|
128
128
|
|
|
129
|
-
.circleCenter {
|
|
129
|
+
.circleBox .circleCenter {
|
|
130
130
|
position: absolute;
|
|
131
|
-
top:
|
|
132
|
-
left:
|
|
131
|
+
top: 50%;
|
|
132
|
+
left: 50%;
|
|
133
|
+
margin-top: -10px;
|
|
134
|
+
margin-left: -15px;
|
|
133
135
|
}
|
|
134
136
|
</style>
|
package/src/main.js
CHANGED
|
@@ -43,7 +43,7 @@ Vue.use(centaline, {
|
|
|
43
43
|
getRequestHeaders: function () {
|
|
44
44
|
return {
|
|
45
45
|
oldToken: '3f518e5b-85c3-4a3e-9aa2-d476c6e43b75',
|
|
46
|
-
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
46
|
+
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjrsKwkAQRf9l6gzsuOM80ukmNn5EyMIKsRJNQBH_XcWkS-8pTnGae59wmzLUoDO4ooXOZ3BFCx0Ru5K0uHNNyMIRjZJhYkl8aNqY9g1UUO4XqEk0uDE5VzD04y-Yq37DdCvXY3n849x5HD6zFEU2JRhmEkPuc8betifM7NGLqXsI8HoDAAD__w.jOAitG_FwNBBh1-Zd0w28DaGuXUjH0YvrTNKuG99tn0',
|
|
47
47
|
|
|
48
48
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
49
49
|
EstateInfo: '{"estateId":"FAF029E8-EC28-4297-83CF-B8FFD826DB91","estateName":"AABBCC"}',
|