| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426 |
- <template>
- <div>
- <a-page-header
- style="background-color: #FFFFFF;"
- title="客户列表"
- sub-title=""
- @back="showList"
- >
- <a-descriptions :title="task.taskName" :column="3" :bordered="false">
- <a-descriptions-item label="状态"><a-tag :color="task.taskStateColor">{{task.taskStateText}}</a-tag></a-descriptions-item>
- <a-descriptions-item label="开始时间">{{task.taskStartTime}}</a-descriptions-item>
- <a-descriptions-item label="结束时间">{{task.taskEndTime}}</a-descriptions-item>
- <a-descriptions-item label="描述">{{task.description}}</a-descriptions-item>
- </a-descriptions>
- <a-divider style="margin: 6px;"/>
- </a-page-header>
- <a-card :bordered="false" style="margin-top: -20px;">
- <a-tabs :active-key="currentTab" default-active-key="all" @change="tabChange">
- <a-tab-pane key="all" :tab="tabAll"></a-tab-pane>
- <a-tab-pane key="undo" :tab="tabUndo"></a-tab-pane>
- <a-tab-pane key="uncheck" :tab="tabUncheck"></a-tab-pane>
- <a-tab-pane key="checked" :tab="tabChecked"></a-tab-pane>
- <a-tab-pane key="passed" :tab="tabPassed"></a-tab-pane>
- </a-tabs>
- <!-- 查询区域 -->
- <div class="table-page-search-wrapper">
- <a-form layout="inline" @keyup.enter.native="searchQuery">
- <a-row :gutter="24">
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
- <a-form-item label="客户编号">
- <j-input placeholder="请输入客户编号" v-model="queryParam.customerNo"></j-input>
- </a-form-item>
- </a-col>
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
- <a-form-item label="客户名称">
- <j-input placeholder="请输入客户名称" v-model="queryParam.customerName"></j-input>
- </a-form-item>
- </a-col>
- <template v-if="toggleSearchStatus">
- </template>
- <a-col :xl="6" :lg="7" :md="8" :sm="24">
- <span style="float: left;overflow: hidden;" class="table-page-search-submitButtons">
- <a-button type="primary" @click="searchQuery" icon="search">查询</a-button>
- <a-button type="primary" @click="searchReset" icon="reload" style="margin-left: 8px">重置</a-button>
- <a @click="handleToggleSearch" style="margin-left: 8px">
- {{ toggleSearchStatus ? '收起' : '展开' }}
- <a-icon :type="toggleSearchStatus ? 'up' : 'down'"/>
- </a>
- </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"
- 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="action" slot-scope="text, record">
- <template v-if="record.checkState === 3 || record.checkState === 4">
- <a @click="showCheckCheck(record)">稽核</a>
- <a-divider type="vertical" />
- </template>
- <template v-if="record.checkState >= 4">
- <a @click="showCheckLog(record)">历史</a>
- <a-divider type="vertical" />
- </template>
- <template v-if="record.checkState != 3 && record.checkState != 5">
- <a @click="noticeDeal(record)">催办</a>
- <a-divider type="vertical" />
- </template>
- <a-dropdown>
- <a class="ant-dropdown-link">更多 <a-icon type="down" /></a>
- <a-menu slot="overlay">
- <a-menu-item>
- <a-popconfirm title="确定删除吗?" @confirm="() => handleDelete(record.id)">
- <a>删除</a>
- </a-popconfirm>
- </a-menu-item>
- </a-menu>
- </a-dropdown>
- </template>
- <template v-slot:customerName="text, record">
- <a @click="showCheckDetail(record)">{{text}}</a>
- </template>
- <template v-slot:checkState="status">
- <a-badge :status="status | statusTypeFilter" :text="status | statusFilter"/>
- </template>
- </a-table>
- </div>
- <!-- table区域 end -->
- </a-card>
- </div>
- </template>
- <script>
- import { postAction, getAction, httpAction } from '@api/manage'
- import '@/assets/less/TableExpand.less'
- import { JeecgListMixin } from '@/mixins/JeecgListMixin'
- export default {
- name: 'TaskCheckList',
- mixins:[JeecgListMixin],
- inject:['closeCurrent'],
- data () {
- return {
- description: '稽核详情页面',
- currentTab: 'all',
- currentCheckState: null,
- task:{
- id: '',
- taskName: '',
- taskStartTime: '',
- taskEndTime: '',
- description: '',
- taskState: 0,
- taskStateText: '',
- taskStateColor: '',
- },
- tabAll: '全部(0)',
- tabUndo: '未完善(0)',
- tabUncheck: '待稽核(0)',
- tabChecked: '待整改(0)',
- tabPassed: '稽核通过(0)',
- count: 0,
- undoCount: 0,
- uncheckCount: 0,
- checkedCount: 0,
- passedCount: 0,
- columns: [
- {
- title: '#',
- dataIndex: '',
- key:'rowIndex',
- width:60,
- align:"center",
- customRender:function (t,r,index) {
- return parseInt(index)+1;
- }
- },
- {
- title:'客户编号',
- align:"center",
- dataIndex: 'customerNo'
- },
- {
- title:'客户名称',
- align:"center",
- dataIndex: 'customerName',
- scopedSlots: { customRender: 'customerName' }
- },
- {
- title:'服务号码(全)',
- align:"center",
- dataIndex: 'smsNumber'
- },
- {
- title:'用户编号',
- align:"center",
- dataIndex: 'userNo'
- },
- {
- title:'入网时间',
- align:"center",
- dataIndex: 'networkAccessTime'
- },
- {
- title:'用户状态',
- align:"center",
- dataIndex: 'userState'
- },
- {
- title:'员工姓名',
- align:"center",
- dataIndex: 'staffName'
- },
- {
- title:'员工工号',
- align:"center",
- dataIndex: 'staffNo'
- },
- {
- title:'稽核进度',
- align:"center",
- sorter: true,
- dataIndex: 'checkState',
- scopedSlots: { customRender: 'checkState' }
- },
- {
- title: '操作',
- dataIndex: 'action',
- align:"center",
- fixed:"right",
- width: 160,
- scopedSlots: { customRender: 'action' }
- }
- ],
- isorter:{
- column: 'checkState',
- order: 'asc',
- },
- url: {
- queryTask: "/smsCheck/task/queryById",
- list: "/smsCheck/customerInfo/list",
- count: "/smsCheck/customerInfo/count",
- delete: "/smsCheck/customerInfo/delete",
- edit: "/smsCheck/customerInfo/edit",
- notice: "/smsCheck/customerInfo/notice",
- },
- autoSearch: false,
- }
- },
- created() {
- this.task.id = this.$route.query.id;
- this.queryTaskById(this.task.id);
- this.queryParam.taskId = this.task.id;
- this.loadData();
- this.loadTabNumber(this.task.id);
- },
- filters: {
- statusTypeFilter(type) {
- const statusTypeMap = {
- '0': 'error',
- '1': 'error',
- '2': 'warning',
- '3': 'warning',
- '4': 'processing',
- '5': 'success'
- }
- return statusTypeMap[type]
- },
- statusFilter(status) {
- const statusMap = {
- '0': '未完善',
- '1': '未完善',
- '2': '待稽核',
- '3': '待稽核',
- '4': '待整改',
- '5': '通过'
- }
- return statusMap[status]
- }
- },
- methods: {
- // 显示列表页面
- showList() {
- this.$router.go(-1);
- this.closeCurrent();
- },
- // 显示列表页面
- showCheckCheck(record) {
- this.$router.push({ path: '/sms/check/task/check/check', query: { id: record.id}});
- },
- // 显示稽核详情页面
- showCheckDetail(record) {
- this.$router.push({ path: '/sms/check/task/check/detail', query:{id:record.id}});
- },
- // 显示稽核历史页面
- showCheckLog(record) {
- this.$router.push({ path: '/sms/check/task/check/log',query:{id:record.id}});
- },
- // 构建任务信息
- buildTaskInfo(record) {
- let taskInfo = Object.assign({}, this.task);
- taskInfo.count = this.count;
- taskInfo.undoCount = this.undoCount;
- taskInfo.uncheckCount = this.uncheckCount;
- taskInfo.checkedCount = this.checkedCount;
- taskInfo.passedCount = this.passedCount;
- return {
- task: this.task,
- info: record
- }
- },
- handleCancel () {
- this.visible = false;
- },
- detail (record) {
- this.model = Object.assign({}, record);
- this.visible = true;
- },
- searchQuery() {
- this.loadData(1);
- this.selectedRowKeys = [];
- this.selectionRows = [];
- this.loadTabNumber(this.task.id);
- },
- searchReset() {
- this.queryParam = {};
- this.queryParam.taskId = this.task.id;
- this.queryParam.checkState_MultiString = this.currentCheckState;
- this.tabChange('all');
- this.loadTabNumber(this.queryParam.taskId);
- },
- tabChange (key) {
- // 稽核状态(0:未处理;1:未完善;2:待稽核;3:待整改;4:已整改;5:稽核通过;)
- if (key === 'all') {
- this.currentCheckState = null;
- this.queryParam.checkState_MultiString = this.currentCheckState;
- this.currentTab = 'all';
- } else if (key === 'undo') {
- this.currentCheckState = '0,1';
- this.queryParam.checkState_MultiString = this.currentCheckState;
- this.currentTab = 'undo';
- } else if (key === 'uncheck') {
- this.currentCheckState = '2,3';
- this.queryParam.checkState_MultiString = this.currentCheckState;
- this.currentTab = 'uncheck';
- } else if (key === 'checked') {
- this.currentCheckState = '4';
- this.queryParam.checkState_MultiString = this.currentCheckState;
- this.currentTab = 'checked';
- } else if (key === 'passed') {
- this.currentCheckState = '5';
- this.queryParam.checkState_MultiString = this.currentCheckState;
- this.currentTab = 'passed';
- }
- this.loadData(1);
- },
- loadTabNumber (taskId) {
- let url = this.url.count;
- let params = {
- id: taskId
- }
- let that = this;
- getAction(url, params).then(res => {
- let { result } = res;
- if (result) {
- that.count = result.count;
- that.undoCount = result.undoCount;
- that.uncheckCount = result.uncheckCount;
- that.checkedCount = result.checkedCount;
- that.passedCount = result.passedCount;
- that.tabAll= '全部(' + result.count + ')';
- that.tabUndo= '未完善(' + result.undoCount + ')';
- that.tabUncheck= '待稽核(' + result.uncheckCount + ')';
- that.tabChecked= '待整改(' + result.checkedCount + ')';
- that.tabPassed= '稽核通过(' + result.passedCount + ')';
- }
- }).finally(() => {
- })
- },
- noticeDeal (record) {
- let url = this.url.notice;
- let params = {
- customerName: record.customerName,
- smsNumber: record.smsNumber,
- staffNo: record.staffNo,
- userNo: record.userNo,
- }
- let that = this;
- postAction(url, params).then(res => {
- let { result } = res;
- if (res.success) {
- that.$message.info('已通知客户经理,进行材料补充!');
- }
- }).finally(() => {
- })
- },
- queryTaskById (id) {
- let url = this.url.queryTask;
- let params = {
- id: id
- }
- let that = this;
- getAction(url, params).then(res => {
- if (res.success) {
- that.task = res.result;
- that.getTaskState(that.task.taskState);
- }
- }).finally(() => {
- })
- },
- getTaskState(taskState) {
- if (taskState === 0) {
- this.task.taskStateColor = '#fadb14';
- this.task.taskStateText = '未开始';
- } else if (taskState === 1) {
- this.task.taskStateColor = '#1890ff';
- this.task.taskStateText = '稽核中';
- } else if (taskState === 2) {
- this.task.taskStateColor = '#52c41a';
- this.task.taskStateText = '稽核完成';
- }
- }
- }
- }
- </script>
- <style scoped>
- </style>
|