centaline-data-driven 1.4.36 → 1.4.37
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/SearchList.vue +4 -4
- package/src/centaline/css/max.css +0 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchScreen.vue +13 -3
- package/src/centaline/dynamicTree/src/dynamicTree.vue +7 -2
- 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/SearchList.vue
CHANGED
|
@@ -4,12 +4,12 @@
|
|
|
4
4
|
|
|
5
5
|
<!-- <ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'" :searchDataApi="'/PropertyRETList/getListOfSearchModel'" :searchCategoryApi="'/PropertyRETList/getLayoutOfSearchCategory'"></ct-searchlist> -->
|
|
6
6
|
|
|
7
|
-
<ct-searchlist :apiParam="para"
|
|
7
|
+
<!-- <ct-searchlist :apiParam="para"
|
|
8
8
|
:searchConditionApi="'/ProfileWorklistList/getLayoutOfSearch'"
|
|
9
9
|
:searchCategoryApi="'/ProfileWorklistList/getLayoutOfSearchCategory'"
|
|
10
10
|
:searchDataApi="'/ProfileWorklistList/getListOfSearchModel'"
|
|
11
11
|
:searchStatsApi="'/ProfileWorklistList/getListStats'">
|
|
12
|
-
</ct-searchlist>
|
|
12
|
+
</ct-searchlist> -->
|
|
13
13
|
|
|
14
14
|
<!-- <ct-searchlist :apiParam="para"
|
|
15
15
|
:searchConditionApi="'/PropertyTrustList/getLayoutOfSearch'"
|
|
@@ -22,11 +22,11 @@
|
|
|
22
22
|
:searchDataApi="'/PropertyPublishList/getListOfSearchModelForRET'">
|
|
23
23
|
</ct-searchlist> -->
|
|
24
24
|
|
|
25
|
-
|
|
25
|
+
<ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'"
|
|
26
26
|
:searchDataApi="'/PropertyRETList/getListOfSearchModel'"
|
|
27
27
|
:searchCategoryApi="'/PropertyRETList/getLayoutOfSearchCategory'"
|
|
28
28
|
:searchStatsApi="'/PropertyRETList/getListStats'">
|
|
29
|
-
</ct-searchlist>
|
|
29
|
+
</ct-searchlist>
|
|
30
30
|
|
|
31
31
|
<!-- <ct-searchlist :searchConditionApi="'/PropertyOFIList/getLayoutOfSearch'"
|
|
32
32
|
:searchDataApi="'/PropertyOFIList/getListOfSearchModel'"
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
<div class="shortcutFollow max-shortcutFollow" style="padding-left: 20px;" v-if="model.shortcutForm">
|
|
12
12
|
<ct-form :source="model.shortcutForm.code1" @submit="saveShortcut"></ct-form>
|
|
13
13
|
</div>
|
|
14
|
-
<
|
|
14
|
+
<div class="SeachScreenPop max-seachpopper" placement="top" transition="el-zoom-in-top" v-show="highScreen" trigger="click" visible-arrow="false">
|
|
15
15
|
<div style="width:100%">
|
|
16
16
|
<template v-for="(col, index) in highScreenRow" v-if="col.show !== false">
|
|
17
17
|
<br v-if="col.is === 'ct-linefeed'" />
|
|
18
18
|
<component v-else class="list-field" v-bind="col.listBind" :is="col.is" :vmodel="col" :api="model.optionApi" @click="clickHandler(col)"></component>
|
|
19
19
|
</template>
|
|
20
20
|
</div>
|
|
21
|
-
</
|
|
21
|
+
</div>
|
|
22
22
|
</div>
|
|
23
23
|
<div v-if="isLoading" v-loading="isLoading" style="min-height:100px">
|
|
24
24
|
</div>
|
|
@@ -205,5 +205,15 @@
|
|
|
205
205
|
.ct-ptl0 {
|
|
206
206
|
padding: 0 10px 10px 10px;
|
|
207
207
|
}
|
|
208
|
-
|
|
208
|
+
.max-seachpopper {
|
|
209
|
+
position: absolute;
|
|
210
|
+
z-index: 9999;
|
|
211
|
+
width: 100%;
|
|
212
|
+
padding: 5px 10px 10px 10px!important;
|
|
213
|
+
background-color: #fff !important;
|
|
214
|
+
margin-top: -5px;
|
|
215
|
+
border-bottom-left-radius: 6px !important;
|
|
216
|
+
border-bottom-right-radius: 6px !important;
|
|
217
|
+
-webkit-box-shadow: #cfcece 0px 7px 9px 0px!important;
|
|
218
|
+
}
|
|
209
219
|
</style>
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<template>
|
|
2
|
-
<div class='mytree' style="overflow:auto">
|
|
2
|
+
<div class='mytree' style="overflow:auto" :style="{height:treeHeight}">
|
|
3
3
|
<el-tree :data="treeData" class="tree-line" :props="defaultProps" :load="loadNode" :indent="0"
|
|
4
4
|
:expand-on-click-node="false" @node-click="handleNodeClick" lazy ref="Tree">
|
|
5
5
|
</el-tree>
|
|
@@ -34,9 +34,13 @@ export default {
|
|
|
34
34
|
isLeaf: "isLeaf",
|
|
35
35
|
id: 'code'
|
|
36
36
|
},
|
|
37
|
+
treeHeight:'100%'
|
|
37
38
|
};
|
|
38
39
|
},
|
|
39
40
|
methods: {
|
|
41
|
+
activated(){
|
|
42
|
+
this.treeHeight='100%';
|
|
43
|
+
},
|
|
40
44
|
search(m) {
|
|
41
45
|
this.treeNode.childNodes = [];
|
|
42
46
|
this.searchComplate(m, undefined, this.treeResolve);
|
|
@@ -111,7 +115,8 @@ export default {
|
|
|
111
115
|
</script>
|
|
112
116
|
<style lang="scss">
|
|
113
117
|
.mytree .is-select {
|
|
114
|
-
color: #409eff !important
|
|
118
|
+
color: #409eff !important;
|
|
119
|
+
height: 100%;
|
|
115
120
|
}
|
|
116
121
|
|
|
117
122
|
.tree-line:first-child div {
|
package/src/main.js
CHANGED
|
@@ -43,7 +43,7 @@ Vue.use(centaline, {
|
|
|
43
43
|
getRequestHeaders: function () {
|
|
44
44
|
return {
|
|
45
45
|
oldToken: '9a73e482-db16-4a24-81e7-67daef02b64d',
|
|
46
|
-
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
46
|
+
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjrEOgkAQRP9laza59fZ27-j0wMaPIAeeCVZGINEY_12M0NH7ildMJpl5wTC1UIIu4IZWmrCAG1ppiDgoSY37oBFZ2KKn6DGyRD5WtY2HCgrIjxuUJHPTiFUtoE_jL3AUwjeYhnw_5ec_zl3Hfp7NZNRll7FN3iBb12G6dIwiGsRx2p07B-8PAAAA__8.znyY_zAn4f_Xdz-2UVSafJIf9z5zDANUKWzpMIPEJdA',
|
|
47
47
|
|
|
48
48
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
49
49
|
EstateInfo: '{"estateId":"FAF029E8-EC28-4297-83CF-B8FFD826DB91","estateName":"AABBCC"}',
|