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