|
@@ -0,0 +1,385 @@
|
|
|
+<template>
|
|
|
+ <div class="page">
|
|
|
+ <el-form size="small" :inline="true" class="query-form" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>
|
|
|
+ <!-- 搜索框-->
|
|
|
+ <el-form-item prop="qyName">
|
|
|
+ <user-select :limit='1' size="small" placeholder="请选择企业名称" :value="searchForm.qyName" @getValue='(value) => {searchForm.qyName=value}'></user-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="qyFzr">
|
|
|
+ <el-input size="small" v-model="searchForm.qyFzr" placeholder="企业负责人" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="phone">
|
|
|
+ <el-input size="small" v-model="searchForm.phone" placeholder="负责人号码" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="officer">
|
|
|
+ <el-input size="small" v-model="searchForm.officer" placeholder="挂钩干部" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="officeName">
|
|
|
+ <el-input size="small" v-model="searchForm.officeName" placeholder="挂钩干部姓名" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="states">
|
|
|
+ <el-input size="small" v-model="searchForm.states" placeholder="问题状态" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item prop="finishTime">
|
|
|
+ <el-input size="small" v-model="searchForm.finishTime" placeholder="办结时间" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" @click="refreshList()" size="small" icon="el-icon-search">查询</el-button>
|
|
|
+ <el-button @click="resetSearch()" size="small" icon="el-icon-refresh-right">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+
|
|
|
+ <div class="bg-white top">
|
|
|
+ <vxe-toolbar :refresh="{query: refreshList}" import export print custom>
|
|
|
+ <template #buttons>
|
|
|
+ <el-button v-if="hasPermission('question:dzfQuestion:add')" type="primary" size="small" icon="el-icon-plus" @click="add()">新建</el-button>
|
|
|
+ <el-button v-if="hasPermission('question:dzfQuestion:edit')" type="warning" size="small" icon="el-icon-edit-outline" @click="edit()" :disabled="$refs.dzfQuestionTable && $refs.dzfQuestionTable.getCheckboxRecords().length !== 1" plain>修改</el-button>
|
|
|
+ <el-button v-if="hasPermission('question:dzfQuestion:del')" type="danger" size="small" icon="el-icon-delete" @click="del()" :disabled="$refs.dzfQuestionTable && $refs.dzfQuestionTable.getCheckboxRecords().length === 0" plain>删除</el-button>
|
|
|
+ </template>
|
|
|
+ <template #tools>
|
|
|
+ <vxe-button
|
|
|
+ type="default"
|
|
|
+ title="下载导入模板"
|
|
|
+ v-if="hasPermission('question:dzfQuestion:import')"
|
|
|
+ class="el-icon-document m-r-12"
|
|
|
+ @click="downloadTpl()"
|
|
|
+ circle
|
|
|
+ >
|
|
|
+ </vxe-button>
|
|
|
+ </template>
|
|
|
+ </vxe-toolbar>
|
|
|
+ <div style="height: calc(100% - 80px);">
|
|
|
+ <vxe-table
|
|
|
+ border="inner"
|
|
|
+ auto-resize
|
|
|
+ resizable
|
|
|
+ height="auto"
|
|
|
+ :loading="loading"
|
|
|
+ size="small"
|
|
|
+ ref="dzfQuestionTable"
|
|
|
+ show-header-overflow
|
|
|
+ show-overflow
|
|
|
+ highlight-hover-row
|
|
|
+ :menu-config="{}"
|
|
|
+ :print-config="{}"
|
|
|
+ :import-config="{
|
|
|
+ importMethod: importMethod,
|
|
|
+ types: ['csv', 'xls', 'xlsx'],
|
|
|
+ remote: true,
|
|
|
+ }"
|
|
|
+ :export-config="{
|
|
|
+ remote: true,
|
|
|
+ filename: `问题诉求数据${moment(new Date()).format(
|
|
|
+ 'YYYY-MM-DD'
|
|
|
+ )}`,
|
|
|
+ sheetName: '问题诉求数据',
|
|
|
+ exportMethod: exportMethod,
|
|
|
+ types: ['xlsx'],
|
|
|
+ modes: ['current', 'selected', 'all'],
|
|
|
+ }"
|
|
|
+ @sort-change="sortChangeHandle"
|
|
|
+ :sort-config="{remote:true}"
|
|
|
+ :expand-config="{accordion: true, lazy: true,loadMethod:detail}"
|
|
|
+ :data="dataList"
|
|
|
+ :checkbox-config="{}">
|
|
|
+ <vxe-column type="seq" width="40"></vxe-column>
|
|
|
+ <vxe-column type="checkbox" width="40px"></vxe-column>
|
|
|
+ <vxe-column type="expand" width="80" >
|
|
|
+ <template #content="{ row }">
|
|
|
+ <el-tabs>
|
|
|
+ <el-tab-pane label="问题详情">
|
|
|
+ <el-table
|
|
|
+ size="small"
|
|
|
+ :data="row.dzfQuestionDetilDTOList"
|
|
|
+ style="width: 100%">
|
|
|
+ <el-table-column
|
|
|
+ prop="qName"
|
|
|
+ show-overflow-tooltip
|
|
|
+ label="问题名称">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="qType"
|
|
|
+ show-overflow-tooltip
|
|
|
+ label="问题类别">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="gaps"
|
|
|
+ show-overflow-tooltip
|
|
|
+ label="缺口数">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="des"
|
|
|
+ show-overflow-tooltip
|
|
|
+ label="问题描述">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="dept"
|
|
|
+ show-overflow-tooltip
|
|
|
+ label="交办部门">
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column
|
|
|
+ prop="preTime"
|
|
|
+ show-overflow-tooltip
|
|
|
+ label="预计办结时间">
|
|
|
+ </el-table-column>
|
|
|
+ </el-table>
|
|
|
+ </el-tab-pane>
|
|
|
+ </el-tabs>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="qyId"
|
|
|
+ sortable
|
|
|
+ title="企业id">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-link type="primary" :underline="false" v-if="hasPermission('question:dzfQuestion:edit')" @click="edit(scope.row.id)">{{scope.row.qyId}}</el-link>
|
|
|
+ <el-link type="primary" :underline="false" v-else-if="hasPermission('question:dzfQuestion:view')" @click="view(scope.row.id)">{{scope.row.qyId}}</el-link>
|
|
|
+ <span v-else>{{scope.row.qyId}}</span>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field=""
|
|
|
+ sortable
|
|
|
+ title="企业名称">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ {{scope.row.qyName }}
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="qySd"
|
|
|
+ sortable
|
|
|
+ title="属地">
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="qyFzr"
|
|
|
+ sortable
|
|
|
+ title="企业负责人">
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="phone"
|
|
|
+ sortable
|
|
|
+ title="负责人号码">
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="officer"
|
|
|
+ sortable
|
|
|
+ title="挂钩干部">
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="officeName"
|
|
|
+ sortable
|
|
|
+ title="挂钩干部姓名">
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="states"
|
|
|
+ sortable
|
|
|
+ title="问题状态">
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column
|
|
|
+ field="finishTime"
|
|
|
+ sortable
|
|
|
+ title="办结时间">
|
|
|
+ </vxe-column>
|
|
|
+
|
|
|
+ <vxe-column
|
|
|
+ fixed="right"
|
|
|
+ align="center"
|
|
|
+ width="200"
|
|
|
+ title="操作">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button v-if="hasPermission('question:dzfQuestion:view')" type="text" icon="el-icon-view" size="small" @click="view(scope.row.id)">查看</el-button>
|
|
|
+ <el-button v-if="hasPermission('question:dzfQuestion:edit')" type="text" icon="el-icon-edit" size="small" @click="edit(scope.row.id)">修改</el-button>
|
|
|
+ <el-button v-if="hasPermission('question:dzfQuestion:del')" type="text" icon="el-icon-delete" size="small" @click="del(scope.row.id)">删除</el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ </vxe-table>
|
|
|
+ <vxe-pager
|
|
|
+ background
|
|
|
+ size="small"
|
|
|
+ :current-page="tablePage.currentPage"
|
|
|
+ :page-size="tablePage.pageSize"
|
|
|
+ :total="tablePage.total"
|
|
|
+ :page-sizes="[10, 20, 100, 1000, {label: '全量数据', value: 1000000}]"
|
|
|
+ :layouts="['PrevPage', 'JumpNumber', 'NextPage', 'FullJump', 'Sizes', 'Total']"
|
|
|
+ @page-change="currentChangeHandle">
|
|
|
+ </vxe-pager>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ <!-- 弹窗, 新增 / 修改 -->
|
|
|
+ <DzfQuestionForm ref="dzfQuestionForm" @refreshDataList="refreshList"></DzfQuestionForm>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import DzfQuestionForm from './DzfQuestionForm'
|
|
|
+ import dzfQuestionService from '@/api/question/dzfQuestionService'
|
|
|
+ import UserSelect from '@/components/userSelect'
|
|
|
+ export default {
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ searchForm: {
|
|
|
+ qyName: '',
|
|
|
+ qyFzr: '',
|
|
|
+ phone: '',
|
|
|
+ officer: '',
|
|
|
+ officeName: '',
|
|
|
+ states: '',
|
|
|
+ finishTime: ''
|
|
|
+ },
|
|
|
+ dataList: [],
|
|
|
+ tablePage: {
|
|
|
+ total: 0,
|
|
|
+ currentPage: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ orders: [{ column: 'a.create_date', asc: false }]
|
|
|
+ },
|
|
|
+ loading: false
|
|
|
+ }
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ UserSelect,
|
|
|
+ DzfQuestionForm
|
|
|
+ },
|
|
|
+ activated () {
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ // 获取数据列表
|
|
|
+ refreshList () {
|
|
|
+ this.loading = true
|
|
|
+ dzfQuestionService.list({
|
|
|
+ 'current': this.tablePage.currentPage,
|
|
|
+ 'size': this.tablePage.pageSize,
|
|
|
+ 'orders': this.tablePage.orders,
|
|
|
+ ...this.searchForm
|
|
|
+ }).then(({data}) => {
|
|
|
+ this.dataList = data.records
|
|
|
+ this.tablePage.total = data.total
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 当前页
|
|
|
+ currentChangeHandle ({ currentPage, pageSize }) {
|
|
|
+ this.tablePage.currentPage = currentPage
|
|
|
+ this.tablePage.pageSize = pageSize
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ // 排序
|
|
|
+ sortChangeHandle (obj) {
|
|
|
+ this.tablePage.orders = []
|
|
|
+ if (obj.order != null) {
|
|
|
+ this.tablePage.orders = [{ column: obj.column.sortBy || this.$utils.toLine(obj.property), asc: obj.order === 'asc' }]
|
|
|
+ } else {
|
|
|
+ this.tablePage.orders = [{ column: 'a.create_date', asc: false }]
|
|
|
+ }
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ // 新增
|
|
|
+ add () {
|
|
|
+ this.$refs.dzfQuestionForm.init('add', '')
|
|
|
+ },
|
|
|
+ // 修改
|
|
|
+ edit (id) {
|
|
|
+ id = id || this.$refs.dzfQuestionTable.getCheckboxRecords().map(item => {
|
|
|
+ return item.id
|
|
|
+ })[0]
|
|
|
+ this.$refs.dzfQuestionForm.init('edit', id)
|
|
|
+ },
|
|
|
+ // 查看
|
|
|
+ view (id) {
|
|
|
+ this.$refs.dzfQuestionForm.init('view', id)
|
|
|
+ },
|
|
|
+ // 删除
|
|
|
+ del (id) {
|
|
|
+ let ids = id || this.$refs.dzfQuestionTable.getCheckboxRecords().map(item => {
|
|
|
+ return item.id
|
|
|
+ }).join(',')
|
|
|
+ this.$confirm(`确定删除所选项吗?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.loading = true
|
|
|
+ dzfQuestionService.delete(ids).then(({data}) => {
|
|
|
+ this.$message.success(data)
|
|
|
+ this.refreshList()
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 下载模板
|
|
|
+ downloadTpl () {
|
|
|
+ this.loading = true
|
|
|
+ dzfQuestionService.exportTemplate().then(({data}) => {
|
|
|
+ // 将二进制流文件写入excel表,以下为重要步骤
|
|
|
+ this.$utils.downloadExcel(data, '请假表单导入模板')
|
|
|
+ this.loading = false
|
|
|
+ }).catch(function (err) {
|
|
|
+ this.loading = false
|
|
|
+ if (err.response) {
|
|
|
+ console.log(err.response)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 自定义服务端导入
|
|
|
+ importMethod ({ file }) {
|
|
|
+ // 处理表单
|
|
|
+ const formBody = new FormData()
|
|
|
+ formBody.append('file', file)
|
|
|
+ this.loading = true
|
|
|
+ dzfQuestionService.importExcel(formBody).then(({data}) => {
|
|
|
+ this.$message.success({
|
|
|
+ dangerouslyUseHTMLString: true,
|
|
|
+ message: data
|
|
|
+ })
|
|
|
+ this.refreshList()
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 自定义服务端导出
|
|
|
+ exportMethod ({ options }) {
|
|
|
+ // 传给服务端的参数
|
|
|
+ const params = {
|
|
|
+ current: this.tablePage.currentPage,
|
|
|
+ size: this.tablePage.pageSize,
|
|
|
+ orders: this.tablePage.orders,
|
|
|
+ ...this.searchForm,
|
|
|
+ filename: options.filename,
|
|
|
+ sheetName: options.sheetName,
|
|
|
+ isHeader: options.isHeader,
|
|
|
+ original: options.original,
|
|
|
+ mode: options.mode,
|
|
|
+ selectIds: options.mode === 'selected' ? options.data.map((item) => item.id) : [],
|
|
|
+ exportFields: options.columns.map((column) => column.property && column.property.split('.')[0])
|
|
|
+ }
|
|
|
+ this.loading = true
|
|
|
+ return dzfQuestionService.exportExcel(params).then(({data}) => {
|
|
|
+ // 将二进制流文件写入excel表,以下为重要步骤
|
|
|
+ this.$utils.downloadExcel(data, options.filename)
|
|
|
+ this.loading = false
|
|
|
+ }).catch(function (err) {
|
|
|
+ if (err.response) {
|
|
|
+ console.log(err.response)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 查看详情
|
|
|
+ detail ({row}) {
|
|
|
+ return new Promise(resolve => {
|
|
|
+ dzfQuestionService.queryById(row.id).then(({data}) => {
|
|
|
+ this.dataList.forEach((item, index) => {
|
|
|
+ if (item.id === row.id) {
|
|
|
+ item.dzfQuestionDetilDTOList = data.dzfQuestionDetilDTOList
|
|
|
+ }
|
|
|
+ })
|
|
|
+ resolve()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ resetSearch () {
|
|
|
+ this.$refs.searchForm.resetFields()
|
|
|
+ this.refreshList()
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|