centaline-data-driven 1.4.84 → 1.4.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/SearchList.vue +4 -4
- package/src/centaline/dynamicBtn/src/dynamicBtn.vue +2 -2
- package/src/centaline/dynamicDetail/src/dynamicPropertySimpleDetailRET.vue +1 -2
- package/src/centaline/loader/src/ctl/Detail.js +3 -0
- package/src/main.js +4 -4
- 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/SearchList.vue
CHANGED
|
@@ -4,10 +4,10 @@
|
|
|
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="'/api/third-dept-tran/tran-list/layout'"
|
|
9
9
|
:searchDataApi="'/api/third-dept-tran/tran-list'">
|
|
10
|
-
</ct-searchlist>
|
|
10
|
+
</ct-searchlist> -->
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
<!-- <ct-searchlist :apiParam="para"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
:searchDataApi="'/PropertyPublishList/getListOfSearchModelForRET'">
|
|
29
29
|
</ct-searchlist> -->
|
|
30
30
|
|
|
31
|
-
|
|
31
|
+
<ct-searchlist :searchConditionApi="'/PropertyRETList/getLayoutOfSearch'"
|
|
32
32
|
:searchDataApi="'/PropertyRETList/getListOfSearchModel'"
|
|
33
33
|
:searchCategoryApi="'/PropertyRETList/getLayoutOfSearchCategory'"
|
|
34
34
|
:searchStatsApi="'/PropertyRETList/getListStats'">
|
|
35
|
-
</ct-searchlist>
|
|
35
|
+
</ct-searchlist>
|
|
36
36
|
|
|
37
37
|
<!-- <ct-searchlist :searchConditionApi="'/PropertyOFIList/getLayoutOfSearch'"
|
|
38
38
|
:searchDataApi="'/PropertyOFIList/getListOfSearchModel'"
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
:style="{color:model.textColor,backgroundColor:model.imgUrl?'transparent':model.bgColor,borderColor:model.imgUrl?'transparent':model.borderColor,padding:model.imgUrl?'0px':null}"
|
|
57
57
|
:icon="model.icon"
|
|
58
58
|
:disabled="model.disabled || model.locked">
|
|
59
|
-
<div v-if="
|
|
59
|
+
<div v-if="flagAppMode" :title="model.label">
|
|
60
60
|
<img :src="model.imgUrl" :height="model.buttonHeight+'px'"/>
|
|
61
61
|
<div style="margin-top:5px;" class="labelText">{{model.label}}</div>
|
|
62
62
|
</div>
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
optionApi:String,
|
|
77
77
|
rowData: Object,
|
|
78
78
|
rowindex:Number,
|
|
79
|
-
|
|
79
|
+
flagAppMode:Boolean,
|
|
80
80
|
},
|
|
81
81
|
mixins: [dynamicElement],
|
|
82
82
|
data: function () {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
<div style="display: flex;flex-flow:row wrap ">
|
|
30
30
|
<component v-for="(router, index) in model.actionRoutersSimple.slice(showIndex)" :key="index" class="drawerButton"
|
|
31
31
|
v-if="!router.rightField || (model.fields1Dic[router.rightField] && model.fields1Dic[router.rightField].value == 1)"
|
|
32
|
-
:is="router.is" :vmodel="router" :
|
|
32
|
+
:is="router.is" :vmodel="router" :flagAppMode="model.flagAppMode" :api="model.optionApi" @click="fieldClickHandler(router)">
|
|
33
33
|
</component>
|
|
34
34
|
</div>
|
|
35
35
|
</el-drawer>
|
|
@@ -153,7 +153,6 @@
|
|
|
153
153
|
placement: 'left-start',//方向,传值可查看Popper UI组件placement属性
|
|
154
154
|
},
|
|
155
155
|
drawer: false,
|
|
156
|
-
teletext:true
|
|
157
156
|
}
|
|
158
157
|
},
|
|
159
158
|
watch: {
|
package/src/main.js
CHANGED
|
@@ -12,14 +12,14 @@ Vue.use(ElementUI, { size: 'mini'});
|
|
|
12
12
|
// 关闭生产模式下给出的提示
|
|
13
13
|
Vue.config.productionTip = false;
|
|
14
14
|
Vue.use(centaline, {
|
|
15
|
-
baseUrl: "http://10.88.22.
|
|
15
|
+
baseUrl: "http://10.88.22.13:7070/max-uplink-api/v1/form/router",
|
|
16
16
|
// baseUrl: "http://10.6.1.162:17070/max-uplink-api/v1/form/router",
|
|
17
17
|
// baseUrl: "http://10.25.10.63:9999/v1/form/router",
|
|
18
18
|
// baseUrl: "http://10.88.22.42:9999/v1/form/router",
|
|
19
19
|
// baseUrl: "http://10.88.22.69:8080/api/",
|
|
20
20
|
// baseUrl: "http://10.88.22.40:8080/api/",
|
|
21
|
-
baseUrl: "http://tjcptest.centaline.com.cn/",
|
|
22
|
-
flagRouterSelf: true,
|
|
21
|
+
// baseUrl: "http://tjcptest.centaline.com.cn/",
|
|
22
|
+
// flagRouterSelf: true,
|
|
23
23
|
zindex: 999,
|
|
24
24
|
showRequestSuccessMessage: true,
|
|
25
25
|
showRequestErrorMessage: true,
|
|
@@ -48,7 +48,7 @@ Vue.use(centaline, {
|
|
|
48
48
|
getRequestHeaders: function () {
|
|
49
49
|
return {
|
|
50
50
|
oldToken: '038e4dcf-1976-4fca-a66a-93611ea1b18c',
|
|
51
|
-
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.
|
|
51
|
+
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEzksKwjAUheG9ZOyF5L7jLG3sxEWI1RR0JFZBEfduxUU4_Qb_Oa8w38ewDhlNnZmg33QEXItBpylCr7lI8YLayU4HqYhmQDY49CkSIJYK0asNVCmrxV3lXByX0kJLCdMGvKMCKOxMg3A2CavQHpewTuqJRKPQKpz2tx-gZv3CfW7XbXv-49z5dlpmR0t8lDiBWGvAqSnsZZogjkqCaTocyMP7AwAA__8.S8HluKh69E2SDbM5s5Ff9U6dYD3vC_g9UbVQZOyLRGM',
|
|
52
52
|
|
|
53
53
|
originalRequestURL: 'http://10.88.22.67:8080',
|
|
54
54
|
EstateInfo: '{"estateId":"FAF029E8-EC28-4297-83CF-B8FFD826DB91","estateName":"AABBCC"}',
|