Browse Source

添加字段

lex 1 year ago
parent
commit
91e7ded082
1 changed files with 7 additions and 0 deletions
  1. 7 0
      src/views/oms/apply/index.vue

+ 7 - 0
src/views/oms/apply/index.vue

@@ -23,6 +23,9 @@
           <el-form-item label="输入搜索:">
             <el-input v-model="listQuery.id" class="input-width" placeholder="服务单号"></el-input>
           </el-form-item>
+          <el-form-item label="订单编号:">
+            <el-input v-model="listQuery.orderSn" class="input-width" placeholder="订单编号"></el-input>
+          </el-form-item>
           <el-form-item label="处理状态:">
             <el-select v-model="listQuery.status" placeholder="全部" clearable class="input-width">
               <el-option v-for="item in statusOptions"
@@ -70,6 +73,9 @@
         <el-table-column label="服务单号" width="180" align="center">
           <template slot-scope="scope">{{scope.row.id}}</template>
         </el-table-column>
+        <el-table-column label="订单编号" width="180" align="center">
+          <template slot-scope="scope">{{scope.row.orderSn}}</template>
+        </el-table-column>
         <el-table-column label="申请时间" width="180" align="center">
           <template slot-scope="scope">{{scope.row.createTime | formatTime}}</template>
         </el-table-column>
@@ -137,6 +143,7 @@
     id: null,
     receiverKeyword: null,
     status: null,
+    orderSn: null,
     createTime: null,
     handleMan: null,
     handleTime: null