|
@@ -24,28 +24,6 @@
|
|
|
<template #table-header="{}">
|
|
|
<div style="width: 100%">
|
|
|
<el-row style="padding: 0 0 0 80px">
|
|
|
- <!-- <el-col :span="4" style="width: 140px">
|
|
|
- <el-select
|
|
|
- v-model="parmValue.msg_type"
|
|
|
- filterable
|
|
|
- clearable
|
|
|
- :size="searchSize"
|
|
|
- placeholder="消息类型"
|
|
|
- style="width: 100%"
|
|
|
- @change="
|
|
|
- pageInfo.curr = 1;
|
|
|
- parmValue.page = 1;
|
|
|
- searchList();
|
|
|
- "
|
|
|
- >
|
|
|
- <el-option
|
|
|
- v-for="item in msg_typeList"
|
|
|
- :key="'msg_type' + item.id"
|
|
|
- :label="item.label"
|
|
|
- :value="item.id"
|
|
|
- />
|
|
|
- </el-select>
|
|
|
- </el-col> -->
|
|
|
<el-col :span="6" style="width: 303px; padding: 0 0 0 10px">
|
|
|
<period-date-picker
|
|
|
:type="1"
|
|
@@ -59,7 +37,7 @@
|
|
|
<el-col :span="4" style="width: 450px; padding: 0 0 0 10px">
|
|
|
<el-input
|
|
|
:size="searchSize"
|
|
|
- v-model="parmValue.oid"
|
|
|
+ v-model="parmValue.tid"
|
|
|
:maxlength="40"
|
|
|
@blur="
|
|
|
pageInfo.curr = 1;
|
|
@@ -97,20 +75,6 @@
|
|
|
"
|
|
|
></el-tag>
|
|
|
</template>
|
|
|
-
|
|
|
- <!-- <template #msg_type="{ scope }">
|
|
|
- <el-tag
|
|
|
- :size="tablebtnSize"
|
|
|
- :type="
|
|
|
- (msg_typeList.find((item) => item.id == scope.row.msg_type + '') || {})
|
|
|
- .type || '--'
|
|
|
- "
|
|
|
- v-text="
|
|
|
- (msg_typeList.find((item) => item.id == scope.row.msg_type + '') || {})
|
|
|
- .label || '--'
|
|
|
- "
|
|
|
- ></el-tag>
|
|
|
- </template> -->
|
|
|
</ex-table>
|
|
|
</div>
|
|
|
<no-auth v-else></no-auth>
|
|
@@ -143,17 +107,6 @@ export default {
|
|
|
},
|
|
|
data() {
|
|
|
return {
|
|
|
- msg_typeList: [
|
|
|
- { id: "1", label: "商品上架", type: "success" },
|
|
|
- { id: "2", label: "商品下架", type: "primary" },
|
|
|
- // { id: "3", label: "生成订单", type: "info" },
|
|
|
- { id: "4", label: "商品删除", type: "danger" },
|
|
|
- { id: "5", label: "商品编辑", type: "warning" },
|
|
|
- ],
|
|
|
- is_display_list: [
|
|
|
- { id: "0", label: "上架", type: "success" },
|
|
|
- { id: "1", label: "下架", type: "primary" },
|
|
|
- ],
|
|
|
loading: false,
|
|
|
sitem: {},
|
|
|
showRateModel: false,
|
|
@@ -164,7 +117,7 @@ export default {
|
|
|
parmValue: {
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
- msg_type: "",
|
|
|
+ tid: "",
|
|
|
start_date: "",
|
|
|
end_date: "",
|
|
|
},
|
|
@@ -201,7 +154,7 @@ export default {
|
|
|
this.parmValue = {
|
|
|
page: 1, // 页码
|
|
|
size: 15, // 每页显示条数
|
|
|
- msg_type: "",
|
|
|
+ tid: "",
|
|
|
start_date: "",
|
|
|
end_date: "",
|
|
|
};
|