Commit e091f54c authored by Mac's avatar Mac

修改

parent f9a92509
...@@ -230,6 +230,8 @@ ...@@ -230,6 +230,8 @@
<div class="el-input el-input--small" style="width: 40%;" > <div class="el-input el-input--small" style="width: 40%;" >
<input type="text" autocomplete="off" placeholder="商品名称" class="el-input__inner" v-model="msg2.Name" <input type="text" autocomplete="off" placeholder="商品名称" class="el-input__inner" v-model="msg2.Name"
@clear="msg2.pageIndex=1,getProductGoodsPageList()" @clear="msg2.pageIndex=1,getProductGoodsPageList()"
clearable
> >
</div> </div>
<button type="button" class="el-button el-button--default el-button--small" style="margin-left: 15px" @click="msg2.pageIndex=1,getProductGoodsPageList()">查找商品</button> <button type="button" class="el-button el-button--default el-button--small" style="margin-left: 15px" @click="msg2.pageIndex=1,getProductGoodsPageList()">查找商品</button>
...@@ -499,14 +501,14 @@ ...@@ -499,14 +501,14 @@
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.ProductCategoryTreeList = res.data.data this.ProductCategoryTreeList = res.data.data
this.getProductGoodsPageList() this.getProductGoodsPageList(1)
} else { } else {
// this.Info(res.data.message); // this.Info(res.data.message);
} }
}) })
}, },
getProductGoodsPageList(){ getProductGoodsPageList(type=2){
this.loading_t =true this.loading_t =true
this.apipost("/api/product/GetProductGoodsPageList", this.msg2, res => { this.apipost("/api/product/GetProductGoodsPageList", this.msg2, res => {
this.loading_t=false; this.loading_t=false;
...@@ -523,12 +525,14 @@ ...@@ -523,12 +525,14 @@
this.tableData = pageData this.tableData = pageData
this.count = res.data.data.count this.count = res.data.data.count
} }
if(type==1){
setTimeout(()=>{
if(this.$route.query.ID){
this.getDiscountCouponDetail(this.$route.query.ID)
}
},10)
}
setTimeout(()=>{
if(this.$route.query.ID){
this.getDiscountCouponDetail(this.$route.query.ID)
}
},10)
}) })
}, },
...@@ -570,10 +574,7 @@ ...@@ -570,10 +574,7 @@
batchAdd(){ //批量添加 batchAdd(){ //批量添加
let newdata=[] let newdata=[]
for(let i=0;i<this.multipleSelection.length;i++){ for(let i=0;i<this.multipleSelection.length;i++){
console.log(this.commoditylist)
console.log(this.multipleSelection)
if(this.commoditylist.length>0){ if(this.commoditylist.length>0){
console.log('有的情况')
for(let j=0;j<this.commoditylist.length;j++){ for(let j=0;j<this.commoditylist.length;j++){
if(this.multipleSelection[i].Id!=this.commoditylist[j].Id){ if(this.multipleSelection[i].Id!=this.commoditylist[j].Id){
newdata.push(this.multipleSelection[i]) newdata.push(this.multipleSelection[i])
...@@ -586,7 +587,6 @@ ...@@ -586,7 +587,6 @@
} }
} }
}else { }else {
console.log('没有的情况')
newdata.push(this.multipleSelection[i]) newdata.push(this.multipleSelection[i])
for(let z =0;z<this.tableData.length;z++){ for(let z =0;z<this.tableData.length;z++){
if(this.tableData[z].Id==this.multipleSelection[i].Id){ if(this.tableData[z].Id==this.multipleSelection[i].Id){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment