|
@@ -20,14 +20,14 @@ const searchData = ref({
|
|
|
responseDuration: 0
|
|
responseDuration: 0
|
|
|
})
|
|
})
|
|
|
|
|
|
|
|
-const userTypeList = [
|
|
|
|
|
|
|
+const modeList = [
|
|
|
{
|
|
{
|
|
|
- label: 'Customer',
|
|
|
|
|
- value: 'customer'
|
|
|
|
|
|
|
+ label: 'Truck',
|
|
|
|
|
+ value: 'Truck'
|
|
|
},
|
|
},
|
|
|
{
|
|
{
|
|
|
- label: 'Employee',
|
|
|
|
|
- value: 'employee'
|
|
|
|
|
|
|
+ label: 'Rail',
|
|
|
|
|
+ value: 'Rail'
|
|
|
}
|
|
}
|
|
|
]
|
|
]
|
|
|
|
|
|
|
@@ -118,9 +118,9 @@ const tableRef = ref()
|
|
|
|
|
|
|
|
<div class="tips_filter filter-item">
|
|
<div class="tips_filter filter-item">
|
|
|
<span class="label">Delivery Mode:</span>
|
|
<span class="label">Delivery Mode:</span>
|
|
|
- <el-select v-model="searchData.userType" placeholder="User Type">
|
|
|
|
|
|
|
+ <el-select v-model="searchData.userType" placeholder="" clearable>
|
|
|
<el-option
|
|
<el-option
|
|
|
- v-for="item in userTypeList"
|
|
|
|
|
|
|
+ v-for="item in modeList"
|
|
|
:key="item.value"
|
|
:key="item.value"
|
|
|
:label="item.label"
|
|
:label="item.label"
|
|
|
:value="item.value"
|
|
:value="item.value"
|