gcs-ui-lib 1.2.27 → 1.2.28
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/lib/gcs-ui-lib.common.js +470 -462
- package/lib/gcs-ui-lib.css +1 -1
- package/lib/gcs-ui-lib.umd.js +470 -462
- package/lib/gcs-ui-lib.umd.min.js +15 -15
- package/package.json +1 -1
- package/packages/SelectTreeUnit/src/main.vue +4 -0
- package/packages/SelectTreeUnitForm/src/main.vue +4 -0
package/package.json
CHANGED
|
@@ -502,6 +502,9 @@ export default {
|
|
|
502
502
|
for (let i in this.seachObj) {
|
|
503
503
|
str += `&${i}=${this.seachObj[i]}`;
|
|
504
504
|
}
|
|
505
|
+
if(this.relaNo){
|
|
506
|
+
str += `&_relaNo=${this.relaNo}`;
|
|
507
|
+
}
|
|
505
508
|
request({ url: this.url + str, method: "GET", cache:true, headers }).then((res) => {
|
|
506
509
|
this.loading = false;
|
|
507
510
|
let data = res.fundTreeVoList;
|
|
@@ -1015,6 +1018,7 @@ export default {
|
|
|
1015
1018
|
isUnitDataScope: this.isUnitDataScope,
|
|
1016
1019
|
unitNameOrNoLike: this.searchKey,
|
|
1017
1020
|
},
|
|
1021
|
+
_relaNo: this.relaNo
|
|
1018
1022
|
};
|
|
1019
1023
|
const headers = {
|
|
1020
1024
|
relaNo: this.relaNo,
|
|
@@ -484,6 +484,9 @@ export default {
|
|
|
484
484
|
//搜索是在查询全部的模式下进行
|
|
485
485
|
str += "&unitNameOrNoLike=" + this.searchKey;
|
|
486
486
|
}
|
|
487
|
+
if(this.relaNo){
|
|
488
|
+
str += `&_relaNo=${this.relaNo}`;
|
|
489
|
+
}
|
|
487
490
|
const headers = {
|
|
488
491
|
relaNo: this.relaNo,
|
|
489
492
|
};
|
|
@@ -988,6 +991,7 @@ export default {
|
|
|
988
991
|
isUnitDataScope: this.isUnitDataScope,
|
|
989
992
|
unitNameOrNoLike: this.searchKey,
|
|
990
993
|
},
|
|
994
|
+
_relaNo: this.relaNo,
|
|
991
995
|
};
|
|
992
996
|
// if(type=="search"){
|
|
993
997
|
// params.data.unitNameOrNoLike =
|