...
|
...
|
@@ -137,13 +137,15 @@ export default { |
|
|
// serviceCode,resourceCode
|
|
|
let codeArr=[];
|
|
|
let codeArrSecond=[];
|
|
|
let codeArrTertiary=[];
|
|
|
if(this.activeName=='bos'){
|
|
|
codeArr=this.optionsSetup.serviceCode.split(',');
|
|
|
codeArrSecond=this.optionsSetup.serviceSecondCode?this.optionsSetup.serviceSecondCode.split(','):[];
|
|
|
codeArrTertiary=this.optionsSetup.serviceTertiaryCode?this.optionsSetup.serviceTertiaryCode.split(','):[];
|
|
|
}else{
|
|
|
codeArr=this.optionsSetup.resourceCode.split(',');
|
|
|
codeArrSecond=this.optionsSetup.resourceSecondCode?this.optionsSetup.resourceSecondCode.split(','):[];
|
|
|
|
|
|
codeArrTertiary=this.optionsSetup.resourceTertiaryCode?this.optionsSetup.resourceTertiaryCode.split(','):[];
|
|
|
}
|
|
|
// if(level>0){
|
|
|
if(data.propType){
|
...
|
...
|
@@ -160,7 +162,15 @@ export default { |
|
|
srcName+=codeArr[1];
|
|
|
}
|
|
|
}else if(data.propType=='res'){
|
|
|
if(data.isOracle==1){
|
|
|
srcName+=codeArrTertiary[0];
|
|
|
}else if(data.isOracle==2){
|
|
|
srcName+=codeArrTertiary[1];
|
|
|
}else if(data.isOracle==3){
|
|
|
srcName+=codeArrTertiary[2];
|
|
|
}else{
|
|
|
srcName+=codeArr[2];
|
|
|
}
|
|
|
}else{
|
|
|
if(data.isOracle==1){
|
|
|
srcName+=codeArrSecond[0];
|
...
|
...
|
|