补正
This commit is contained in:
parent
106983e8a2
commit
3467a01d5b
@ -432,7 +432,7 @@
|
||||
listInspectionGoods(this.queryParams).then(response => {
|
||||
this.inspectionGoodsList = response.data.records;
|
||||
this.inspectionGoodsList.price=this.inspectionGoodsList.price / 100
|
||||
this.total = response.total;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
listMallPartners(this.hzsarr).then(response => {
|
||||
|
@ -206,7 +206,13 @@
|
||||
<el-dialog :title="title" :visible.sync="open" width="600px" append-to-body>
|
||||
<el-form ref="form" :model="form" :rules="rules" label-width="120px">
|
||||
<el-form-item label="商品分类" prop="price">
|
||||
<el-select v-model="form.goodsCategoryId" placeholder="请选择">
|
||||
<el-select
|
||||
v-model="form.goodsCategoryId"
|
||||
clearable
|
||||
filterable
|
||||
placeholder="请选择"
|
||||
:loading="typeLoading"
|
||||
loading-text="请稍等...">
|
||||
<el-option
|
||||
v-for="item in categoryList"
|
||||
:key="item.id"
|
||||
@ -334,7 +340,6 @@
|
||||
open: false,
|
||||
// 查询参数
|
||||
queryParams: {
|
||||
|
||||
pageNum: 1,
|
||||
pageSize: 10,
|
||||
id: null,
|
||||
@ -404,7 +409,8 @@
|
||||
isSpecial: [
|
||||
{ required: true, message: "特价/正常不能为空", trigger: "change" }
|
||||
],
|
||||
}
|
||||
},
|
||||
typeLoading: false
|
||||
};
|
||||
},
|
||||
created() {
|
||||
@ -452,13 +458,14 @@
|
||||
console.log('resp',response)
|
||||
this.inspectionGoodsList = response.data.records;
|
||||
this.inspectionGoodsList.price=this.inspectionGoodsList.price / 100
|
||||
this.total = response.total;
|
||||
this.total = response.data.total;
|
||||
this.loading = false;
|
||||
});
|
||||
this.typeLoading = true
|
||||
categoryList().then(res=>{
|
||||
this.categoryList = res.data;
|
||||
this.typeLoading = false
|
||||
})
|
||||
|
||||
// listMallPartners(this.hzsarr).then(response => {
|
||||
// this.mallPartnersList = response.rows;
|
||||
// console.log('查询合作商管理列表 ',this.mallPartnersList)
|
||||
@ -532,6 +539,7 @@
|
||||
},
|
||||
/** 重置按钮操作 */
|
||||
resetQuery() {
|
||||
this.queryParams.isListing = null
|
||||
this.resetForm("queryForm");
|
||||
this.handleQuery();
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user