Przeglądaj źródła

分发发记录列表

hebinlong 4 lat temu
rodzic
commit
5a5de4b72e
1 zmienionych plików z 202 dodań i 0 usunięć
  1. 202 0
      src/views/orderList/Distribute.vue

+ 202 - 0
src/views/orderList/Distribute.vue

@@ -0,0 +1,202 @@
+<template>
+  <!-- 分发记录表 -->
+  <div>
+
+    <div class="DistributeTable">
+      <el-table v-loading="loading" :data="tableData" border style="width: 100%">
+        <el-table-column type="selection" />
+        <el-table-column label="订单号" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.orderId }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="分发订单号" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.recId }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="应用ID" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.appId }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="手机号" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.mobileNo }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="流量包ID" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.fossPackageId }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="归属地" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.mobileHome }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="发送时间" width="200" align="center" prop="createTime">
+          <template slot-scope="scope">
+            <span>{{ scope.row.lastSendDate }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="回调时间" width="200" align="center" prop="createTime">
+          <template slot-scope="scope">
+            <span>{{ scope.row.modifyDate }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="用时" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.useTime }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="下发次数" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.sendCount }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="下发状态" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.sendStatus }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="下发状态描述" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.sendStatusDesc }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="通道" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.channelName }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="网管序号" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.gwSeqNo }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="网管错误码" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.gwErrorCode }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="网管错误信息" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.gwErrorMsg }}</span>
+          </template>
+        </el-table-column>
+        <el-table-column label="最后回调信息" width="200" align="center">
+          <template slot-scope="scope">
+            <span>{{ scope.row.lastCallbackMsg }}</span>
+          </template>
+        </el-table-column>
+      </el-table>
+    </div>
+  </div>
+</template>
+
+<script>
+export default {
+  data() {
+    return {
+      tableData: [
+        {
+          orderId: '123456',
+          recId: '123456',
+          appId: 'xingshengyouxuan',
+          mobileNo: 'phone number',
+          fossPackageId: 'YDHF100',
+          mobileHome: '四川',
+          lastSendDate: '2021-05-14 13:08:00',
+          modifyDate: '2021-05-14 13:08:00',
+          useTime: '999',
+          sendCount: '5',
+          sendStatus: true,
+          sendStatusDesc: '下发',
+          channelName: '123',
+          gwSeqNo: '46845',
+          gwErrorCode: '1',
+          gwErrorMsg: 'ERROR Request',
+          lastCallbackMsg: 'PASS'
+        }, {
+          orderId: '123456',
+          recId: '123456',
+          appId: 'xingshengyouxuan',
+          mobileNo: 'phone number',
+          fossPackageId: 'YDHF100',
+          mobileHome: '四川',
+          lastSendDate: '2021-05-14 13:08:00',
+          modifyDate: '2021-05-14 13:08:00',
+          useTime: '999',
+          sendCount: '5',
+          sendStatus: true,
+          sendStatusDesc: '下发',
+          channelName: '123',
+          gwSeqNo: '46845',
+          gwErrorCode: '1',
+          gwErrorMsg: 'ERROR Request',
+          lastCallbackMsg: 'PASS'
+        }, {
+          orderId: '123456',
+          recId: '123456',
+          appId: 'xingshengyouxuan',
+          mobileNo: 'phone number',
+          fossPackageId: 'YDHF100',
+          mobileHome: '四川',
+          lastSendDate: '2021-05-14 13:08:00',
+          modifyDate: '2021-05-14 13:08:00',
+          useTime: '999',
+          sendCount: '5',
+          sendStatus: true,
+          sendStatusDesc: '下发',
+          channelName: '123',
+          gwSeqNo: '46845',
+          gwErrorCode: '1',
+          gwErrorMsg: 'ERROR Request',
+          lastCallbackMsg: 'PASS'
+        }, {
+          orderId: '123456',
+          recId: '123456',
+          appId: 'xingshengyouxuan',
+          mobileNo: 'phone number',
+          fossPackageId: 'YDHF100',
+          mobileHome: '四川',
+          lastSendDate: '2021-05-14 13:08:00',
+          modifyDate: '2021-05-14 13:08:00',
+          useTime: '999',
+          sendCount: '5',
+          sendStatus: true,
+          sendStatusDesc: '下发',
+          channelName: '123',
+          gwSeqNo: '46845',
+          gwErrorCode: '1',
+          gwErrorMsg: 'ERROR Request',
+          lastCallbackMsg: 'PASS'
+        }, {
+          orderId: '123456',
+          recId: '123456',
+          appId: 'xingshengyouxuan',
+          mobileNo: 'phone number',
+          fossPackageId: 'YDHF100',
+          mobileHome: '四川',
+          lastSendDate: '2021-05-14 13:08:00',
+          modifyDate: '2021-05-14 13:08:00',
+          useTime: '999',
+          sendCount: '5',
+          sendStatus: true,
+          sendStatusDesc: '下发',
+          channelName: '123',
+          gwSeqNo: '46845',
+          gwErrorCode: '1',
+          gwErrorMsg: 'ERROR Request',
+          lastCallbackMsg: 'PASS'
+        }
+      ]
+    }
+  }
+}
+</script>
+
+<style>
+
+</style>