centaline-data-driven 1.2.1 → 1.2.13
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/build/centaline/webpack.centaline.conf.js +1 -1
- package/package.json +1 -1
- package/src/Detail.vue +1 -1
- package/src/Edit.vue +48 -4
- package/src/Form.vue +6 -22
- package/src/SearchList.vue +2 -4
- package/src/centaline/common/index.js +3 -0
- package/src/centaline/css/common.css +6 -0
- package/src/centaline/dynamicDetail/src/dynamicPropertyDetailRET.vue +42 -91
- package/src/centaline/dynamicHyperLink/index.js +1 -1
- package/src/centaline/dynamicInputNumber/src/dynamicInputNumber.vue +1 -1
- package/src/centaline/dynamicPlaceHolder/index.js +1 -1
- package/src/centaline/dynamicSearchList/src/dynamicSearchTable.vue +8 -7
- package/src/centaline/dynamicT/src/dynamicT.vue +6 -2
- package/src/centaline/dynamicTree/src/dynamicTreeList.vue +42 -9
- package/src/centaline/loader/src/ctl/Detail.js +49 -18
- package/src/centaline/loader/src/ctl/L.js +21 -23
- package/src/centaline/loader/src/ctl/PlaceHolder.js +2 -2
- package/src/centaline/loader/src/ctl/QuickInputSos.js +127 -0
- package/src/centaline/loader/src/ctl/T.js +0 -4
- package/src/centaline/loader/src/ctl.js +1 -0
- package/src/centaline/quickInput/src/quickInput.vue +2 -2
- package/src/centaline/quickInputSos/src/quickInput.vue +96 -0
- package/src/main.js +5 -12
- package/wwwroot/static/centaline/centaline-data-driven.js +3 -3
- package/wwwroot/static/centaline/centaline-data-driven.js.map +1 -1
- package/.vs/Centaline.Front_End.DataDriven/DesignTimeBuild/.dtbcache +0 -0
- package/.vs/Centaline.Front_End.DataDriven/v16/Server/sqlite3/db.lock +0 -0
- package/.vs/Centaline.Front_End.DataDriven/v16/Server/sqlite3/storage.ide +0 -0
- package/obj/Centaline.Front_End.DataDriven.csproj.nuget.dgspec.json +0 -73
- package/obj/Centaline.Front_End.DataDriven.csproj.nuget.g.props +0 -29
- package/obj/Centaline.Front_End.DataDriven.csproj.nuget.g.targets +0 -15
- package/obj/Debug/netcoreapp2.1/Centaline.Front_End.DataDriven.AssemblyInfo.cs +0 -23
- package/obj/Debug/netcoreapp2.1/Centaline.Front_End.DataDriven.RazorAssemblyInfo.cs +0 -20
- package/obj/project.assets.json +0 -11907
|
@@ -18,10 +18,14 @@ const Detail = function (source,para ,callBack) {
|
|
|
18
18
|
activeIndex1:'0',
|
|
19
19
|
activeIndex2:'0',
|
|
20
20
|
searchlistKey:0,
|
|
21
|
-
tags2Key:0,
|
|
21
|
+
tags2Key:0,
|
|
22
|
+
operationKey:0,
|
|
22
23
|
_searchConditionApiTags1:null,
|
|
23
24
|
_searchDataApiTags1:null,
|
|
24
|
-
_paramDataTags1:null,
|
|
25
|
+
_paramDataTags1:null,
|
|
26
|
+
_operationApiRouter:null,
|
|
27
|
+
_operationList:null,
|
|
28
|
+
_operationRouters:[],
|
|
25
29
|
get fields1() {
|
|
26
30
|
return data.fields1;
|
|
27
31
|
},
|
|
@@ -244,22 +248,44 @@ const Detail = function (source,para ,callBack) {
|
|
|
244
248
|
return rtn._operationApiRouter;
|
|
245
249
|
}
|
|
246
250
|
},
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
251
|
+
get operationList() {
|
|
252
|
+
return rtn._operationList;
|
|
253
|
+
},
|
|
254
|
+
get operationRouters() {
|
|
255
|
+
return rtn._operationRouters;
|
|
256
|
+
},
|
|
257
|
+
getOperationList(){
|
|
258
|
+
if (rtn._operationList !==null){
|
|
259
|
+
return rtn._operationList;
|
|
260
|
+
}
|
|
261
|
+
else if(rtn.operationApiRouter){
|
|
262
|
+
let action =rtn.operationApiRouter.action;
|
|
263
|
+
let para={};
|
|
264
|
+
rtn.operationApiRouter.submitFormField.forEach((v) => {
|
|
265
|
+
para[v] = rtn.fields1Dic[v].value;
|
|
266
|
+
});
|
|
267
|
+
Vue.prototype.$api.postHandler(common.globalUri(), { action: action,para:para}).then(
|
|
268
|
+
function (response) {
|
|
269
|
+
if (response.rtnCode === Enum.ReturnCode.Successful) {
|
|
270
|
+
rtn._operationList=response.content;
|
|
271
|
+
if(rtn._operationList && rtn._operationList.length>0){
|
|
272
|
+
rtn._operationList.forEach((v,i) => {
|
|
273
|
+
if (v.modelRouter) {
|
|
274
|
+
var router = Router(v.modelRouter);
|
|
275
|
+
router.is = "ct-btn";
|
|
276
|
+
router.attrs = { size: "mini" }
|
|
277
|
+
if(router.rightField){
|
|
278
|
+
router.show=v[router.rightField];
|
|
279
|
+
}
|
|
280
|
+
rtn._operationList[i].router=router;
|
|
281
|
+
rtn._operationRouters.push(router)
|
|
282
|
+
}
|
|
283
|
+
});
|
|
284
|
+
}
|
|
260
285
|
}
|
|
261
|
-
|
|
262
|
-
|
|
286
|
+
}
|
|
287
|
+
);
|
|
288
|
+
}
|
|
263
289
|
},
|
|
264
290
|
doAction(response,field) {
|
|
265
291
|
if (response.responseData) {
|
|
@@ -269,9 +295,14 @@ const Detail = function (source,para ,callBack) {
|
|
|
269
295
|
|| field.id=='Trust'
|
|
270
296
|
|| field.id=='RealLook'
|
|
271
297
|
|| field.id=='StatusAdjust'
|
|
298
|
+
|| field.id=='OperationKey'
|
|
272
299
|
|| field.id=='Key'){
|
|
300
|
+
let id=field.id;
|
|
301
|
+
if(field.id=='OperationKey'){
|
|
302
|
+
id='Key';
|
|
303
|
+
}
|
|
273
304
|
var advIndex = rtn.tags1.findIndex((v) => {
|
|
274
|
-
return v.appID ===
|
|
305
|
+
return v.appID === id;
|
|
275
306
|
});
|
|
276
307
|
rtn.$vue.handleSelect({index:advIndex.toString()});
|
|
277
308
|
}
|
|
@@ -3,34 +3,32 @@ import Base from './Base';
|
|
|
3
3
|
const T = function (source) {
|
|
4
4
|
var rtn = {
|
|
5
5
|
get labelValue() {
|
|
6
|
-
var
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
}
|
|
12
|
-
else {
|
|
13
|
-
if (source.code1) {
|
|
14
|
-
rtn1 = source.code1;
|
|
15
|
-
}
|
|
6
|
+
var val = "";
|
|
7
|
+
var lst = [];
|
|
8
|
+
var joinChar = source.joinChar == undefined ? '' : source.joinChar;
|
|
9
|
+
for (var i = 1; i <= 5; i++) {
|
|
10
|
+
getFileNameVal(i);
|
|
16
11
|
}
|
|
12
|
+
val = lst.join(joinChar);
|
|
17
13
|
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
if (source
|
|
23
|
-
|
|
14
|
+
return val;
|
|
15
|
+
|
|
16
|
+
function getFileNameVal(fieldNameIndex) {
|
|
17
|
+
var fieldVal = "";
|
|
18
|
+
if (source['fieldName' + fieldNameIndex]) {
|
|
19
|
+
if (source['name' + fieldNameIndex]) {
|
|
20
|
+
fieldVal = source['name' + fieldNameIndex];
|
|
21
|
+
}
|
|
22
|
+
else {
|
|
23
|
+
if (source['code' + fieldNameIndex]) {
|
|
24
|
+
fieldVal = source['code' + fieldNameIndex];
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
lst.push(fieldVal);
|
|
24
28
|
}
|
|
25
29
|
}
|
|
26
30
|
|
|
27
|
-
|
|
28
|
-
rtn = rtn1 + " ~ " + rtn2;
|
|
29
|
-
}
|
|
30
|
-
else {
|
|
31
|
-
rtn = rtn1;
|
|
32
|
-
}
|
|
33
|
-
return rtn;
|
|
31
|
+
|
|
34
32
|
}
|
|
35
33
|
};
|
|
36
34
|
rtn = base.copy(Base(source), rtn);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import base from '../../index';
|
|
2
|
-
import Base from './Base';
|
|
2
|
+
import Base from './Base';
|
|
3
3
|
|
|
4
4
|
const PlaceHolder = function (source) {
|
|
5
5
|
var rtn = {
|
|
@@ -14,4 +14,4 @@ const PlaceHolder = function (source) {
|
|
|
14
14
|
return rtn;
|
|
15
15
|
};
|
|
16
16
|
|
|
17
|
-
export default PlaceHolder;
|
|
17
|
+
export default PlaceHolder;
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import base from '../../index';
|
|
2
|
+
import Base from './Base';
|
|
3
|
+
import valid from '../../../validate/index';
|
|
4
|
+
import Axios from 'axios';
|
|
5
|
+
import common from '../../../common';
|
|
6
|
+
import Vue from 'vue';
|
|
7
|
+
const QuickInput = function (source, moreActionRouter) {
|
|
8
|
+
var rtn = {
|
|
9
|
+
options: [{ code: source.code1, name: source.name1 }],
|
|
10
|
+
get text() {
|
|
11
|
+
if (source.isList && source.name1 && rtn.attrs.placeholder && rtn.displayLabelAfterSelected) {
|
|
12
|
+
return rtn.attrs.placeholder + ":" + source.name1;
|
|
13
|
+
}
|
|
14
|
+
return source.name1;
|
|
15
|
+
},
|
|
16
|
+
set text(v) {
|
|
17
|
+
if(source.displayName1)
|
|
18
|
+
{
|
|
19
|
+
source.displayName1 = v;
|
|
20
|
+
}else
|
|
21
|
+
{
|
|
22
|
+
source.name1 = v;
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
get optionColCount() {
|
|
26
|
+
return parseInt(source.optCount) || 5;
|
|
27
|
+
},
|
|
28
|
+
set optionColCount(v) {
|
|
29
|
+
source.optCount = v;
|
|
30
|
+
},
|
|
31
|
+
get parentName() {
|
|
32
|
+
return source.parentField;
|
|
33
|
+
},
|
|
34
|
+
reset() {
|
|
35
|
+
this.value = this.defaultValue;
|
|
36
|
+
this.text = this.defaultText;
|
|
37
|
+
},
|
|
38
|
+
defaultText: source.defaultName1,
|
|
39
|
+
get labelValue() {
|
|
40
|
+
if (source.name1) {
|
|
41
|
+
return source.name1;
|
|
42
|
+
}
|
|
43
|
+
else {
|
|
44
|
+
return '';
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
optionAttrs: {
|
|
48
|
+
value: 'code',
|
|
49
|
+
label: 'name',
|
|
50
|
+
displayLabel:'displayName',
|
|
51
|
+
actionType: 'actionType',
|
|
52
|
+
flagDeleted: 'flagDeleted'
|
|
53
|
+
},
|
|
54
|
+
attrs: {
|
|
55
|
+
style: {
|
|
56
|
+
width: '100%'
|
|
57
|
+
},
|
|
58
|
+
clearable: true,
|
|
59
|
+
filterable: true,
|
|
60
|
+
remote: true
|
|
61
|
+
},
|
|
62
|
+
apiParams: {
|
|
63
|
+
paramName: 'k',
|
|
64
|
+
parentName: 'pk',
|
|
65
|
+
parentValue: 'pv',
|
|
66
|
+
search: 't'
|
|
67
|
+
},
|
|
68
|
+
get clearable() {
|
|
69
|
+
if (typeof source.clear === 'undefined') {
|
|
70
|
+
return true;
|
|
71
|
+
}
|
|
72
|
+
if (source.clear) {
|
|
73
|
+
return true;
|
|
74
|
+
}
|
|
75
|
+
else {
|
|
76
|
+
return false;
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
set clearable(v) {
|
|
80
|
+
source.clear = v;
|
|
81
|
+
},
|
|
82
|
+
get searchTick() {
|
|
83
|
+
return parseInt(source.searchTick) || 250;
|
|
84
|
+
},
|
|
85
|
+
set searchTick(v) {
|
|
86
|
+
source.searchTick = v;
|
|
87
|
+
},
|
|
88
|
+
getOptions(paramsAction,key) {
|
|
89
|
+
var self = this;
|
|
90
|
+
var apiAddrs = paramsAction || this.api;
|
|
91
|
+
var params = {
|
|
92
|
+
action: apiAddrs,
|
|
93
|
+
para: {
|
|
94
|
+
paramName: self.paramName,
|
|
95
|
+
parentValue: rtn.getFormParentFieldPara(),
|
|
96
|
+
key: key,
|
|
97
|
+
}
|
|
98
|
+
};
|
|
99
|
+
Vue.prototype.$api.postHandler(common.globalUri(), params).then((response) => {
|
|
100
|
+
if (response.rtnCode === 200) {
|
|
101
|
+
self.options = response.content;
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
},
|
|
105
|
+
moreActionRouter: moreActionRouter,//更多高级查询
|
|
106
|
+
//弹出SearchList类型,0不弹框,1点按钮弹框,2直接点搜索框弹框
|
|
107
|
+
get popupSearchListType() {
|
|
108
|
+
if (moreActionRouter) {
|
|
109
|
+
return 1;
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
return 0;
|
|
113
|
+
},
|
|
114
|
+
get moreActionBtnName() {
|
|
115
|
+
if (moreActionRouter) {
|
|
116
|
+
return moreActionRouter.label;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
return null;
|
|
120
|
+
},
|
|
121
|
+
};
|
|
122
|
+
rtn = base.copy(Base(source), rtn);
|
|
123
|
+
rtn = base.copy(rtn, valid.Init(rtn));
|
|
124
|
+
return rtn;
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
export default QuickInput;
|
|
@@ -3,10 +3,6 @@ import Base from './Base';
|
|
|
3
3
|
import valid from '../../../validate/index';
|
|
4
4
|
const T = function (source, inputType, readonly, isPassword) {
|
|
5
5
|
var rtn = {
|
|
6
|
-
|
|
7
|
-
// attrs: {
|
|
8
|
-
// clearable: true,
|
|
9
|
-
// },
|
|
10
6
|
get clearable() {
|
|
11
7
|
if (typeof source.clear === 'undefined'&&!readonly&&!source.locked) {
|
|
12
8
|
return true;
|
|
@@ -35,6 +35,7 @@ const loader = {
|
|
|
35
35
|
Detail: require("./ctl/Detail.js").default,
|
|
36
36
|
PhotoSelect: require("./ctl/PhotoSelect.js").default,
|
|
37
37
|
PhotoSelectList: require("./ctl/PhotoSelectList.js").default,
|
|
38
|
+
QuickInputSos: require("./ctl/QuickInputSos.js").default,
|
|
38
39
|
};
|
|
39
40
|
|
|
40
41
|
export default loader;
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
<el-dropdown @command="handleCommand" @visible-change="getOptions">
|
|
4
4
|
<i class="el-icon-more"></i>
|
|
5
5
|
<el-dropdown-menu ref="dropdown" slot="dropdown">
|
|
6
|
-
<el-dropdown-item v-for="(op, index) in options" :key="index" :command="op.
|
|
6
|
+
<el-dropdown-item v-for="(op, index) in options" :key="index" :command="op.code">{{op.name}}</el-dropdown-item>
|
|
7
7
|
</el-dropdown-menu>
|
|
8
8
|
</el-dropdown>
|
|
9
9
|
</div>
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
var params = {
|
|
31
31
|
action: this.action,
|
|
32
32
|
para: {
|
|
33
|
-
paramName: this.
|
|
33
|
+
paramName: this.pn
|
|
34
34
|
}
|
|
35
35
|
};
|
|
36
36
|
this.$api.postHandler(this.$common.globalUri(), params).then((response) => {
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="ct-quickInput">
|
|
3
|
+
|
|
4
|
+
<el-popover ref="pop" placement="bottom-start" v-model="showDrop" trigger="click">
|
|
5
|
+
<div>
|
|
6
|
+
<div>
|
|
7
|
+
<el-input ref="searchInput" size="mini" suffix-icon="el-icon-search" v-model="searchText" @input="searchInputHandle"></el-input>
|
|
8
|
+
</div>
|
|
9
|
+
<ctSelectOptionVertical :model="model" @click="selectOption($event)"></ctSelectOptionVertical>
|
|
10
|
+
</div>
|
|
11
|
+
<i slot="reference" class="el-icon-more"></i>
|
|
12
|
+
</el-popover>
|
|
13
|
+
</div>
|
|
14
|
+
</template>
|
|
15
|
+
<script>
|
|
16
|
+
|
|
17
|
+
import selectOption from '../../selectOption/src/selectOption'
|
|
18
|
+
import dynamicElement from '../../mixins/dynamicElement'
|
|
19
|
+
import ctSelectOptionVertical from '../../selectOption/src/selectOptionVertical'
|
|
20
|
+
export default {
|
|
21
|
+
name: 'ctQuickInput',
|
|
22
|
+
mixins: [dynamicElement],
|
|
23
|
+
props: {
|
|
24
|
+
pn: String,
|
|
25
|
+
action: String
|
|
26
|
+
},
|
|
27
|
+
components: {
|
|
28
|
+
'ctSelectOption': selectOption,
|
|
29
|
+
'ctSelectOptionVertical': ctSelectOptionVertical
|
|
30
|
+
},
|
|
31
|
+
created() {
|
|
32
|
+
let that=this;
|
|
33
|
+
if (typeof this.vmodel === 'undefined') {
|
|
34
|
+
this.model = this.loaderObj.QuickInputSos(
|
|
35
|
+
{
|
|
36
|
+
code1:'',
|
|
37
|
+
name1:'',
|
|
38
|
+
paramName1:that.pn,
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
else {
|
|
43
|
+
this.model = this.vmodel;
|
|
44
|
+
}
|
|
45
|
+
this.searchInputHandle();
|
|
46
|
+
},
|
|
47
|
+
data() {
|
|
48
|
+
return {
|
|
49
|
+
options:[],
|
|
50
|
+
searchText: "",
|
|
51
|
+
showDrop: false,
|
|
52
|
+
|
|
53
|
+
};
|
|
54
|
+
},
|
|
55
|
+
methods: {
|
|
56
|
+
|
|
57
|
+
getOptions: function () {
|
|
58
|
+
var self = this;
|
|
59
|
+
this.model.getOptions(this.action, self.searchText);
|
|
60
|
+
|
|
61
|
+
},
|
|
62
|
+
searchInputHandle: function () {
|
|
63
|
+
var currentSeatch = this.searchText;
|
|
64
|
+
this.searchTickControl(currentSeatch);
|
|
65
|
+
},
|
|
66
|
+
searchTickControl: function (search) {
|
|
67
|
+
var self = this;
|
|
68
|
+
setTimeout(function () {
|
|
69
|
+
if (search === self.searchText) {
|
|
70
|
+
self.getOptions(self.searchText);
|
|
71
|
+
}
|
|
72
|
+
}, self.model.searchTick);
|
|
73
|
+
},
|
|
74
|
+
selectOption(value) {
|
|
75
|
+
if (this.model.value === value) {
|
|
76
|
+
this.$set(this, 'showDrop', false);
|
|
77
|
+
return;
|
|
78
|
+
}
|
|
79
|
+
else {
|
|
80
|
+
this.model.value = value;
|
|
81
|
+
}
|
|
82
|
+
this.$set(this, 'showDrop', false);
|
|
83
|
+
this.$emit('click', value);
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
mounted() {
|
|
87
|
+
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
</script>
|
|
91
|
+
<style>
|
|
92
|
+
.ct-quickInput .el-icon-more:hover {
|
|
93
|
+
cursor: pointer;
|
|
94
|
+
color: #409EFF;
|
|
95
|
+
}
|
|
96
|
+
</style>
|
package/src/main.js
CHANGED
|
@@ -8,12 +8,12 @@ import App from './App';
|
|
|
8
8
|
import router from './router';
|
|
9
9
|
import centaline from './centaline/index';
|
|
10
10
|
|
|
11
|
+
|
|
11
12
|
Vue.use(ElementUI, { size: 'mini'});
|
|
12
13
|
// 关闭生产模式下给出的提示
|
|
13
14
|
Vue.config.productionTip = false;
|
|
14
15
|
Vue.use(centaline, {
|
|
15
|
-
baseUrl:
|
|
16
|
-
// baseUrl: "http://tjcptest.centaline.com.cn/v1/form/router",
|
|
16
|
+
baseUrl: 'http://10.88.22.67:9999/v1/form/router',
|
|
17
17
|
zindex: 999,
|
|
18
18
|
showRequestErrorMessage: true,
|
|
19
19
|
handler: {
|
|
@@ -21,12 +21,6 @@ Vue.use(centaline, {
|
|
|
21
21
|
openTab: function (action) {
|
|
22
22
|
alert("打开tab页:" + action)
|
|
23
23
|
},
|
|
24
|
-
openDetail: function (action) {
|
|
25
|
-
alert("打开tab页:" + action)
|
|
26
|
-
},
|
|
27
|
-
openPropertyDetailRET: function (submitData, pageTitle, parentModel) {
|
|
28
|
-
alert("打开tab页:" + pageTitle)
|
|
29
|
-
},
|
|
30
24
|
// 关闭当前tab
|
|
31
25
|
closeTab: function () {
|
|
32
26
|
alert("关闭当前tab")
|
|
@@ -34,10 +28,9 @@ Vue.use(centaline, {
|
|
|
34
28
|
// 获取请求头
|
|
35
29
|
getRequestHeaders: function () {
|
|
36
30
|
return {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
Authorization:'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6IjE0NmU5ZjEzLTVjMmYtNGVlMy1hM2U5LWIxM2QyZThjZTBhZSJ9.Gl8K5lbG7t5DyCqouu7Ux7Oh9xuAxqdOXr4JnoHCN-YwC3b2zPO-C2sHbYJUZHYQPa7kTNRmg1xJiwugpVo5Xw',
|
|
31
|
+
Authorization: 'Bearer eyJhbGciOiJIUzUxMiJ9.eyJsb2dpbl91c2VyX2tleSI6ImJhMjA1MWJmLTM3MTQtNGQ2Yi1iMmMzLTM0YzBlOWE4ZjBiNSJ9.Aery7bMGAE_HTh1yX3vFFczELt0dB97ca5jwXXcp8hdhJ_2o8XTrQi314GVz4YoM2dfh8i9qFiU0FCr7TJgZyA',
|
|
32
|
+
originalRequestURL: 'http://10.88.23.22:9999',
|
|
33
|
+
EstateInfo: '{"estateId":"201509230915485D942241BBA30FF49F","estateName":"A-%E7%88%B1%E7%90%B4%E6%B5%B7B%E7%BB%84"}'
|
|
41
34
|
};
|
|
42
35
|
},
|
|
43
36
|
// 请求完成事件,可判断是否登录过期执行响应操作
|