123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <template>
- <a-card size="small" :bordered="false" class="noticeList-wrap">
- <a-spin :spinning="spinning" tip="Loading...">
- <!-- 搜索条件 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="$refs.table.refresh(true)">
- <a-row :gutter="15">
- <a-col :md="6" :sm="24">
- <a-form-item label="标题">
- <a-input id="noticeList-title" v-model.trim="queryParam.title" allowClear placeholder="请输入标题"/>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="类别">
- <v-select code="NOTITY_BIZ_TYPE" id="noticeList-type" v-model="queryParam.type" allowClear placeholder="请选择类别"></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-form-item label="发布状态">
- <v-select code="NOTITY_SEND_STATUS" id="noticeList-sendStatus" v-model="queryParam.sendStatus" allowClear placeholder="请选择发布状态"></v-select>
- </a-form-item>
- </a-col>
- <a-col :md="6" :sm="24">
- <a-button style="margin-bottom: 18px;" type="primary" @click="$refs.table.refresh(true)" :disabled="disabled" id="noticeList-refresh">查询</a-button>
- <a-button style="margin: 0 0 18px 8px" @click="resetSearchForm" :disabled="disabled" id="noticeList-reset">重置</a-button>
- </a-col>
- </a-row>
- </a-form>
- </div>
- <!-- 操作按钮 -->
- <div class="table-operator">
- <a-button id="noticeList-add" type="primary" class="button-error" @click="handleAdd">新增</a-button>
- </div>
- <!-- 总计 -->
- <a-alert type="info" showIcon style="margin-bottom:15px">
- <div slot="message">合计:<strong>{{ total || 0 }}</strong>条</div>
- </a-alert>
- <!-- 列表 -->
- <s-table
- class="sTable"
- ref="table"
- size="default"
- :rowKey="(record) => record.id"
- :columns="columns"
- :data="loadData"
- :scroll="{ x: 1230, y: tableHeight }"
- bordered>
- <!-- 操作 -->
- <template slot="action" slot-scope="text, record">
- <a-button
- size="small"
- type="link"
- class="button-info"
- v-if="record.sendStatus=='0'"
- @click="handleEdit(record)"
- id="noticeList-edit-btn">编辑</a-button>
- <a-button
- size="small"
- type="link"
- class="button-success"
- v-if="record.sendStatus=='1'"
- @click="handleDetail(record)"
- id="noticeList-detail-btn">详情</a-button>
- <a-button
- size="small"
- type="link"
- class="button-error"
- v-if="record.sendStatus=='0'"
- @click="handleDel(record)"
- id="noticeList-del-btn">删除</a-button>
- </template>
- </s-table>
- </a-spin>
- <!-- 编辑 -->
- <notice-edit-modal :openModal="openModal" :itemId="itemId" @close="closeModal" @ok="$refs.table.refresh()" />
- <!-- 详情 -->
- <notice-detail-modal :openModal="openDetailModal" :itemId="itemId" @close="closeDetailModal" />
- </a-card>
- </template>
- <script>
- import { STable, VSelect } from '@/components'
- import noticeEditModal from './editModal.vue'
- import noticeDetailModal from './detailModal.vue'
- import { noticeList, noticeDel } from '@/api/notice'
- export default {
- components: { STable, VSelect, noticeEditModal, noticeDetailModal },
- data () {
- return {
- spinning: false,
- tableHeight: 0,
- queryParam: { // 查询条件
- title: '',
- type: undefined,
- sendStatus: undefined
- },
- disabled: false, // 查询、重置按钮是否可操作
- columns: [
- { title: '序号', dataIndex: 'no', width: 80, align: 'center' },
- { title: '创建时间', dataIndex: 'createDate', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '类别', dataIndex: 'typeDictValue', width: 200, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '标题', dataIndex: 'title', align: 'center', customRender: function (text) { return text || '--' }, ellipsis: true },
- { title: '可见性', dataIndex: 'toAppNameDictValue', width: 140, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '发布时间', dataIndex: 'releaseDate', width: 160, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '发布状态', dataIndex: 'sendStatusDictValue', width: 100, align: 'center', customRender: function (text) { return text || '--' } },
- { title: '操作', scopedSlots: { customRender: 'action' }, width: 170, align: 'center', fixed: 'right' }
- ],
- // 加载数据方法 必须为 Promise 对象
- loadData: parameter => {
- this.disabled = true
- if (this.tableHeight == 0) {
- this.tableHeight = window.innerHeight - 380
- }
- return noticeList(Object.assign(parameter, this.queryParam)).then(res => {
- const data = res.data
- const no = (data.pageNo - 1) * data.pageSize
- for (var i = 0; i < data.list.length; i++) {
- data.list[i].no = no + i + 1
- data.list[i].typeDictValue = data.list[i].type == 'notity' ? '公告' : data.list[i].type == 'news_company' ? '企业新闻' : data.list[i].type == 'news_trade' ? '行业咨询' : '--'
- data.list[i].sendStatusDictValue = data.list[i].sendStatus == 1 ? '已发布' : data.list[i].sendStatus == 0 ? '未发布' : '--'
- data.list[i].toAppNameDictValue = data.list[i].toAppName == '1,2' ? '所有' : data.list[i].toAppName == '2' ? '经销商' : data.list[i].toAppName == '1' ? '总部' : '--'
- }
- this.total = data.count || 0
- this.disabled = false
- return data
- })
- },
- total: 0, // 合计
- openModal: false, // 编辑 弹框
- openDetailModal: false, // 详情 弹框
- itemId: '' // 当前产品id
- }
- },
- methods: {
- // 重置
- resetSearchForm () {
- this.queryParam.title = ''
- this.queryParam.type = undefined
- this.queryParam.sendStatus = undefined
- this.$refs.table.refresh(true)
- },
- // 详情
- handleDetail (row) {
- this.itemId = row.id
- this.openDetailModal = true
- },
- // 新增
- handleAdd () {
- this.itemId = ''
- this.openModal = true
- },
- // 编辑
- handleEdit (row) {
- this.itemId = row.id
- this.openModal = true
- },
- // 关闭弹框
- closeModal () {
- this.itemId = ''
- this.openModal = false
- },
- // 关闭详情弹框
- closeDetailModal () {
- this.itemId = ''
- this.openDetailModal = false
- },
- // 删除
- handleDel (row) {
- const _this = this
- this.$confirm({
- title: '提示',
- content: '确认要删除吗?',
- centered: true,
- onOk () {
- _this.spinning = true
- noticeDel({ id: row.id }).then(res => {
- if (res.status == 200) {
- _this.$message.success(res.message)
- _this.$refs.table.refresh()
- _this.spinning = false
- } else {
- _this.spinning = false
- }
- })
- }
- })
- }
- }
- }
- </script>
|