|
|
@@ -320,13 +320,24 @@
|
|
|
});
|
|
|
},
|
|
|
handleSearch(){
|
|
|
-
|
|
|
+ var typeId = "";
|
|
|
+ var search = "";
|
|
|
+ if (this.model.childStockType){
|
|
|
+ typeId = this.model.childStockType;
|
|
|
+ }
|
|
|
+ if (this.model.goodsName){
|
|
|
+ search = this.model.goodsName;
|
|
|
+ }
|
|
|
+ this.url.list = "/rooms/cesGoods/queryList?typeId="+typeId+"&search="+search;
|
|
|
+ this.loadData(1);
|
|
|
},
|
|
|
handleChangeType(){
|
|
|
if (this.type == 1){
|
|
|
this.type = 2;
|
|
|
+ this.dataSource=[]
|
|
|
} else{
|
|
|
this.type = 1;
|
|
|
+ this.loadData(1);
|
|
|
}
|
|
|
},
|
|
|
submitForm () {
|