centaline-data-driven 1.5.8 → 1.5.9
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
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="'/api/
|
|
4
|
+
<ct-form :api="'/api/third-dept-tran/transaction/detail'" :apiParam="apiParam" :topHeight="topHeight"></ct-form>
|
|
5
5
|
<ct-dialog-list></ct-dialog-list>
|
|
6
6
|
</div>
|
|
7
7
|
</template>
|
|
@@ -12,7 +12,21 @@
|
|
|
12
12
|
data() {
|
|
13
13
|
return {
|
|
14
14
|
apiParam:{
|
|
15
|
-
|
|
15
|
+
actionType
|
|
16
|
+
:
|
|
17
|
+
"1",
|
|
18
|
+
originalTraId
|
|
19
|
+
:
|
|
20
|
+
"1654759860127432706",
|
|
21
|
+
pageOnly
|
|
22
|
+
:
|
|
23
|
+
"true",
|
|
24
|
+
pageStyle
|
|
25
|
+
:
|
|
26
|
+
"2",
|
|
27
|
+
pageTitle
|
|
28
|
+
:
|
|
29
|
+
"成交报告"
|
|
16
30
|
},
|
|
17
31
|
topHeight:10,
|
|
18
32
|
}
|
|
@@ -101,10 +101,15 @@
|
|
|
101
101
|
labelShow=this.vmodel.labelValue+this.vmodel.code2;
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
|
+
else if(this.vmodel.type===4){
|
|
105
|
+
if(this.vmodel.name1){
|
|
106
|
+
labelShow=this.vmodel.name1;
|
|
107
|
+
}
|
|
108
|
+
}
|
|
104
109
|
return labelShow;
|
|
105
110
|
},
|
|
106
111
|
},
|
|
107
|
-
template: '<div :class="getClass()" :style="{\'color\':getFontColor()}"
|
|
112
|
+
template: '<div :class="getClass()" :style="{\'color\':getFontColor()}" v-html="getLableShow()"></div>'
|
|
108
113
|
}
|
|
109
114
|
|
|
110
115
|
export default {
|
package/src/main.js
CHANGED
|
@@ -50,7 +50,7 @@ Vue.use(centaline, {
|
|
|
50
50
|
// 获取请求头
|
|
51
51
|
getRequestHeaders: function () {
|
|
52
52
|
return {
|
|
53
|
-
oldToken: '
|
|
53
|
+
oldToken: '1ae3431d-8b29-4c75-9913-4b757dc2b2db',
|
|
54
54
|
token:'aplus eyJhbGciOiJIUzI1NiIsInppcCI6IkRFRiJ9.eNrEjr0OgkAQhN9laza5n727XTtugcaHIBAgwcoIJBrju4tRO3u_YoqvmJk7LFsPB6i4NKSNR61dQKpSwLJJjFmZTXbJU-ZWPuCP-NJaS5JsrLGUpEiRPLJVRqWo1FS111xBAeP1DAcb2ZMzRqiAuVvfYie-xLaMl-N4-8e50zrvs8QSTHKCybkByU1hL-s7NJIMB6EwTAKPJwAAAP__.XDp1uvqZXzcBbrTwxD17-Og6ryO6IJ9eJQg56GMN3a0',
|
|
55
55
|
|
|
56
56
|
originalRequestURL: 'http://10.88.22.67:8080',
|