|
|
@@ -1713,8 +1713,8 @@ export default {
|
|
|
visitorIdentify: '', // 游客身份证
|
|
|
ticketTypeIdList: [], // 票种列表
|
|
|
scenicIdList: [], // 景点列表
|
|
|
- unitPriceBegin: null, // 单价
|
|
|
- unitPriceEnd: null, // 单价
|
|
|
+ unitPriceBegin: undefined, // 单价
|
|
|
+ unitPriceEnd: undefined, // 单价
|
|
|
pageNum: 1,
|
|
|
pageSize: 10
|
|
|
},
|
|
|
@@ -1867,6 +1867,8 @@ export default {
|
|
|
},
|
|
|
reset () {
|
|
|
this.$refs.form.resetFields()
|
|
|
+ this.form.unitPriceBegin = undefined
|
|
|
+ this.form.unitPriceEnd = undefined
|
|
|
this.getOrderList(true)
|
|
|
},
|
|
|
setSearchKeywords (val) {
|