MrServiceDocumentaryList.vue 11.6 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.serviceDescribe' 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.serviceType' dictCode='service_type'
                                 placeholder='请选择服务类型'></j-dict-select-tag>
            </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='status_audit'
                                 placeholder='请选择状态'></j-dict-select-tag>
            </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>
            </span>
          </a-col>
        </a-row>
      </a-form>
    </div>
    <!-- 查询区域-END -->

    <!-- 操作按钮区域 -->
    <div class="table-operator">
      <a-button icon='download' type='primary' @click="handleExportXls('成长之路表')">导出</a-button>
      <!--      <a-button @click="handleAdd" type="primary" icon="plus">新增</a-button>-->

      <!--      <a-upload name="file" :showUploadList="false" :multiple="false" :headers="tokenHeader" :action="importExcelUrl" @change="handleImportExcel">-->
      <!--        <a-button type="primary" icon="import">导入</a-button>-->
      <!--      </a-upload>-->
      <!-- 高级查询区域 -->
      <!--      <j-super-query :fieldList="superFieldList" ref="superQueryModal" @handleSuperQuery="handleSuperQuery"></j-super-query>-->
      <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>
    </div>

    <!-- 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"
        size="middle"
        :scroll="{x:true}"
        bordered
        rowKey="id"
        :columns="columns"
        :dataSource="dataSource"
        :pagination="ipagination"
        :loading="loading"
        :rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}"
        class="j-table-force-nowrap"
        @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)" height="25px" alt=""
               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"
            type="primary"
            icon="download"
            size="small"
            @click="downloadFile(text)">
            下载
          </a-button>
        </template>
        <span slot="action" slot-scope="text, record">
          <a @click="handleDetail(record)">详情</a>
          <a-divider type="vertical" />
           <a @click="handleAudit(record)" v-if="record.status == 0">审核通过</a>
             <a-divider type="vertical" v-if="record.status == 0"/>
         <a-popconfirm title="确定审核拒绝吗?" v-if="record.status == 0" @confirm="() => handleAuditRefuse(record)">
                  <a>审核拒绝</a>
          </a-popconfirm>
          <a-divider type="vertical" v-if="record.status == 0"/>
          <a-popconfirm title="确定删除吗?"  @confirm="() => handleDelete(record.id)">
              <a>删除</a>
          </a-popconfirm>
        </span>
      </a-table>
    </div>
    <mr-service-documentary-modal ref="modalForm" @ok="modalFormOk"></mr-service-documentary-modal>
    <j-modal
      :okButtonProps="{ }"
      :title="modalDetail.title"
      :visible.sync="modalDetail.visible"
      :width="500"
      switchFullscreen
      @ok="handleOk"
    >
      <template>
        <a-row>
          <a-col :span="24">
            <a-form-model-item label="考核积分" :labelCol="labelCol" :wrapperCol="wrapperCol" style="margin-top: 24px">
              <a-input-number v-model="score" placeholder="请输入考核积分" style="width: 100%;"></a-input-number>
            </a-form-model-item>
          </a-col>
        </a-row>
        <!--        <a-input-number class='news_title' v-model="score">{{ score }}</a-input-number>-->
      </template>
    </j-modal>
  </a-card>
</template>


<script>

import '@/assets/less/TableExpand.less'
import { mixinDevice } from '@/utils/mixin'
import { JeecgListMixin } from '@/mixins/JeecgListMixin'
import MrServiceDocumentaryModal from '../modules/mrServiceDocumentary/MrServiceDocumentaryModal'
import { getAction, putAction } from '@/api/manage'

export default {
  name: 'MrServiceDocumentaryList',
  mixins: [JeecgListMixin, mixinDevice],
  components: {
    MrServiceDocumentaryModal
  },
  data() {
    var that = this
    let ellipsis = (v, l = 40) => (<j-ellipsis value={that.textReplaceAll(v)} length={l} />)
    return {
      model: {},
      description: '成长之路表管理页面',
      // 表头
      columns: [
        {
          title: '#',
          dataIndex: '',
          key: 'rowIndex',
          width: 60,
          align: 'center',
          customRender: function(t, r, index) {
            return parseInt(index) + 1
          }
        },
        {
          title: '服务时间',
          align: 'center',
          dataIndex: 'serviceTime',
          customRender: function(text) {
            return !text ? '' : (text.length > 10 ? text.substr(0, 10) : text)
          }
        },
        {
          title: '服务地点',
          align: 'center',
          dataIndex: 'serviceAddress'
        },
        {
          title: '服务类型',
          align: 'center',
          dataIndex: 'serviceType_dictText'
        },
        {
          title: '服务描述',
          align: 'center',
          dataIndex: 'serviceDescribe',
          scopedSlots: { customRender: 'htmlSlot' },
          customRender: (t) => ellipsis(t)
        },
        {
          title: '状态',
          align: 'center',
          dataIndex: 'status_dictText'
        },
        {
          title: '积分',
          align: 'center',
          dataIndex: 'score'
        },
        {
          title: '操作',
          dataIndex: 'action',
          align: 'center',
          fixed: 'right',
          width: 147,
          scopedSlots: { customRender: 'action' }
        }
      ],
      url: {
        list: '/MrServiceDocumentary/mrServiceDocumentary/list',
        delete: '/MrServiceDocumentary/mrServiceDocumentary/delete',
        deleteBatch: '/MrServiceDocumentary/mrServiceDocumentary/deleteBatch',
        exportXlsUrl: '/MrServiceDocumentary/mrServiceDocumentary/exportXls',
        importExcelUrl: 'MrServiceDocumentary/mrServiceDocumentary/importExcel',
        edit: 'MrServiceDocumentary/mrServiceDocumentary/edit',
        audit: '/MrServiceDocumentary/mrServiceDocumentary/audit'
      },
      score: 0,
      dictOptions: {},
      modalDetail: {
        title: '审核',
        visible: false
      },
      info: {},
      disableSubmit: true,
      superFieldList: [],
      labelCol: {
        xs: { span: 24 },
        sm: { span: 5 }
      },
      wrapperCol: {
        xs: { span: 24 },
        sm: { span: 16 }
      }
    }
  },
  created() {
    this.getSuperFieldList()
    this.getDefaultCredits()

  },
  computed: {
    importExcelUrl: function() {
      return `${window._CONFIG['domianURL']}/${this.url.importExcelUrl}`
    }
  },
  methods: {
    initDictConfig() {
    },
    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
      }
    },
            getDefaultCredits() {
                let that = this
                let score = 0
                getAction(`/sys/dict/getDictItems/${'default_credits'}`, {}).then((res) => {
                    console.log(res)
                    if (res.success) {
                        score = res.result[0].value
                        that.score = score
                        //that.$message.success(res.message)
                    } else {
                        that.$message.warning(res.message)
                    }
                })
            },
            handleAudit(record) {
                this.modalDetail.visible = true
                this.info = record
            },
            handleAuditRefuse(record) {
                record.status = '-1'
                this.audit(record)
            },
            audit: function (record) {
                var that = this
                that.model={}
                let formData = Object.assign(that.model, record)
                putAction(that.url.edit, formData).then((res) => {
                    if (res.success) {
                        that.loadData()
                        that.$message.success(res.message)
                    } else {
                        that.$message.warning(res.message)
                    }
                })
            },
            getSuperFieldList() {
                let fieldList = []
                fieldList.push({ type: 'date', value: 'serviceDate', text: '服务时间' })
                fieldList.push({ type: 'string', value: 'serviceAddress', text: '服务地点', dictCode: '' })
                fieldList.push({ type: 'string', value: 'serviceTitle', text: '服务标题', dictCode: '' })
                fieldList.push({ type: 'string', value: 'status', text: '状态', dictCode: '' })
                this.superFieldList = fieldList
            },
            handleOk: function () {
                var that = this
                let record = that.info
                record.score = that.score
                record.status = '1'
                let formData = Object.assign(this.model, record)
                putAction(that.url.audit, formData).then((res) => {
                    if (res.success) {
                        that.loadData()
                        that.$message.success(res.message)
                    } else {
                        that.$message.warning(res.message)
                    }
                })
            }
        }
    }
</script>
<style scoped>
  @import '~@assets/less/common.less';

  .news_title {
    margin: 0 auto 20px auto;
    width: 80%;
    font-size: 18px;
    text-align: center;
    line-height: 2;
    font-weight: bold;
  }
</style>