WhisperingsList.vue 7.72 KB
<template>
  <a-card :bordered='false'>
    <!-- 查询区域 -->
    <div class='table-page-search-wrapper'>
      <a-form layout='inline' @keyup.enter.native='searchQuery'>
        <a-row :gutter='24'>
          <a-col :lg='7' :md='8' :sm='24' :xl='6'>
            <a-form-item label='内容'>
              <j-input v-model='queryParam.content' placeholder='请输入内容'></j-input>
            </a-form-item>
          </a-col>
          <a-col :lg='7' :md='8' :sm='24' :xl='6'>
            <a-form-item label='是否上墙'>
              <j-dict-select-tag v-model='queryParam.status' dictCode='onTheWall_type' placeholder='请选择是否上墙' />
            </a-form-item>
          </a-col>
          <a-col :lg='7' :md='8' :sm='24' :xl='6'>
            <span class='table-page-search-submitButtons' style='float: left;overflow: hidden;'>
              <a-button icon='search' type='primary' @click='searchQuery'>查询</a-button>
              <a-button icon='reload' style='margin-left: 8px' type='primary' @click='searchReset'>重置</a-button>
              <a-button icon='bars' style='margin-left: 8px' type='primary' @click='doSort'>排序</a-button>
              <a-dropdown v-if='selectedRowKeys.length > 0'>
                <a-menu slot='overlay'>
                  <a-menu-item key='1' @click='batchDel'>
                    <a-icon type='delete' />
                    删除
                  </a-menu-item>
                </a-menu>
                <a-button style='margin-left: 8px'> 批量操作
                  <a-icon type='down' />
                </a-button>
              </a-dropdown>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <!-- 查询区域-END -->
    <!-- table区域-begin -->
    <div>
      <div class='ant-alert ant-alert-info' style='margin-bottom: 16px;'>
        <i class='anticon anticon-info-circle ant-alert-icon'></i> 已选择 <a
        style='font-weight: 600'>{{ selectedRowKeys.length }}</a>项
        <a style='margin-left: 24px' @click='onClearSelected'>清空</a>
      </div>

      <a-table
        ref='table'
        :columns='columns'
        :dataSource='dataSource'
        :loading='loading'
        :pagination='ipagination'
        :rowSelection='{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}'
        :scroll='{x:true}'
        bordered
        class='j-table-force-nowrap'
        rowKey='id'
        size='middle'
        @change='handleTableChange'>

        <template slot='htmlSlot' slot-scope='text'>
          <div v-html='text'></div>
        </template>
        <template slot='imgSlot' slot-scope='text'>
          <span v-if='!text' style='font-size: 12px;font-style: italic;'>无图片</span>
          <img v-else :src='getImgView(text)' alt='' height='25px'
               style='max-width:80px;font-size: 12px;font-style: italic;' />
        </template>
        <template slot='fileSlot' slot-scope='text'>
          <span v-if='!text' style='font-size: 12px;font-style: italic;'>无文件</span>
          <a-button
            v-else
            :ghost='true'
            icon='download'
            size='small'
            type='primary'
            @click='downloadFile(text)'>
            下载
          </a-button>
        </template>
        <span slot='action' slot-scope='text, record'>
          <a @click='handleDetail(record)'>回复</a>
          <a-divider v-if='record.status==0' type='vertical' />
          <a v-if='record.status==0' @click='onTheWall(record)'>上墙</a>
          <a-divider type='vertical' />
          <a-popconfirm title='确定删除吗?' @confirm='() => handleDelete(record.id)'>
            <a>删除</a>
          </a-popconfirm>
        </span>

      </a-table>
    </div>

    <whisperings-modal ref='modalForm' @ok='modalFormOk' />
  </a-card>
</template>

<script>

import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import WhisperingsModal from './modules/WhisperingsModal'
import '@/assets/less/TableExpand.less'
import { Base64 } from 'js-base64'
import { postAction } from '@api/manage'

export default {
  name: 'WhisperingsList',
  mixins: [JeecgListMixin],
  components: {
    WhisperingsModal
  },
  data() {
    var that = this
    let ellipsis = (v, l = 40) => (<j-ellipsis value={that.textReplaceAll(v)} length={l} />)
    return {
      description: '悄悄话管理页面',
      // 表头
      columns: [
        {
          title: '#',
          dataIndex: '',
          key: 'rowIndex',
          width: 60,
          align: 'center',
          customRender: function(t, r, index) {
            return parseInt(index) + 1
          }
        },
        {
          title: '微信账号',
          align: 'center',
          dataIndex: 'wxUserId_dictText',
          customRender: (text) => {
            //字典值翻译通用方法
            return Base64.decode(text)
          }
        },
        {
          title: '内容',
          align: 'center',
          dataIndex: 'content',
          customRender: (t) => ellipsis(t)
        },
        {
          title: '是否上墙',
          align: 'center',
          dataIndex: 'status_dictText'
        },
        {
          title: '操作',
          dataIndex: 'action',
          align: 'center',
          fixed: 'right',
          width: 147,
          scopedSlots: { customRender: 'action' }
        }

      ],
      url: {
        list: '/inspect/whisperings/list',
        delete: '/inspect/whisperings/delete',
        deleteBatch: '/inspect/whisperings/deleteBatch',
        exportXlsUrl: '/inspect/whisperings/exportXls',
        importExcelUrl: 'inspect/whisperings/importExcel',
        onTheWall: 'inspect/whisperings/onTheWall',
        onTop: 'inspect/whisperings/onTop',
        sort: 'inspect/whisperings/sort'
      },
      dictOptions: {},
      superFieldList: []
    }
  },
  created() {
    this.getSuperFieldList()
  },
  computed: {
    importExcelUrl: function() {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    }
  },
  methods: {
    doSort() {
      this.$router.push({ path: '/inspect/WhisperingsSortList' })
    },
    textReplaceAll: function(text) {
      if (null != text && '' != text && undefined != text) {
        var reg = /<[^<>]+>/g
        var afterText = text.replace(reg, '').replace(/&nbsp;/ig, '').replace(/&ldquo;/ig, '').replace(/&rdquo;/ig, '')
        return afterText
      } else {
        return text
      }
    },
    //上墙
    onTheWall: function(record) {
      console.log(record)
      var that = this
      postAction(this.url.onTheWall, {
        id: record.id,
        status: 1
      }).then((res) => {
        if (res.success) {
          //重新计算分页问题
          that.reCalculatePage(that.selectedRowKeys.length)
          that.$message.success(res.message)
          that.loadData()
          that.onClearSelected()
        } else {
          that.$message.warning(res.message)
        }
      })

    },
    initDictConfig() {
    },
    getSuperFieldList() {
      let fieldList = []
      fieldList.push({ type: 'string', value: 'incarceratedId', text: '管制人员', dictCode: 'mr_incarcerated_user,,id' })
      fieldList.push({ type: 'Text', value: 'content', text: '内容', dictCode: '' })
      fieldList.push({ type: 'string', value: 'wxUserId', text: '微信使用人', dictCode: 'wx_user,,id' })
      fieldList.push({ type: 'int', value: 'delflag', text: '删除标记', dictCode: 'del_flag' })
      fieldList.push({ type: 'int', value: 'status', text: '是否上墙', dictCode: 'onTheWall_type' })
      this.superFieldList = fieldList
    },
    handleDetail: function(record) {
      this.$refs.modalForm.edit(record)
      this.$refs.modalForm.title = '详情'
      this.$refs.modalForm.disableSubmit = true
    }
  }
}
</script>
<style scoped>
@import '~@assets/less/common.less';
</style>