123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183 |
- <template>
- <div class="subPage">
- <div class="system-table-search">
- <div class="flex-h">
- <div class="flex-item flex-h">
- <el-button size="mini" type="success" @click='addNews'>新增资讯</el-button>
- </div>
- <ul>
- <li>
- <span>选择位置:</span>
- <el-select v-model="tableSearch.LocationId" placeholder="请选择">
- <el-option
- v-for="item in positionList"
- :key="item.LocationId"
- :label="item.LocationName"
- :value="item.LocationId">
- </el-option>
- </el-select>
- </li>
- </ul>
- <tableSearch @exportSearchKey="searchList" value="请输入标题"></tableSearch>
- </div>
- <div class="moreFilter"></div>
- </div>
- <div class="system-table-box">
- <el-table
- :data="tableData"
- stripe
- style="width: 100%">
- <el-table-column
- prop="img"
- label="图片">
- <template slot-scope="scope">
- <a class="tableImg">
- <img :src="scope.row.ImageUrl" class="centerLabel contain" alt="">
- </a>
- </template>
- </el-table-column>
- <el-table-column
- prop="Title"
- label="标题">
- </el-table-column>
- <el-table-column
- prop="LocationNames"
- label="位置">
- </el-table-column>
- <el-table-column
- prop="StatusShow"
- label="是否发布">
- </el-table-column>
- <el-table-column label="操作">
- <template slot-scope="scope">
- <el-button
- size="mini"
- type="warning"
- @click="handleEdit(scope.$index, scope.row)">编辑</el-button>
- <el-button
- size="mini"
- type="danger"
- @click="handleDelete(scope.$index, scope.row)">删除</el-button>
- </template>
- </el-table-column>
- </el-table>
- </div>
- <el-pagination
- @current-change="handleCurrentChange"
- :current-page.sync="postData.currentPage"
- :page-size="postData.pageSize"
- layout="prev, pager, next, jumper"
- :total="postData.total">
- </el-pagination>
- </div>
- </template>
-
- <script>
- import tableSearch from '@/components/tableSearch/index'
- import { mapState, createNamespacedHelpers } from 'vuex'
- const { mapActions: mapCmsActions } = createNamespacedHelpers('cms')
- export default {
- name: '',
- data () {
- return {
- postData: {
- currentPage: 1, // 当前页码
- pageSize: 10,
- total: 0,
- },
- tableSearch: { // 表格搜索条件
- key: '', // 搜索关键字
- LocationId: '',
- },
- tableData: []
- }
- },
- computed: {
- ...mapState({
- positionList: x => x.cms.location,
- })
- },
- components: {
- tableSearch,
- },
- created () {
- this.updateLocationInfo().then(() => {
- this.getList()
- })
- },
- methods: {
- ...mapCmsActions(['updateLocationInfo']),
- handleCurrentChange (val) {
- console.log(`当前页: ${val}`)
- this.getList()
- },
- handleEdit (index, row) { // 编辑
- console.log(index, row)
- this.$router.push({ name: 'editNews', query: { id: row.NewsId } })
- },
- handleDelete (index, row) { // 删除
- console.log(index, row)
- this.$confirm('确认删除此资讯?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.deleteNews(row.NewsId)
- }).catch(() => {
- this.$message({
- type: 'info',
- message: '已取消删除'
- })
- })
- },
- searchList (key) { // 搜索列表
- this.tableSearch.key = key
- this.getList()
- },
- addNews () {
- this.$router.push({ name: 'addNews' })
- },
- getList () {
- this.tableData = []
- this.$ajax(this.$api.cms.news.url, {
- method: this.$api.cms.news.method,
- queryData: {
- page: this.postData.currentPage,
- pagesize: this.postData.pageSize,
- locationid: this.tableSearch.LocationId,
- title: this.tableSearch.key
- }
- }).then(res => {
- for (let i = 0; i < res.list.length; i++) {
- res.list[i].Status === 1 ? res.list[i].StatusShow = '是' : res.list[i].StatusShow = '否'
- }
- this.tableData = res.list
- this.postData.total = res.pagenum
- this.postData.currentPage = res.page
- }).catch(msg => {
-
- })
- },
- deleteNews (id) {
- this.$ajax(this.$api.cms.deleteNews.url, {
- method: this.$api.cms.deleteNews.method,
- urlData: {
- id: id
- }
- }).then(res => {
- this.$message({
- type: 'success',
- message: '删除成功!'
- })
- this.getList()
- }).catch(msg => {
-
- })
- }
- }
- }
- </script>
-
- <!-- Add "scoped" attribute to limit CSS to this component only -->
- <style lang="scss" scoped>
- </style>
|