123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335 |
- <template>
- <basic-container>
- <el-menu
- :default-active="activeIndex"
- mode="horizontal"
- @select="handleSelect"
- >
- <el-menu-item index="1">我的消息</el-menu-item>
- <el-menu-item index="2">所有消息</el-menu-item>
- </el-menu>
- <avue-crud
- :data="data"
- :option="option"
- :table-loading="showLoading"
- :page.sync="page"
- :permission="permissionList"
- @size-change="sizeChange"
- @current-change="currentChange"
- >
- <template
- slot="imageUrl"
- slot-scope="scope"
- >
- <el-button
- v-if="scope.row.imageUrl.length>0"
- size="small"
- @click="openPreview(scope.row.imageUrl,scope.$index)"
- >图片</el-button>
- </template>
- <!-- 提交进度 -->
- <template
- slot="cz"
- slot-scope="scope"
- >
- <el-button
- size="small"
- @click="changeProgres(scope.row)"
- v-show="scope.row.operation"
- >提交进度</el-button>
- </template>
- <!-- 处理状态 -->
- <template
- slot="isCurrent"
- slot-scope="scope"
- >
- <div class="icon-font">
- <i
- class="el-icon-success text-success"
- v-if="scope.row.isCurrent"
- ></i>
- <i
- class="el-icon-warning text-warning"
- v-if="!scope.row.isCurrent"
- ></i>
- </div>
- </template>
- </avue-crud>
- <el-dialog
- :visible.sync="dialogVisible"
- width="600px"
- append-to-body
- :close-on-click-modal="false"
- >
- <div class="flex jc-al-c">
- <span
- class="mg-r-20 titl-font"
- style="width:180px;text-align:right;"
- >提交进度</span>
- <el-select
- v-model="curRow.currentLink"
- placeholder="请选择"
- @change="operationMethods"
- >
- <el-option
- label="进入人工预处理环境"
- :value="2"
- />
- <el-option
- label="已解决"
- :value="3"
- />
- </el-select>
- </div>
- <div
- style="margin-top:40px;"
- class="flex jc-al-c"
- v-show="operation.show"
- >
- <span style="font-size: 16px;margin-right:20px;width:180px;text-align:right;font-weight: 900;">*预计处理截止时间</span>
- <el-date-picker
- v-model="operation.manageTime"
- type="date"
- format="yyyy-MM-dd"
- value-format="yyyy-MM-dd"
- placeholder="选择日期"
- ></el-date-picker>
- </div>
- <span
- slot="footer"
- class="dialog-footer"
- >
- <el-button @click="dialogVisible = false">取 消</el-button>
- <el-button
- type="primary"
- @click="SubmissionProgress"
- >确 定</el-button>
- </span>
- </el-dialog>
- </basic-container>
- </template>
- <script>
- import { queryBusinessUserOpinionList, manageUserOperationStatus, queryBusinessUserOpinionListAll } from "@/api/news/news.js";
- import { mapGetters } from "vuex";
- export default {
- data () {
- return {
- activeIndex: "1",
- curRow: {},
- dialogVisible: false,
- operation: {
- manageTime: '',
- show: false
- },
- page: {
- total: 1,
- currentPage: 1,
- pageSize: 10
- },
- showLoading: false,
- data: [],
- option: {
- border: true,
- align: 'center',
- menuAlign: 'center',
- menu: false,
- column: [
- {
- label: '时间',
- prop: 'createTime',
- },
- {
- label: '剩余反馈用户时间(分钟)',
- prop: 'timeRemaining'
- },
- {
- label: '项目',
- prop: 'projectName',
- },
- {
- label: '合同段',
- prop: 'contractName',
- },
- {
- label: '消息类型',
- prop: 'problemType',
- },
- {
- label: '问题描述',
- prop: 'opinionContent',
- },
- {
- label: '反馈人',
- prop: 'submitUserName',
- slot: true,
- },
- {
- label: '联系方式',
- prop: 'submitPhone',
- slot: true,
- },
- {
- label: '图片',
- prop: 'imageUrl',
- slot: true,
- },
- {
- label: '操作',
- prop: 'cz',
- slot: true,
- },
- {
- label: '处理状态',
- prop: 'isCurrent',
- slot: true,
- },
- ]
- }
- };
- },
- computed: {
- ...mapGetters(["userInfo"]),
- permissionList () {
- return {
- addBtn: false,
- viewBtn: false,
- delBtn: false,
- editBtn: false
- };
- },
- },
- created () {
- this.init();
- //console.log(this.userInfo)
- },
- methods: {
- init () {
- this.queryBusinessUserOpinionList()
- },
- operationMethods () {
- this.operation.show = this.curRow.currentLink == 2;
- if (!this.operation.show) {
- this.operation.manageTime = '';
- }
- },
- openPreview (imageUrl, index) {
- let imageUrls = []
- imageUrl.forEach(val => {
- imageUrls.push({ url: val })
- });
- this.$ImagePreview(imageUrls, index, {
- closeOnClickModal: true,
- // beforeClose:()=>{
- // this.$message.success('关闭回调')
- // }
- });
- },
- changeProgres (row) {
- this.curRow = { ...row }
- this.operation.show = this.curRow.currentLink == 2;
- this.dialogVisible = true;
- },
- handleSelect (key) {//消息分类菜单激活回调
- this.activeIndex = key
- },
- async SubmissionProgress () {//提交进度弹框保存按钮事件
- if (this.curRow.currentLink == 2) {
- if (this.operation.manageTime) {
- await this.manageUserOperationStatus({
- currentLinkId: this.curRow.currentLinkId,
- currentLink: this.curRow.currentLink,
- newNumber: this.curRow.newNumber,
- userOpinionId: this.curRow.userOpinionId,
- manageTime: this.operation.manageTime
- })
- } else {
- this.$message({
- type: 'error',
- message: '请设置预计处理截止时间'
- })
- }
- } else {
- await this.manageUserOperationStatus({
- currentLinkId: this.curRow.currentLinkId,
- currentLink: this.curRow.currentLink,
- newNumber: this.curRow.newNumber,
- userOpinionId: this.curRow.userOpinionId
- })
- }
- },
- //#region 分页
- currentChange (val) {
- this.page.currentPage = val
- if (this.activeIndex == 1) {
- this.queryBusinessUserOpinionList()
- } else {
- this.queryBusinessUserOpinionListAll()
- }
- },
- sizeChange (val) {
- this.page.pageSize = val
- if (this.activeIndex == 1) {
- this.queryBusinessUserOpinionList()
- } else {
- this.queryBusinessUserOpinionListAll()
- }
- },
- async queryBusinessUserOpinionList () {//获取分配给当前登录用户的工单记录
- const { data: res } = await queryBusinessUserOpinionList({
- current: this.page.currentPage,
- size: this.page.pageSize
- })
- console.log(res);
- if (res.code == 200) {
- this.data = res.data.records
- this.page.total = res.data.total
- }
- },
- async manageUserOperationStatus (da) {//业务人员提交环节操作
- const { data: res } = await manageUserOperationStatus(da)
- if (res.code == 200) {
- this.dialogVisible = false
- this.$message({
- type: 'success',
- message: '提交成功!'
- })
- //重新刷新列表
- await this.queryBusinessUserOpinionList();
- }
- },
- async queryBusinessUserOpinionListAll () {//所有工单处理列表
- const { data: res } = await queryBusinessUserOpinionListAll({
- current: this.page.currentPage,
- size: this.page.pageSize
- })
- console.log(res);
- if (res.code == 200) {
- this.data = res.data.records
- this.page.total = res.data.total
- }
- }
- //#endregion
- },
- watch: {
- 'activeIndex' (value) {
- this.page.currentPage = 1
- this.page.pageSize = 10
- if (value == 1) {
- this.queryBusinessUserOpinionList()
- } else {
- this.queryBusinessUserOpinionListAll()
- }
- }
- }
- };
- </script>
- <style scoped lang="scss">
- .icon-font[class^="icon-"] {
- font-size: 26px !important;
- }
- .titl-font {
- font-size: 32px;
- }
- </style>
|