fix: 预售订单增加参数
This commit is contained in:
parent
ced8d97cf7
commit
bd156edb60
|
@ -24,7 +24,7 @@
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="商品名称">
|
<el-form-item label="商品名称">
|
||||||
<el-input
|
<el-input
|
||||||
v-model="formInline.name"
|
v-model="formInline.productName"
|
||||||
placeholder="商品名称"
|
placeholder="商品名称"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
@ -149,9 +149,9 @@ export default {
|
||||||
shopId: '',
|
shopId: '',
|
||||||
pageNumber: 1,
|
pageNumber: 1,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
name: '',
|
productName: '',
|
||||||
beginDate: '',
|
startTime: '',
|
||||||
endDate: ''
|
endTime: ''
|
||||||
},
|
},
|
||||||
statusList: [
|
statusList: [
|
||||||
{
|
{
|
||||||
|
@ -184,21 +184,22 @@ export default {
|
||||||
group: '0',
|
group: '0',
|
||||||
// marketId: this.marketId,
|
// marketId: this.marketId,
|
||||||
shopId: this.shopId,
|
shopId: this.shopId,
|
||||||
name: '',
|
productName: '',
|
||||||
beginDate: '',
|
startTime: '',
|
||||||
endDate: ''
|
endTime: ''
|
||||||
}
|
}
|
||||||
|
this.valueOne = []
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
changeValueOne(e) {
|
changeValueOne(e) {
|
||||||
console.log(e)
|
console.log(e)
|
||||||
if (e) {
|
if (e) {
|
||||||
this.formInline.beginDate = e[0]
|
this.formInline.startTime = e[0]
|
||||||
this.formInline.endDate = e[1]
|
this.formInline.endTime = e[1]
|
||||||
} else {
|
} else {
|
||||||
this.formInline.beginDate = ''
|
this.formInline.startTime = ''
|
||||||
this.formInline.endDate = ''
|
this.formInline.endTime = ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
getList() {
|
getList() {
|
||||||
|
@ -218,10 +219,11 @@ export default {
|
||||||
this.formInline = {
|
this.formInline = {
|
||||||
group: '0',
|
group: '0',
|
||||||
shopId: this.shopId,
|
shopId: this.shopId,
|
||||||
name: '',
|
productName: '',
|
||||||
beginDate: '',
|
startTime: '',
|
||||||
endDate: ''
|
endTime: ''
|
||||||
}
|
}
|
||||||
|
this.valueOne = []
|
||||||
this.getList()
|
this.getList()
|
||||||
},
|
},
|
||||||
handleClick(e) {
|
handleClick(e) {
|
||||||
|
|
Loading…
Reference in New Issue