|
@@ -26,6 +26,11 @@
|
|
|
@pressEnter="$refs.table.refresh(true)" />
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
+ <a-col :md="6" :sm="24">
|
|
|
+ <a-form-item label="接单状态">
|
|
|
+ <v-select code="RIDER_WORK_STATUS" v-model="queryParam.workStatus" allowClear placeholder="请选择接单状态" id="driverManage-workStatus"></v-select>
|
|
|
+ </a-form-item>
|
|
|
+ </a-col>
|
|
|
<a-col :md="6" :sm="24">
|
|
|
<a-button type="primary" @click="$refs.table.refresh(true)" id="userList-handSubmit" style="margin-right: 10px;">查询</a-button>
|
|
|
<a-button type="" @click="reset" id="userList-reset">重置</a-button>
|
|
@@ -97,7 +102,8 @@ export default {
|
|
|
// 查询参数
|
|
|
queryParam: {
|
|
|
userName: '',
|
|
|
- userMobile: ''
|
|
|
+ userMobile: '',
|
|
|
+ workStatus: ''
|
|
|
},
|
|
|
showModal: false,
|
|
|
itemData: {}, // 编辑行数据
|
|
@@ -126,6 +132,12 @@ export default {
|
|
|
width: 100,
|
|
|
align: 'center'
|
|
|
},
|
|
|
+ {
|
|
|
+ title: '接单状态',
|
|
|
+ dataIndex: 'workStatusDictValue',
|
|
|
+ width: 100,
|
|
|
+ align: 'center'
|
|
|
+ },
|
|
|
{
|
|
|
title: '状态',
|
|
|
width: 100,
|
|
@@ -176,7 +188,8 @@ export default {
|
|
|
// 重置
|
|
|
reset () {
|
|
|
this.queryParam.userName = ''
|
|
|
- this.queryParam.userMobile = '',
|
|
|
+ this.queryParam.userMobile = ''
|
|
|
+ this.queryParam.workStatus = ''
|
|
|
this.refreshTable()
|
|
|
},
|
|
|
handleEdit (row) {
|