<template>
|
<div class="app-container">
|
<el-form :model="queryParam" ref="queryForm" :inline="true">
|
<el-form-item label="问答内容:">
|
<el-input v-model="queryParam.question" clearable></el-input>
|
</el-form-item>
|
<el-form-item>
|
<div style="display: flex">
|
<el-button type="primary" @click="submitForm">查询</el-button>
|
<router-link :to="{ path: '/edit' }" class="link-left">
|
<el-button type="primary">添加</el-button>
|
</router-link>
|
</div>
|
</el-form-item>
|
</el-form>
|
|
<el-table v-loading="listLoading" :data="tableData" border fit highlight-current-row style="width: 100%">
|
<el-table-column prop="question" label="问题" />
|
<el-table-column prop="answer" label="答案" />
|
<el-table-column label="状态" prop="status" width="70px">
|
<template slot-scope="{row}">
|
<el-tag :type="row.status !== '启用' ? 'danger' : 'success'">
|
{{ row.status }}
|
</el-tag>
|
</template>
|
</el-table-column>
|
<el-table-column width="270px" label="操作" align="center">
|
<template slot-scope="{row}">
|
<el-button size="mini" @click="changeStatus(row)" class="link-left">
|
{{ row.status !== '启用' ? '启用' : '禁用' }}
|
</el-button>
|
<router-link :to="{ path: '/edit', query: { id: row.id } }" class="link-left">
|
<el-button size="mini">编辑</el-button>
|
</router-link>
|
<el-popconfirm title="确认删除" @confirm="deleteUser(row)">
|
<el-button slot="reference" size="mini" type="danger" class="link-left">删除</el-button>
|
</el-popconfirm>
|
</template>
|
</el-table-column>
|
</el-table>
|
<pagination v-show="total > 0" :total="total" :page.sync="queryParam.pageIndex" :limit.sync="queryParam.pageSize"
|
@pagination="search" />
|
</div>
|
</template>
|
|
<script>
|
import { mapGetters, mapState } from 'vuex'
|
import Pagination from '@/components/Pagination'
|
import questionAnswerApi from '@/api/questionAnswer'
|
|
export default {
|
components: { Pagination },
|
data() {
|
return {
|
queryParam: {
|
question: '',
|
role: 1,
|
pageIndex: 1,
|
pageSize: 10
|
},
|
listLoading: true,
|
tableData: [],
|
total: 0
|
}
|
},
|
created() {
|
this.search()
|
},
|
methods: {
|
search() {
|
this.listLoading = true
|
questionAnswerApi.pageList(this.queryParam).then(data => {
|
const re = data.response
|
this.tableData = re.list
|
this.total = re.total
|
this.queryParam.pageIndex = re.pageNum
|
this.listLoading = false
|
})
|
},
|
changeStatus(row) {
|
let _this = this
|
questionAnswerApi.updateStatus(row.id).then(re => {
|
if (re.code === 1) {
|
_this.search();
|
_this.$message.success(re.message)
|
} else {
|
_this.$message.error(re.message)
|
}
|
})
|
},
|
deleteUser(row) {
|
questionAnswerApi.delete(row.id).then(re => {
|
if (re.code === 1) {
|
this.search()
|
this.$message.success(re.message)
|
} else {
|
this.$message.error(re.message)
|
}
|
})
|
},
|
submitForm() {
|
this.queryParam.pageIndex = 1
|
this.search()
|
},
|
statusFormatter(status) {
|
return this.enumFormat(this.statusEnum, status)
|
},
|
statusTagFormatter(status) {
|
return this.enumFormat(this.statusTag, status)
|
},
|
statusBtnFormatter(status) {
|
return this.enumFormat(this.statusBtn, status)
|
}
|
|
},
|
computed: {
|
...mapGetters('enumItem', [
|
'enumFormat'
|
]),
|
...mapState('enumItem', {
|
sexEnum: state => state.user.sexEnum,
|
statusEnum: state => state.user.statusEnum,
|
statusTag: state => state.user.statusTag,
|
statusBtn: state => state.user.statusBtn,
|
levelEnum: state => state.user.levelEnum
|
})
|
}
|
}
|
</script>
|
<style lang="scss" scoped>
|
.upload-demo {
|
margin-left: 5px;
|
}
|
</style>
|