zhaojs
2023-10-20 afb05754bf1f7b6aee63e85ed6e9eecf5b5d5b29
web/src/views/sms_listmanage/smslist.vue
@@ -36,7 +36,7 @@
          :data-source="data"
          :loading="loading"
        >
          <span v-if="record.sendstatus==6" slot="action" slot-scope="text, record">
          <span v-if="record.sendstatus==7" slot="action" slot-scope="text, record">
          <!--   <template>
              <a-popconfirm
                title="是否确认删除该任务?"
@@ -108,27 +108,23 @@
        customRender: (text, record) => {
          switch (text) {
            case 0:
            return '审核中';
         case 1:
            return '审核成功';
         case 2:
            return '审核失败';
         case 3:
            return '等待发送';
         case 4:
            return '发送中';
         case 5:
            return '发送成功';
         case 6:
            return '发送失败';
         case 7:
            return '接收中';
         case 8:
            return '接收成功';
         case 9:
            return '接收失败';
              default:
                  return '异常'
               return '审核中';
            case 1:
              return '审核成功';
            case 2:
              return '审核失败';
            case 3:
              return '等待发送';
            case 4:
              return '发送中';
            case 5:
              return '接收中';
            case 6:
              return '接收成功';
            case 7:
              return '接收失败';
            default:
              return '接收失败';
          }
        }
      },