|
|
|
<template>
|
|
|
|
<div class="main-content">
|
|
|
|
<div class="area-form">
|
|
|
|
<el-form :inline="true" size="default">
|
|
|
|
<el-form-item label="分组">
|
|
|
|
<el-select v-model="form.type" placeholder="请选择">
|
|
|
|
<el-option label="全部" :value="1"></el-option>
|
|
|
|
<el-option label="媒体评测" :value="2"></el-option>
|
|
|
|
<el-option label="产品宣传" :value="3"></el-option>
|
|
|
|
<el-option label="用户活动" :value="4"></el-option>
|
|
|
|
<el-option label="趣味互动" :value="5"></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="车型">
|
|
|
|
<el-select v-model="form.series" placeholder="请选择">
|
|
|
|
<el-option label="全部" :value="1"></el-option>
|
|
|
|
<el-option label="车系1" :value="2"></el-option>
|
|
|
|
<el-option label="车系2" :value="3"></el-option>
|
|
|
|
</el-select>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item label="标签">
|
|
|
|
<el-input v-model="form.tag" placeholder="请输入"></el-input>
|
|
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button type="primary" @click="confirm">查 询</el-button>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
</div>
|
|
|
|
<div class="button-tab">
|
|
|
|
<el-button size="default" type="primary" @click="goRelease">上传素材</el-button>
|
|
|
|
<el-button size="default">批量删除</el-button>
|
|
|
|
</div>
|
|
|
|
<div class="area-table">
|
|
|
|
<el-table :data="tableData.data" size="default" border
|
|
|
|
@selection-change="handleSelect"
|
|
|
|
:header-cell-style="{background: '#EEE'}">
|
|
|
|
<el-table-column type="selection" width="55" />
|
|
|
|
<el-table-column prop="title" label="素材" width="360"></el-table-column>
|
|
|
|
<el-table-column prop="tag" label="标签" width="240">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-tag style="margin-right: 8px" v-for="(item,index) in scope.row.tag" :key="index">
|
|
|
|
{{item == 1?'媒体评测':item == 2?'产品宣传':'其他'}}
|
|
|
|
</el-tag>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column prop="set" label="分组" :formatter="statusFormatter"></el-table-column>
|
|
|
|
<el-table-column prop="series" label="车型" :formatter="statusFormatter"></el-table-column>
|
|
|
|
<el-table-column prop="info" label="描述"></el-table-column>
|
|
|
|
<el-table-column prop="time" label="上传时间"></el-table-column>
|
|
|
|
<el-table-column prop="action" label="操作" fixed="right" width="240">
|
|
|
|
<template #default="scope">
|
|
|
|
<el-link type="primary" @click="goEdit(scope.row.id)">编辑</el-link>
|
|
|
|
<el-link type="danger" @click="singleDel(scope.row.id)" style="margin-left: 8px">删除</el-link>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table>
|
|
|
|
<el-pagination
|
|
|
|
v-model:currentPage="pagination.current"
|
|
|
|
v-model:page-size="pagination.pageSize"
|
|
|
|
:page-sizes="[10, 20, 30, 40]"
|
|
|
|
background
|
|
|
|
layout="total, sizes, prev, pager, next, jumper"
|
|
|
|
:total="pagination.total"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import {defineComponent, reactive, watch, getCurrentInstance} from 'vue'
|
|
|
|
import {statusFormatter} from './config.js'
|
|
|
|
export default defineComponent({
|
|
|
|
name: 'v-questList',
|
|
|
|
setup() {
|
|
|
|
const form = reactive({
|
|
|
|
type: undefined,
|
|
|
|
series: undefined,
|
|
|
|
tag: ''
|
|
|
|
});
|
|
|
|
const tableData = reactive({
|
|
|
|
data: [],
|
|
|
|
});
|
|
|
|
const { proxy } = getCurrentInstance();
|
|
|
|
const pagination = reactive({
|
|
|
|
total: 0,
|
|
|
|
current: 1,
|
|
|
|
pageSize: 10
|
|
|
|
});
|
|
|
|
return {
|
|
|
|
form,proxy,
|
|
|
|
tableData,
|
|
|
|
pagination,
|
|
|
|
statusFormatter
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.getData();
|
|
|
|
watch(() => (this.pagination.pageSize), () => {
|
|
|
|
this.getData()
|
|
|
|
});
|
|
|
|
watch(() => (this.pagination.current), () => {
|
|
|
|
this.getData()
|
|
|
|
})
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
getData() {
|
|
|
|
let obj = Object.assign({pageNum: this.pagination.current,pageSize: this.pagination.pageSize})
|
|
|
|
this.proxy.$post("/reference/list", obj).then(res => {
|
|
|
|
const data = res.data
|
|
|
|
this.tableData.data = data.records;
|
|
|
|
this.pagination.total = data.total
|
|
|
|
}).catch(() => {});
|
|
|
|
},
|
|
|
|
confirm() {
|
|
|
|
this.getData()
|
|
|
|
},
|
|
|
|
handleSelect(index) {
|
|
|
|
let arr = [];
|
|
|
|
index.forEach(ele => {
|
|
|
|
arr.push(ele.id)
|
|
|
|
})
|
|
|
|
console.log(arr)
|
|
|
|
},
|
|
|
|
goRelease() {
|
|
|
|
this.$router.push({ name: "MatUpload" })
|
|
|
|
},
|
|
|
|
goEdit(value) {
|
|
|
|
this.$router.push({ name: "MatUpload",params:{id:value}})
|
|
|
|
},
|
|
|
|
//删除
|
|
|
|
singleDel(id) {
|
|
|
|
this.$alert(
|
|
|
|
'是否删除'+id+'?', //文字
|
|
|
|
'删除', //标题
|
|
|
|
{type: 'warning'}
|
|
|
|
).then(() => {
|
|
|
|
this.$message.success('删除成功')
|
|
|
|
}).catch(() => {})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
.area-table {
|
|
|
|
margin-top: 16px
|
|
|
|
}
|
|
|
|
</style>
|