123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <template>
- <div class="container">
- <fullscreen :fullscreen.sync="fullscreen" class="container-box">
- <div class="titbox">
- <h2>处理工单历史信息</h2>
- <div>
- <i class="el-icon-refresh" @click="iconCli(1)"></i>
- <i class="el-icon-full-screen" @click="iconCli(2)"></i>
- <!-- <i class="el-icon-folder-opened"></i>-->
- <!-- <i class="el-icon-view"></i>-->
- <!-- <i class="el-icon-more"></i>-->
- </div>
- </div>
- <div class="search">
- <mySearch :searchList="searchList" @searchInfo="searchInfo"></mySearch>
- </div>
- <div class="tabbox">
- <el-table height="calc(100% - 40px)" v-loading="loading" class="com-table" ref="multipleTable"
- :data="tableData" tooltip-effect="dark" size="small" border style="width: 100%">
- <el-table-column align="center" prop="complaintWOID" label="投诉处理工单编号" show-overflow-tooltip>
- </el-table-column>
- <el-table-column align="center" prop="complaintWONode" show-overflow-tooltip label="投诉处理工单环节">
- </el-table-column>
- <el-table-column prop="staffName" label="工单处理人" show-overflow-tooltip>
- <template slot-scope="scope">
- <span>{{$desensitization(scope.row.staffName,1)}}</span>
- </template>
- </el-table-column>
- <el-table-column align="center" prop="staffNO" label="工单处理人工号">
- </el-table-column>
- <el-table-column width="120" align="center" prop="bizCode" label="返回码">
- </el-table-column>
- <el-table-column align="center" prop="bizDesc" label="返回信息描述">
- </el-table-column>
- <el-table-column align="center" prop="feedbackTime" label="处理时间">
- </el-table-column>
- <el-table-column align="center" prop="rltSysNM" label="派转外系统名称">
- </el-table-column>
- </el-table>
- <el-pagination class="pageBox" @current-change="currchange" layout="prev, pager, next" background
- :total="total">
- </el-pagination>
- </div>
- </fullscreen>
- </div>
- </template>
- <script>
- import mySearch from "../../../components/search";
- export default {
- components: {
- mySearch,
- },
- data() {
- return {
- tableList: [],
- fullscreen: false,
- total: 0,
- pageSize: 1,
- tableData: [],
- searchList: [{
- type: "input",
- tit: "投诉单号",
- value: "",
- width: "100%",
- options: [],
- }, ],
- params: {
- complaintWOID: "",
- },
- loading: false,
- };
- },
- methods: {
- //搜索数据
- searchInfo(v) {
- this.params = {};
- v[0] ? (this.params.complaintWOID = v[0]) : "";
- this.getList(this.params, this.pageSize);
- },
- //获取列表
- getList(v, n) {
- this.loading = true;
- this.pageSize = n;
- this.$http({
- url: "/compvis/cpv/complaintWoQuery",
- method: "post",
- headers: {
- "Content-Type": "application/json",
- page: '{"pageNo":"' + n + '","pageSize":"10"}',
- },
- data: v,
- }).then((res) => {
- this.loading = false;
- this.tableData = res.data.data;
- this.total = res.data.totalRecord;
- });
- },
- //功能栏
- iconCli(v) {
- if (v === 1) {
- this.getList(this.params, this.pageSize);
- }
- if (v === 2) {
- this.fullscreen = !this.fullscreen;
- }
- },
- // 分页
- currchange(v) {
- this.pageSize = v;
- this.getList(this.params, this.pageSize);
- },
- },
- mounted() {
- if (this.$route.params.complaintWOID) {
- this.searchList[0].value = this.$route.params.complaintWOID;
- this.params.complaintWOID = this.$route.params.complaintWOID;
- } else {
- this.searchList[0].value = "";
- this.params.complaintWOID = "";
- }
- this.getList(this.params, this.pageSize);
- },
- created() {},
- watch: {
- $route(to, from) {
- if (from.name == "complaintQuery" && this.$route.params.complaintWOID) {
- this.searchList[0].value = this.$route.params.complaintWOID;
- this.params.complaintWOID = this.$route.params.complaintWOID;
- this.getList(this.params, this.pageSize);
- } else {
- this.searchList[0].value = "";
- this.params.complaintWOID = "";
- }
- },
- },
- };
- </script>
- <style>
- .el-input__suffix {
- cursor: pointer;
- }
- </style>
- <style scoped lang="scss">
- .titbox {
- div {
- float: right;
- i {
- font-size: 22px;
- margin-left: 20px;
- cursor: pointer;
- }
- }
- }
- .tabbox {
- margin-top: 15px;
- }
- .pageBox {
- text-align: right;
- margin-top: 10px;
- }
- </style>
|