Quellcode durchsuchen

Merge branch 'deploy_yuyueQY' of http://git.chelingzhu.com/chelingzhu-web/zxyj-admin-html into deploy_yuyueQY

zhangdan vor 4 Jahren
Ursprung
Commit
00e54fe9d9
1 geänderte Dateien mit 15 neuen und 2 gelöschten Zeilen
  1. 15 2
      src/views/recoveryManage/riderSet.vue

+ 15 - 2
src/views/recoveryManage/riderSet.vue

@@ -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) {