centaline-data-driven 1.3.83 → 1.3.85
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/SearchList.vue +11 -3
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +2 -2
- package/src/main.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js +1 -1
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
package/package.json
CHANGED
package/src/Detail.vue
CHANGED
package/src/SearchList.vue
CHANGED
|
@@ -11,14 +11,22 @@
|
|
|
11
11
|
:searchStatsApi="'/ProfileWorklistList/getListStats'">
|
|
12
12
|
</ct-searchlist> -->
|
|
13
13
|
|
|
14
|
-
<ct-searchlist
|
|
15
|
-
:
|
|
14
|
+
<ct-searchlist
|
|
15
|
+
:searchCategoryApi="'/PropertyPublishList/getLayoutOfSearchCategory'"
|
|
16
|
+
:searchConditionApi="'/PropertyPublishList/getLayoutOfSearchForRET'"
|
|
17
|
+
:searchDataApi="'/PropertyPublishList/getListOfSearchModelForRET'">
|
|
16
18
|
</ct-searchlist>
|
|
17
19
|
|
|
18
20
|
<!-- <ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'"
|
|
19
21
|
:searchDataApi="'/PropertyRETList/getListOfSearchModel'"
|
|
20
22
|
:searchCategoryApi="'/PropertyRETList/getLayoutOfSearchCategory'"
|
|
21
|
-
:searchStatsApi="'/
|
|
23
|
+
:searchStatsApi="'/PropertyRETList/getListStats'">
|
|
24
|
+
</ct-searchlist> -->
|
|
25
|
+
|
|
26
|
+
<!-- <ct-searchlist :searchConditionApi="'/PropertyOFIList/getLayoutOfSearch'"
|
|
27
|
+
:searchDataApi="'/PropertyOFIList/getListOfSearchModel'"
|
|
28
|
+
:searchCategoryApi="'/PropertyOFIList/getLayoutOfSearchCategory'"
|
|
29
|
+
:searchStatsApi="'/PropertyOFIList/getListStats'">
|
|
22
30
|
</ct-searchlist> -->
|
|
23
31
|
|
|
24
32
|
<ct-dialog-list></ct-dialog-list>
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
:ref="'rows.' + rowindex" @click="rowClickHandle($event, rowindex)"
|
|
68
68
|
class="ct-tr" :style="row.$style">
|
|
69
69
|
<td v-if="model.isMulti" class="ct-td tdFiexd left-fixation checkbox-td" :class="[model.tdClass]" align="center">
|
|
70
|
-
<label v-if="!model.rightMulti || row
|
|
70
|
+
<label v-if="!model.rightMulti || $common.getDataOfUpperLower(row,model.rightMulti) == 1" class="el-checkbox is-checked">
|
|
71
71
|
<span class="el-checkbox__input" :class="rowCheckClass(row)">
|
|
72
72
|
<span class="el-checkbox__inner"></span>
|
|
73
73
|
<input type="checkbox" v-model="row.$select" @change="selectOne($event)" class="el-checkbox__original checkbox-td-1" />
|
|
@@ -1394,7 +1394,7 @@
|
|
|
1394
1394
|
},
|
|
1395
1395
|
selectAll($ev) {
|
|
1396
1396
|
this.model.listData.forEach((ro) => {
|
|
1397
|
-
if (!this.model.rightMulti || ro
|
|
1397
|
+
if (!this.model.rightMulti || this.$common.getDataOfUpperLower(ro,this.model.rightMulti) == 1 ) {
|
|
1398
1398
|
ro.$select = $ev.srcElement.checked;
|
|
1399
1399
|
}
|
|
1400
1400
|
});
|
package/src/main.js
CHANGED
|
@@ -43,7 +43,7 @@ Vue.use(centaline, {
|
|
|
43
43
|
getRequestHeaders: function () {
|
|
44
44
|
return {
|
|
45
45
|
oldToken: '42ccd644-040d-4e01-9521-1623f1884058',
|
|
46
|
-
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
46
|
+
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjrsOgkAQRf9laiZhdofZHTpdsPEjyLKuCVZGINEY_91HoKP3FKc4zb1PGOceanALuKGVThdwQysdEasjaXGnLiALW_QUPAaWwIemtWHfQAH5foWaRKT0xpEpYIjTL1SqYr9hHvPtmB__OHeZhs_smZWrJIqOTwm5Uot9NAZzjpKskvclwesNAAD__w.0dgRDqA4179wrs7qrDTddwpAVS-L8UlzdVZou2MkS5Q',
|
|
47
47
|
|
|
48
48
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
49
49
|
EstateInfo: '{"estateId":"FAF029E8-EC28-4297-83CF-B8FFD826DB91","estateName":"AABBCC"}',
|