Commit 1c627f1a authored by youjie's avatar youjie

车订单调整

parent eff0a2e2
......@@ -160,6 +160,15 @@
</el-select>
</span>
</li>
<li>
<span>
<em>订单类型</em>
<el-select v-model="msg.OrderType" @change="handleCurrentChange(1)">
<el-option :key="0" :value="0" label="不限"></el-option>
<el-option v-for="item in orderType" :key="item.ID" :label="item.Name" :value="item.ID"></el-option>
</el-select>
</span>
</li>
<li>
<span><em>{{ $t('OrderList.search.orderId') }}</em>
<el-input clearable type="Number" v-model="msg.MainId" :placeholder="$t('objFill.orderid')"
......@@ -252,6 +261,7 @@ export default {
IsFinish: -1,
Sort: 1,
OrderId: null,
OrderType: 0,
MainId: null,
OrderTCNUM: '',
},
......@@ -262,8 +272,8 @@ export default {
{ Name: this.$t('OrderList.orderStatus.cancel'), ID: '2' },
],
orderType: [
{ Name: this.$t('OrderList.orderType.tour'), ID: '1' },
{ Name: this.$t('OrderList.orderType.guest'), ID: '2' },
{ Name: '常规', ID: '1' },
{ Name: '包车', ID: '2' },
],
Datelist: '',
DatelistUse: '',
......
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