You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

136 lines
3.3 KiB

3 years ago
<template>
<div>
<lx-header icon="md-apps" style="margin-bottom: 10px; border: 0px; margin-top: 15px" text="活动列表管理">
<div slot="content"></div>
<slot>
<div class="selects">
<div>
<span style="padding: 0 6px;word-break: keep-all;">
关键字
</span>
<Input v-model="select.keyword" placeholder="请输入关键字" style="width: 180px"></Input>
</div>
<Button style="margin-left: 10px" type="primary" @click="select={page:1,keyword:''}">
</Button>
<Button style="margin-left: 10px" type="primary" @click="doSearch"></Button>
<Button style="margin-left: 10px" type="primary" @click="add"></Button>
</div>
</slot>
</lx-header>
<xy-table :list="list" :table-item="table" @delete="deleteitem"
@editor="(row)=>{$refs['addActivity'].id = row.id;$refs['addActivity'].isShow = true;$refs['addActivity'].type = 'editor'}">
<template v-slot:btns >
<button >1212</button>
3 years ago
</template>
</xy-table>
<addActivity ref="addActivity" @refresh="load()"></addActivity>
</div>
</template>
<script>
import {
index,
save,
destroy,
show
} from "@/api/activity/index";
import addActivity from '@/views/activity/components/addActivity'
export default {
components: {
addActivity
},
data() {
return {
select: {
page: 1,
page_size: 20,
keyword: '',
},
total: 0,
list: [],
table: [{
prop: 'name',
label: '活动名称',
align: 'left',
fixed: 'left',
}, {
prop: 'appid',
label: '公众号的APPID',
align: 'center',
fixed: 'left'
}, , {
prop: 'mch_id',
label: '微信商户的ID',
align: 'center',
fixed: 'left'
},
{
prop: 'created_at',
label: '创建信息',
width: 160,
formatter: (v1, v2, value) => {
return value;
}
}
],
}
},
methods: {
doSearch() {
this.select.page = 1;
this.load();
},
add() {
this.$refs['addActivity'].isShow = true
},
pageSizeChange(e) {
this.select.page_size = e;
this.select.page = 1;
this.load();
},
async load() {
const res = await index(this.select)
this.total = res.total
this.list = res.data
},
deleteitem(row) {
destroy({
id: row.id
}).then(res => {
this.load();
this.$Message.success("操作成功");
})
},
pageChange(e) {
this.select.page = e
this.load()
},
},
mounted() {
this.load()
},
created() {
let type = parseInt(this.$route.path.split("_")[1]);
this.type = this.select.is_auth = type;
}
}
</script>
<style lang="scss" scoped>
.selects {
display: flex;
flex-wrap: wrap;
&>div {
margin-bottom: 6px;
}
}
</style>