|
@@ -137,13 +137,15 @@ export default { |
|
@@ -137,13 +137,15 @@ export default { |
137
|
// serviceCode,resourceCode
|
137
|
// serviceCode,resourceCode
|
138
|
let codeArr=[];
|
138
|
let codeArr=[];
|
139
|
let codeArrSecond=[];
|
139
|
let codeArrSecond=[];
|
|
|
140
|
+ let codeArrTertiary=[];
|
140
|
if(this.activeName=='bos'){
|
141
|
if(this.activeName=='bos'){
|
141
|
codeArr=this.optionsSetup.serviceCode.split(',');
|
142
|
codeArr=this.optionsSetup.serviceCode.split(',');
|
142
|
codeArrSecond=this.optionsSetup.serviceSecondCode?this.optionsSetup.serviceSecondCode.split(','):[];
|
143
|
codeArrSecond=this.optionsSetup.serviceSecondCode?this.optionsSetup.serviceSecondCode.split(','):[];
|
|
|
144
|
+ codeArrTertiary=this.optionsSetup.serviceTertiaryCode?this.optionsSetup.serviceTertiaryCode.split(','):[];
|
143
|
}else{
|
145
|
}else{
|
144
|
codeArr=this.optionsSetup.resourceCode.split(',');
|
146
|
codeArr=this.optionsSetup.resourceCode.split(',');
|
145
|
codeArrSecond=this.optionsSetup.resourceSecondCode?this.optionsSetup.resourceSecondCode.split(','):[];
|
147
|
codeArrSecond=this.optionsSetup.resourceSecondCode?this.optionsSetup.resourceSecondCode.split(','):[];
|
146
|
-
|
148
|
+ codeArrTertiary=this.optionsSetup.resourceTertiaryCode?this.optionsSetup.resourceTertiaryCode.split(','):[];
|
147
|
}
|
149
|
}
|
148
|
// if(level>0){
|
150
|
// if(level>0){
|
149
|
if(data.propType){
|
151
|
if(data.propType){
|
|
@@ -160,7 +162,15 @@ export default { |
|
@@ -160,7 +162,15 @@ export default { |
160
|
srcName+=codeArr[1];
|
162
|
srcName+=codeArr[1];
|
161
|
}
|
163
|
}
|
162
|
}else if(data.propType=='res'){
|
164
|
}else if(data.propType=='res'){
|
163
|
- srcName+=codeArr[2];
|
165
|
+ if(data.isOracle==1){
|
|
|
166
|
+ srcName+=codeArrTertiary[0];
|
|
|
167
|
+ }else if(data.isOracle==2){
|
|
|
168
|
+ srcName+=codeArrTertiary[1];
|
|
|
169
|
+ }else if(data.isOracle==3){
|
|
|
170
|
+ srcName+=codeArrTertiary[2];
|
|
|
171
|
+ }else{
|
|
|
172
|
+ srcName+=codeArr[2];
|
|
|
173
|
+ }
|
164
|
}else{
|
174
|
}else{
|
165
|
if(data.isOracle==1){
|
175
|
if(data.isOracle==1){
|
166
|
srcName+=codeArrSecond[0];
|
176
|
srcName+=codeArrSecond[0];
|