Merge branch 'repair'
This commit is contained in:
commit
bed05336b5
@ -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();
|
||||
},
|
||||
|
@ -314,7 +314,7 @@
|
||||
<el-form-item label="联系方式">
|
||||
<el-input type="text" v-model="form.buyPhone"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="号牌号码">
|
||||
<el-form-item label="车牌号码">
|
||||
<el-input type="text" v-model="form.carNum"></el-input>
|
||||
</el-form-item>
|
||||
<el-form-item label="品牌型号">
|
||||
@ -350,6 +350,9 @@
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item>
|
||||
<el-form-item label="代办人手机号">
|
||||
<el-input v-model="form.otherPhone" placeholder="请选择代办人手机号"/>
|
||||
</el-form-item>
|
||||
|
||||
<el-form-item label="选择商品">
|
||||
<el-cascader
|
||||
@ -794,6 +797,7 @@ export default {
|
||||
createBy: null,
|
||||
updateTime: null,
|
||||
updateBy: null,
|
||||
otherPhone: null,
|
||||
};
|
||||
this.selectInspectionProject = []
|
||||
this.resetForm("form");
|
||||
|
@ -75,12 +75,12 @@
|
||||
<span class="item__txt">{{ scope.row.sale ? scope.row.sale.name : scope.row.sale }}</span>
|
||||
</div>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column v-if="!exportColumn.includes('type')" align="center" label="类型" width="180" prop="type">-->
|
||||
<!-- <div v-if="scope.row.id" class="item" slot-scope="scope">-->
|
||||
<!-- <ServerChoose @input-blur="save(scope.row)" class="item__input" v-model="scope.row.type"/>-->
|
||||
<!-- <span class="item__txt">{{ scope.row.type }}</span>-->
|
||||
<!-- </div>-->
|
||||
<!-- </el-table-column>-->
|
||||
<el-table-column v-if="!exportColumn.includes('type')" align="center" label="类型" width="180" prop="type">
|
||||
<div v-if="scope.row.id" class="item" slot-scope="scope">
|
||||
<ServerChoose @input-blur="save(scope.row)" class="item__input" v-model="scope.row.type"/>
|
||||
<span class="item__txt">{{ scope.row.type }}</span>
|
||||
</div>
|
||||
</el-table-column>
|
||||
<!-- <el-table-column v-if="!exportColumn.includes('accountType')" align="center" label="账类" width="180" prop="accountType">-->
|
||||
<!-- <div v-if="scope.row.id" class="item" slot-scope="scope">-->
|
||||
<!-- <el-select v-model="scope.row.accountType" class="item__input" @blur="save(scope.row)">-->
|
||||
|
Loading…
Reference in New Issue
Block a user