Bladeren bron

已读/未读

xiaodai2022 2 jaren geleden
bovenliggende
commit
7a04014879

+ 9 - 8
src/apis/service/process/unRead/index.js

@@ -2,12 +2,13 @@
 import http from '@/apis/axios'
 const api = 'admin/'
 export default {
- // 分页查询
- list: (data, params) => http(api + 'msglist', data, 'post', params),
- // 详情
- detail: (data, params) => http(api + 'msginfo', data, 'post', params),
- // 修改状态
- status: (data, params) => http(api + 'msglimitread', data, 'post', params),
- // 全部标记未已读
- allStatus: (data, params) => http(api + 'msgallread', data, 'post', params),
+    // 分页查询
+    list: (data, params) => http(api + 'msglist', data, 'post', params),
+    // 详情
+    detail: (data, params) => http(api + 'msginfo', data, 'post', params),
+    // 修改状态
+    status: (data, params) => http(api + 'msglimitread', data, 'post', params),
+    // 全部标记未已读
+    allStatus: (data, params) => http(api + 'msgallread', data, 'post', params),
+
 }

+ 55 - 33
src/views/process/read/index.vue

@@ -22,36 +22,52 @@
       "
     >
       <template #table-header="{}">
-        <div style="width: 100%; height: 30px">
-          <el-row :gutter="10">
-            <el-col :span="24">
-              <el-col :span="3" style="width: 66px; float: right">
-                <el-button
-                  type="primary"
-                  :size="searchSize"
-                  style="float: right"
-                  @click="searchList"
-                >
-                  刷新
-                </el-button>
-              </el-col>
-              <el-col
-                :span="3"
-                style="width: 66px; float: right"
-                v-if="powers.some((item) => item == '003')"
+        <el-row :gutter="10" style="padding: 0 0 0 80px; width: 100%">
+          <el-col :span="10" style="width: 230px">
+            <el-select
+              clearable
+              :size="'mini'"
+              style="width: 100%"
+              v-model="parmValue.order_type"
+              placeholder="订单类型"
+              @click="
+                pageInfo.curr = 1;
+                parmValue.page = 1;
+                searchList();
+              "
+            >
+              <el-option
+                v-for="item in process_router_list"
+                :key="item.type"
+                :label="item.name"
+                :value="item.type"
               >
-                <el-button
-                  :size="searchSize"
-                  type="success"
-                  style="float: right"
-                  @click="openModal('add', false)"
-                >
-                  添加
-                </el-button>
-              </el-col>
-            </el-col>
-          </el-row>
-        </div>
+              </el-option>
+            </el-select>
+          </el-col>
+          <el-col :span="10" style="width: 400px; padding: 0 0 0 10px">
+            <el-input
+              :size="'mini'"
+              v-model="parmValue.orderCode"
+              placeholder="订单编号"
+              @blur="
+                pageInfo.curr = 1;
+                parmValue.page = 1;
+                searchList();
+              "
+            ></el-input>
+          </el-col>
+          <el-col :span="3" style="width: 66px; float: right">
+            <el-button
+              type="primary"
+              :size="searchSize"
+              style="float: right"
+              @click="searchList"
+            >
+              刷新
+            </el-button>
+          </el-col>
+        </el-row>
       </template>
       <!-- <template #status="{ scope }">
         <el-tag
@@ -111,6 +127,9 @@ export default {
       parmValue: {
         page: 1, // 页码
         size: 15, // 每页显示条数
+        is_read: "1",
+        order_type: "",
+        orderCode: "",
       },
       // 表格 - 数据
       tableData: [],
@@ -127,19 +146,19 @@ export default {
         total: 0,
       },
       // 表格 - 列参数
-      columns:columns 
+      columns: columns,
     };
   },
   mounted() {
-    this.searchProList();
+    // this.searchProList();
     this.searchList();
   },
   methods: {
     getRouter(toRouter, queryId) {
       if (toRouter && queryId) {
         this.routeGoto(toRouter, { id: queryId, type: "view" });
-      }else{
-         this.$message.warning("暂未找到相关流程!");
+      } else {
+        this.$message.warning("暂未找到相关流程!");
       }
     },
 
@@ -153,6 +172,9 @@ export default {
       this.parmValue = {
         page: 1, // 页码
         size: 15, // 每页显示条数
+        is_read: "1",
+        order_type: "",
+        orderCode: "",
       };
       // this.searchProList();
       this.searchList();

+ 147 - 35
src/views/process/unRead/index.vue

@@ -21,37 +21,73 @@
         searchList();
       "
     >
-      <template #table-header="{}">
-        <div style="width: 100%; height: 30px">
-          <el-row :gutter="10">
-            <el-col :span="24">
-              <el-col :span="3" style="width: 66px; float: right">
-                <el-button
-                  type="primary"
-                  :size="searchSize"
-                  style="float: right"
-                  @click="searchList"
-                >
-                  刷新
-                </el-button>
-              </el-col>
-              <el-col
-                :span="3"
-                style="width: 66px; float: right"
-                v-if="powers.some((item) => item == '003')"
+      <template #table-header="{ selection }">
+        <el-row :gutter="10" style="padding: 0 0 0 80px; width: 100%">
+          <el-col :span="10" style="width: 230px">
+            <el-select
+              clearable
+              :size="'mini'"
+              style="width: 100%"
+              v-model="parmValue.order_type"
+              placeholder="订单类型"
+              @click="
+                pageInfo.curr = 1;
+                parmValue.page = 1;
+                searchList();
+              "
+            >
+              <el-option
+                v-for="item in process_router_list"
+                :key="item.type"
+                :label="item.name"
+                :value="item.type"
               >
-                <el-button
-                  :size="searchSize"
-                  type="success"
-                  style="float: right"
-                  @click="openModal('add', false)"
-                >
-                  添加
-                </el-button>
-              </el-col>
-            </el-col>
-          </el-row>
-        </div>
+              </el-option>
+            </el-select>
+          </el-col>
+          <el-col :span="10" style="width: 400px; padding: 0 0 0 10px">
+            <el-input
+              :size="'mini'"
+              v-model="parmValue.orderCode"
+              placeholder="订单编号"
+              @blur="
+                pageInfo.curr = 1;
+                parmValue.page = 1;
+                searchList();
+              "
+            ></el-input>
+          </el-col>
+          <el-col :span="3" style="width: 66px; float: right">
+            <el-button
+              type="primary"
+              :size="searchSize"
+              style="float: right"
+              @click="searchList"
+            >
+              刷新
+            </el-button>
+          </el-col>
+          <el-col :span="3" style="width: 90px; float: right">
+            <el-button
+              type="primary"
+              :size="searchSize"
+              style="float: right"
+              @click="changeStatus(selection, '全部标记为已读', 0)"
+            >
+              全部已读
+            </el-button>
+          </el-col>
+          <el-col :span="3" style="width: 66px; float: right">
+            <el-button
+              type="primary"
+              :size="searchSize"
+              style="float: right"
+              @click="changeStatus(selection, '批量标记为已读', 1)"
+            >
+              批量已读
+            </el-button>
+          </el-col>
+        </el-row>
       </template>
       <!-- <template #status="{ scope }">
         <el-tag
@@ -71,10 +107,7 @@
           content="详情"
           placement="top"
         >
-          <i
-            class="el-icon-view tb-icon"
-            @click="getRouter(scope.row.toRouter, scope.row.queryId)"
-          ></i>
+          <i class="el-icon-view tb-icon" @click="wentRead(scope.row)"></i>
         </el-tooltip>
       </template>
     </ex-table>
@@ -112,6 +145,9 @@ export default {
       parmValue: {
         page: 1, // 页码
         size: 15, // 每页显示条数
+        is_read: "0",
+        order_type: "",
+        orderCode: "",
       },
       // 表格 - 数据
       tableData: [],
@@ -128,10 +164,18 @@ export default {
         total: 0,
       },
       // 表格 - 列参数
-      columns: columns,
+      columns: [
+        {
+          type: "selection",
+          fixed: "left",
+          _noset_: true,
+        },
+        ...columns,
+      ],
     };
   },
   mounted() {
+    this.columns.unshift();
     this.searchList();
   },
   methods: {
@@ -153,9 +197,77 @@ export default {
       this.parmValue = {
         page: 1, // 页码
         size: 15, // 每页显示条数
+        is_read: "0",
+        order_type: "",
+        orderCode: "",
       };
       this.searchList();
     },
+    /**
+     * 启用/禁用
+     * @param {String} id id
+     * @param {String} status 0-禁用 1-启用
+     */
+    async changeStatus(selection, title, type) {
+      if (type === 1 && selection && selection.length === 0) {
+        this.$message.warning("至少选择一条数据!");
+        return;
+      }
+      await this.$confirm(`确定要${title}?`, {
+        confirmButtonText: "确定",
+        cancelButtonText: "取消",
+        type: "warning",
+      })
+        .then(async () => {
+          if (type === 1) {
+            let sitem = { id: [] };
+            selection.forEach((a) => {
+              sitem.id.push(a.id);
+            });
+
+            await this.set_status(title, type, sitem);
+          } else {
+            await this.set_status(title, type, {});
+          }
+        })
+        .catch(() => {
+          console.log("取消");
+        });
+    },
+    async set_status(title, type, sitem) {
+      let res = {};
+      if (type === 1) {
+        res = await asyncRequest.status(sitem);
+      } else {
+        res = await asyncRequest.allStatus({});
+      }
+      const { code } = res;
+      if (code === 0) {
+        this.$notify.success({
+          title: title + "成功!",
+          message: "",
+        });
+        this.pageInfo.curr = 1;
+        this.parmValue.page = 1;
+        this.searchList();
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.$message.warning(message);
+      }
+    },
+
+    async wentRead(item) {
+      const { toRouter, queryId, id } = item;
+      const { code, data, message } = await asyncRequest.detail({ id: id });
+      if (code === 0) {
+        this.getRouter(toRouter, queryId);
+      } else if (code >= 100 && code <= 104) {
+        await this.logout();
+      } else {
+        this.$message.warning(message);
+      }
+    },
 
     // 刷新表格
     async searchList() {

+ 16 - 0
src/views/sellOut/sellOutOrder/detail.vue

@@ -108,6 +108,22 @@
                       ).label || '--'
                     "
                   ></el-tag>
+
+                  <el-tooltip
+                    class="fr"
+                    effect="dark"
+                    content="详情"
+                    placement="top"
+                  >
+                    <i
+                      class="el-icon-view tb-icon"
+                      @click="
+                        routeGoto('sellOutOrderDetail', {
+                          id: scope.row.outCode,
+                        })
+                      "
+                    ></i>
+                  </el-tooltip>
                 </template>
                 <template slot="order_type">
                   <el-tag