Selaa lähdekoodia

传真列表显示问题

miaofuhao 1 vuosi sitten
vanhempi
commit
a8e32915dc

BIN
CallCenterWeb.UI/1125-1dist.zip


BIN
CallCenterWeb.UI/1219-1dist.zip


+ 9 - 1
CallCenterWeb.UI/src/api/customerManagement/contact.js

@@ -8,7 +8,14 @@ export function getContactList(params) {
8 8
         params
9 9
     })
10 10
 }
11
-
11
+// 获取联系人列表数据
12
+export function postcus(params) {
13
+    return request({
14
+        url: 'api/concat/getcus',
15
+        method: 'get',
16
+        params
17
+    })
18
+}
12 19
 // 添加联系人数据
13 20
 export function addContact(data) {
14 21
     return request({
@@ -75,3 +82,4 @@ export function searchContact(params) {
75 82
 }
76 83
 
77 84
 
85
+

+ 7 - 0
CallCenterWeb.UI/src/api/reportFormManagement/reportFormManagement.js

@@ -134,3 +134,10 @@ export function getfkfsbymonth(params) {
134 134
     params
135 135
   });
136 136
 }
137
+export function getdetailfkfsbymonth(params) {
138
+  return request({
139
+    url: "/api/workorderstatistics/getdetailfkfsbymonth",
140
+    method: "get",
141
+    params
142
+  });
143
+}

+ 6 - 6
CallCenterWeb.UI/src/views/callScreen/components/AddOrEditCustomer.vue

@@ -317,9 +317,9 @@ export default {
317 317
       console.log('watch---' + this.screenState)
318 318
       console.log('watch---' + this.callinNum)
319 319
 
320
-      if (this.callinNum.length === 4) {
321
-        return
322
-      }
320
+      // if (this.callinNum.length === 4) {
321
+      //   return
322
+      // }
323 323
 
324 324
       if (this.screenState && this.callinNum) {
325 325
         this.isButton = true
@@ -333,9 +333,9 @@ export default {
333 333
     this.getcode()
334 334
     this.getList()
335 335
     this.getSeatGroup()
336
-    if (this.callinNum.length === 4) {
337
-      return
338
-    }
336
+    // if (this.callinNum.length === 4) {
337
+    //   return
338
+    // }
339 339
     console.log(this.callinNum + '--121212121212')
340 340
     if (this.callinNum) {
341 341
       this.ruleForm.cusTel = this.callinNum

+ 8 - 2
CallCenterWeb.UI/src/views/callScreen/components/callScreen.vue

@@ -399,6 +399,7 @@ export default {
399 399
       ruleForm: {
400 400
         // 新增工单
401 401
         workId: "", // 工单id
402
+        cusTrade:"",
402 403
         callNum: "", // 呼入号码
403 404
         zxbh: "", // 坐席编号
404 405
         name: "", // 客户姓名
@@ -690,7 +691,9 @@ export default {
690 691
             this.loading = true;
691 692
             return new Promise((resolve) => {
692 693
               const params = {
693
-                callid: this.callid,
694
+                // callid: this.callid,
695
+                callId: this.callid,
696
+                cusTrade:this.ruleForm.cusTrade,
694 697
                 zxbh: this.zxbh, // 坐席编号
695 698
                 gdzl: this.slType, // 工单种类
696 699
                 content: this.ruleForm.content, // 来电内容
@@ -711,6 +714,7 @@ export default {
711 714
                 callType: this.ruleForm.callType,
712 715
                 rate: this.ruleForm.rate,
713 716
               };
717
+              console.log(params)
714 718
               if (params.isClose === 0) {
715 719
                 this.$emit("childByValue", this.callinText);
716 720
               }
@@ -728,6 +732,7 @@ export default {
728 732
                         offset: 50,
729 733
                       });
730 734
                       this.ruleForm.content = "";
735
+                      this.ruleForm.cusTrade = ''
731 736
                       this.slType = "";
732 737
                       this.csType = "";
733 738
                       this.consultType = "";
@@ -811,11 +816,12 @@ export default {
811 816
     },
812 817
     // 获取客户信息
813 818
     getCusInfos(data) {
814
-      console.log(data);
815 819
       if (data) {
816 820
         this.cusInfo.cusname = data.cusName;
817 821
         this.ruleForm.cusName = data.cusName; // 客户姓名
818 822
         this.ruleForm.clientId = data.clientId;
823
+        this.ruleForm.cusTrade = data.cusTrade;
824
+        
819 825
       }
820 826
     },
821 827
     // 短信

+ 2 - 0
CallCenterWeb.UI/src/views/faxManager/faxManagement/faxImgs.vue

@@ -86,6 +86,7 @@ export default {
86 86
     }
87 87
     this.url =
88 88
       'http://' + this.faxurl + ':' + this.part + '/files/' + this.rowfile
89
+    console.log(this.url)
89 90
     this.loadImage()
90 91
     this.seefax()
91 92
   },
@@ -127,6 +128,7 @@ export default {
127 128
             canvasList.push(canvas)
128 129
           }
129 130
         }
131
+        console.log(canvasList)
130 132
         self.imglists = canvasList
131 133
         self.imgnum = self.imglists.length
132 134
       }

+ 65 - 24
CallCenterWeb.UI/src/views/faxManager/faxTransmission/customSend.vue

@@ -2,7 +2,7 @@
2 2
   <div>
3 3
     <el-form ref="ruleForm" :model="ruleForm" label-width="80px">
4 4
       <el-row>
5
-        <el-col :span="18">
5
+        <el-col :span="24">
6 6
           <el-form-item label="发送对象">
7 7
             <el-select
8 8
               style="width: 390px"
@@ -16,25 +16,24 @@
16 16
               @change="selectStatus"
17 17
             >
18 18
               <el-option
19
-                v-if="item.telePhone"
20
-                v-for="item in contactDataLists"
21
-                :key="item.telePhone"
22
-                :label="(item.cusPname?(item.cusPname+'-'):'') + item.telePhone"
23
-                :value="item.telePhone"
19
+                v-if="item.value"
20
+                v-for="(item,index) in contactDataLists"
21
+                :key="index"
22
+                :label="item.lable"
23
+                :value="item.value"
24 24
               />
25 25
             </el-select>
26
+            <el-button style="margin-left: 30px;" type="primary" @click="submitForm()">提交</el-button>
26 27
           </el-form-item>
27 28
         </el-col>
28 29
       </el-row>
29
-      <el-form-item>
30
-        <el-button type="primary" @click="submitForm()">提交</el-button>
31
-      </el-form-item>
30
+      <!-- <el-form-item></el-form-item> -->
32 31
     </el-form>
33 32
   </div>
34 33
 </template>
35 34
 <script>
36 35
 import { addSMSInfo } from "@/api/noteManagement/noteList";
37
-import { getContactList } from "@/api/customerManagement/contact";
36
+import { getContactList,postcus } from "@/api/customerManagement/contact";
38 37
 import { mapGetters } from "vuex";
39 38
 export default {
40 39
   props: {
@@ -42,6 +41,14 @@ export default {
42 41
       type: Number,
43 42
       default: 0,
44 43
     },
44
+    recvTime:{
45
+      type: String,
46
+      default: "",
47
+    },
48
+    smsTaskid:{
49
+      type: Number,
50
+      default: 0,
51
+    },
45 52
     faxPage: {
46 53
       type: Number,
47 54
       default: 0,
@@ -57,7 +64,14 @@ export default {
57 64
   },
58 65
   data() {
59 66
     return {
60
-      contactDataLists: [],
67
+      contactDataLists: [
68
+        // {
69
+        //   lable:'mm' ,
70
+        //   value :'15838094023'
71
+        // }
72
+      ],
73
+      
74
+      SMScontent:'',
61 75
       dataTime: "",
62 76
       ruleForm: {
63 77
         faxStatus: "", // 状态
@@ -75,16 +89,28 @@ export default {
75 89
     hh = hh > 9 ? hh : "0" + hh;
76 90
     this.dataTime = month + "月" + day + "日" + hh + "点";
77 91
     this.getContactDataLists();
78
-    console.log(this.f_customerid,this.faxPage,this.cusCode)
92
+    console.log(this.f_customerid,this.faxPage,this.cusCode,this.smsTaskid)
79 93
   },
80 94
   methods: {
95
+    getSendTime() {
96
+      const yyyy = this.recvTime.split(' ')[0].split('-')[0]
97
+      const mm = this.recvTime.split(' ')[0].split('-')[1]
98
+      const dd = this.recvTime.split(' ')[0].split('-')[2]
99
+      const hh = this.recvTime.split(' ')[1].split(':')[0]
100
+      const resultData = "您好!我公司于" + yyyy +'年' + mm+ '月' + dd + '日'+ hh+'点'+"收到贵司" +this.faxPage + "页传真。"
101
+      return resultData
102
+    },
81 103
     submitForm() {
82
-      this.SMScontent =
83
-        "您好!我公司于" +
84
-        this.dataTime +
85
-        "收到贵司" +
86
-        this.faxPage +
87
-        "页传真。";
104
+      if (this.recvTime) {
105
+        this.SMScontent = this.getSendTime()
106
+      } else {
107
+        this.$message({
108
+            message: '接收传真时间为空',
109
+            type: 'warning'
110
+        })
111
+        return
112
+      }
113
+      
88 114
       return new Promise((resolve) => {
89 115
         const params = {
90 116
           content: this.SMScontent,
@@ -96,7 +122,13 @@ export default {
96 122
           f_userid: this.zxbh,
97 123
           isTimer: 0,
98 124
         };
99
-        console.log(params);
125
+        if (this.f_customerid == -1) {
126
+          params.taskid = this.smsTaskid
127
+        } else {
128
+          params.id = this.f_customerid
129
+        }
130
+        console.log(params)
131
+        console.log(this.recvTime)
100 132
         addSMSInfo(params)
101 133
           .then((response) => {
102 134
             if (response.state == "success") {
@@ -118,14 +150,23 @@ export default {
118 150
       // this.loadingR = true;
119 151
       return new Promise((resolve) => {
120 152
         const params = {
121
-          pageindex: 1, // int 第几页
122
-          pagesize: 9999, // int 每页几条信息
123
-          cusCode: this.cusCode, // 客户代码
153
+          
154
+          cuscode: this.cusCode, // 客户代码
124 155
         };
125
-        getContactList(params).then((response) => {
156
+        postcus(params).then((response) => {
126 157
           // this.loadingR = false;
127 158
           if (response.state.toLowerCase() === "success") {
128
-            this.contactDataLists = response.data;
159
+            this.contactDataLists = [];
160
+            let newAway = []
161
+            if (response.data.length>0) {
162
+              response.data.forEach(element => {
163
+                const obj = {}
164
+                obj.lable = (element.cuspname?(element.cuspname+'-'):'')+element.telephone
165
+                obj.value = element.telephone
166
+                this.contactDataLists.push(obj)
167
+              });
168
+              console.log(this.contactDataLists)
169
+            }
129 170
           }
130 171
         });
131 172
         resolve();

+ 32 - 8
CallCenterWeb.UI/src/views/faxManager/faxTransmission/index.vue

@@ -300,14 +300,14 @@
300 300
         label="传真号码"
301 301
         align="left"
302 302
         prop="qh"
303
-        min-width="120"
303
+        min-width="100"
304 304
       />
305 305
 
306 306
       <el-table-column
307 307
         :show-overflow-tooltip="true"
308 308
         label="接收时间"
309 309
         align="left"
310
-        min-width="125"
310
+        min-width="120"
311 311
       >
312 312
         <template slot-scope="scope">
313 313
           {{ scope.row.recvTime | isrecvTime }}
@@ -325,7 +325,7 @@
325 325
         prop="companyName"
326 326
         label="单位名称"
327 327
         align="left"
328
-        min-width="310"
328
+        min-width="270"
329 329
       />
330 330
       <el-table-column
331 331
         :show-overflow-tooltip="true"
@@ -339,7 +339,7 @@
339 339
         :show-overflow-tooltip="true"
340 340
         label="付款方式"
341 341
         align="left"
342
-        min-width="160"
342
+        min-width="140"
343 343
       >
344 344
         <template slot-scope="scope">
345 345
           {{ scope.row.payment | CusCcFilter }}
@@ -368,7 +368,7 @@
368 368
         prop="czyName"
369 369
         label="经办人"
370 370
         align="left"
371
-        min-width="160"
371
+        min-width="140"
372 372
       />
373 373
 
374 374
       <el-table-column
@@ -393,6 +393,16 @@
393 393
           <span>{{ scope.row.completionTime | iscompletionTime }}</span>
394 394
         </template>
395 395
       </el-table-column>
396
+      <el-table-column
397
+        :show-overflow-tooltip="true"
398
+        label="短信状态"
399
+        align="left"
400
+        min-width="80"
401
+      >
402
+        <template slot-scope="scope">
403
+          {{ scope.row.sendSMS?'已发送':'未发送' }}
404
+        </template>
405
+      </el-table-column>
396 406
       <el-table-column label="是否关闭" align="left" min-width="80">
397 407
         <template slot-scope="scope">
398 408
           {{ scope.row.isClose | isCloseFilter }}
@@ -519,6 +529,7 @@ export default {
519 529
   },
520 530
   data() {
521 531
     return {
532
+      rowItem:{},
522 533
       hackReset: true,
523 534
       pageshow: true,
524 535
       stateStr: '',
@@ -614,7 +625,7 @@ export default {
614 625
       this.$nextTick(function () {
615 626
         if (this.suoyin.length != 0) {
616 627
           this.$refs.tb.setCurrentRow(this.dataLists[this.suoyin])
617
-
628
+          this.rowItem = this.dataLists[this.suoyin]
618 629
           this.faxid = this.dataLists[this.suoyin].id
619 630
           this.faxnum = this.dataLists[this.suoyin].faxNumber
620 631
           this.cusCodeSend = this.dataLists[this.suoyin].cusCode
@@ -632,7 +643,7 @@ export default {
632 643
           }
633 644
         } else {
634 645
           this.$refs.tb.setCurrentRow(this.dataLists[0])
635
-
646
+          this.rowItem = this.dataLists[0]
636 647
           this.faxid = this.dataLists[0].id
637 648
           this.faxnum = this.dataLists[0].faxNumber
638 649
           this.cusCodeSend = this.dataLists[0].cusCode
@@ -889,6 +900,15 @@ export default {
889 900
     },
890 901
     btn_add_send() {
891 902
       if (this.faxid) {
903
+        let recvTime = ''
904
+        let smsTaskid = 0
905
+        if (this.faxid == -1) {
906
+          smsTaskid = this.rowItem.recvFax.taskid
907
+        }
908
+        if (this.rowItem.recvTime) {
909
+          recvTime = this.rowItem.recvTime
910
+        }
911
+        console.log(recvTime,smsTaskid)
892 912
         this.$layer.iframe({
893 913
           content: {
894 914
             content: customSend, // 传递的组件对象
@@ -896,7 +916,10 @@ export default {
896 916
             data: {
897 917
               f_customerid: this.faxid,
898 918
               cusCode: this.cusCodeSend,
899
-              faxPage: this.faxPage
919
+              faxPage: this.faxPage,
920
+              recvTime:recvTime,
921
+              smsTaskid:smsTaskid
922
+
900 923
             } // props//该方法会自动添加一个key为layerid的值, 该值为创建层的id, 可以直接使用
901 924
           },
902 925
           area: ['60%', '25%'],
@@ -1269,6 +1292,7 @@ export default {
1269 1292
     // 选择传真
1270 1293
     linkcus(row, rowIndex) {
1271 1294
       console.log('数据', row)
1295
+      this.rowItem = row
1272 1296
       this.suoyin = row.index // 行索引
1273 1297
       // this.$refs.tb.toggleRowSelection(row)
1274 1298
       this.recvTaskId = row.recvTaskId

+ 3 - 1
CallCenterWeb.UI/src/views/faxManager/faxTransmission/updateFax.vue

@@ -347,7 +347,7 @@ export default {
347 347
       checkednum: '', // 不用编号
348 348
       intcolor: '', // 原始color
349 349
       fileList: [], // 上传文件数组
350
-
350
+      recvTime:'',
351 351
       ruleForm: {
352 352
         faxColor: '', // 颜色
353 353
         faxPhone: '', // 传真号码
@@ -443,6 +443,7 @@ export default {
443 443
           content: customSend, // 传递的组件对象
444 444
           parent: this, // 当前的vue对象
445 445
           data: {
446
+            recvTime:this.recvTime,
446 447
             f_customerid: this.rowid,
447 448
             cusCode: this.cusCode,
448 449
             faxPage: this.faxPage
@@ -633,6 +634,7 @@ export default {
633 634
             } else {
634 635
               this.ruleForm.faxPhone = res.faxPhone // 传真号码
635 636
             }
637
+            this.recvTime = res.recvTime
636 638
             this.faxPhone = res.faxPhone
637 639
             this.cusFaxBackup = this.faxPhone
638 640
             this.ruleForm.clientId = res.clientId // 客户id

+ 25 - 13
CallCenterWeb.UI/src/views/reportFormManagement/clientGrade/index.vue

@@ -30,62 +30,74 @@
30 30
         <el-table-column prop="type" label="客户等级" align="center" min-width="120" />
31 31
         <el-table-column prop="january" label="一月" align="center">
32 32
           <template slot-scope="scope">
33
-            <el-button type="text" @click="btnDetail(scope.row,1)" >{{ scope.row.january }}</el-button>
33
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,1)" >{{ scope.row.january }}</el-button>
34
+            <span  v-show="!scope.row.typeid">{{ scope.row.january }}</span>
34 35
           </template>
35 36
         </el-table-column>
36 37
         <el-table-column prop="february" label="二月" align="center">
37 38
           <template slot-scope="scope">
38
-            <el-button type="text" @click="btnDetail(scope.row,2)" >{{ scope.row.february }}</el-button>
39
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,2)" >{{ scope.row.february }}</el-button>
40
+            <span  v-show="!scope.row.typeid">{{ scope.row.february }}</span>
39 41
           </template>
40 42
         </el-table-column>
41 43
         <el-table-column prop="march" label="三月" align="center">
42 44
           <template slot-scope="scope">
43
-            <el-button type="text" @click="btnDetail(scope.row,3)" >{{ scope.row.march }}</el-button>
45
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,3)" >{{ scope.row.march }}</el-button>
46
+            <span  v-show="!scope.row.typeid">{{ scope.row.april }}</span>
44 47
           </template>
45 48
         </el-table-column>
46 49
         <el-table-column prop="april" label="四月" align="center">
47 50
           <template slot-scope="scope">
48
-            <el-button type="text" @click="btnDetail(scope.row,4)" >{{ scope.row.april }}</el-button>
51
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,4)" >{{ scope.row.april }}</el-button>
52
+            <span v-show="!scope.row.typeid">{{ scope.row.april }}</span>
49 53
           </template>
50 54
         </el-table-column>
51 55
         <el-table-column prop="may" label="五月" align="center">
52 56
           <template slot-scope="scope">
53
-            <el-button type="text" @click="btnDetail(scope.row,5)" >{{ scope.row.may }}</el-button>
57
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,5)" >{{ scope.row.may }}</el-button>
58
+            <span v-show="!scope.row.typeid">{{ scope.row.may }}</span>
54 59
           </template>
55 60
         </el-table-column>
56 61
         <el-table-column prop="june" label="六月" align="center">
57 62
           <template slot-scope="scope">
58
-            <el-button type="text" @click="btnDetail(scope.row,6)" >{{ scope.row.june }}</el-button>
63
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,6)" >{{ scope.row.june }}</el-button>
64
+            <span v-show="!scope.row.typeid">{{ scope.row.june }}</span>
59 65
           </template>
60 66
         </el-table-column>
61 67
         <el-table-column prop="july" label="七月" align="center">
62 68
           <template slot-scope="scope">
63
-            <el-button type="text" @click="btnDetail(scope.row,7)" >{{ scope.row.july }}</el-button>
69
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,7)" >{{ scope.row.july }}</el-button>
70
+            <span v-show="!scope.row.typeid">{{ scope.row.august }}</span>
64 71
           </template>
65 72
         </el-table-column>
66 73
         <el-table-column prop="august" label="八月" align="center" >
67 74
           <template slot-scope="scope">
68
-            <el-button type="text" @click="btnDetail(scope.row,8)" >{{ scope.row.august }}</el-button>
75
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,8)" >{{ scope.row.august }}</el-button>
76
+            <span v-show="!scope.row.typeid">{{ scope.row.august }}</span>
69 77
           </template>
70 78
         </el-table-column>
71 79
         <el-table-column prop="september" label="九月" align="center" >
72 80
           <template slot-scope="scope">
73
-            <el-button type="text" @click="btnDetail(scope.row,9)" >{{ scope.row.september }}</el-button>
81
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,9)" >{{ scope.row.september }}</el-button>
82
+            <span v-show="!scope.row.typeid">{{ scope.row.september }}</span>
74 83
           </template>
75 84
         </el-table-column>
76 85
         <el-table-column prop="october" label="十月" align="center" >
77 86
           <template slot-scope="scope">
78
-            <el-button type="text" @click="btnDetail(scope.row,10)" >{{ scope.row.october }}</el-button>
87
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,10)" >{{ scope.row.october }}</el-button>
88
+            <span v-show="!scope.row.typeid">{{ scope.row.october }}</span>
79 89
           </template>
80 90
         </el-table-column>
81 91
         <el-table-column prop="november" label="十一月" align="center" >
82 92
           <template slot-scope="scope">
83
-            <el-button type="text" @click="btnDetail(scope.row,11)" >{{ scope.row.november }}</el-button>
93
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,11)" >{{ scope.row.november }}</el-button>
94
+            <span v-show="!scope.row.typeid">{{ scope.row.november }}</span>
84 95
           </template>
85 96
         </el-table-column>
86 97
         <el-table-column prop="december" label="十二月" align="center" >
87 98
           <template slot-scope="scope">
88
-            <el-button type="text" @click="btnDetail(scope.row,12)" >{{ scope.row.december }}</el-button>
99
+            <el-button v-show="scope.row.typeid" type="text" @click="btnDetail(scope.row,12)" >{{ scope.row.december }}</el-button>
100
+            <span v-show="!scope.row.typeid">{{ scope.row.december }}</span>
89 101
           </template>
90 102
         </el-table-column>
91 103
       </el-table>
@@ -128,7 +140,7 @@ export default {
128 140
   },
129 141
   methods: {
130 142
     btnDetail(item,month){
131
-      console.log(this.year,month,item.typeid)
143
+      console.log(this.year,month,item.typeid,item)
132 144
       this.$layer.iframe({
133 145
         content: {
134 146
           content: listdetail, // 传递的组件对象

+ 8 - 11
CallCenterWeb.UI/src/views/reportFormManagement/clientGrade/listDetail.vue

@@ -5,14 +5,11 @@
5 5
       border
6 6
       highlight-current-row
7 7
       stripe>
8
-      <el-table-column
9
-        label="序号"
10
-        type="index"
11
-        align="center"
12
-        width="100"/>
13
-      <el-table-column prop="name" label="姓名" align="center" min-width />
14
-      <el-table-column prop="tel" label="电话" align="center" min-width />
15
-      <el-table-column prop="count" label="数量" align="center" min-width />
8
+      <el-table-column prop="level" label="客户等级" align="center"/>
9
+      <el-table-column prop="salman" label="销售经理" align="center" min-width />
10
+      <el-table-column prop="records" label="来电数量" align="center" min-width />
11
+      <el-table-column prop="jindu" label="查询进度" align="center" min-width />
12
+      <el-table-column prop="per" label="占比" align="center" min-width />
16 13
     </el-table>
17 14
     <!-- <pagination
18 15
       v-show="pageParams.total > 0"
@@ -26,7 +23,7 @@
26 23
 
27 24
 <script>
28 25
 import Pagination from '@/components/Paginationtwo' // 对el-pagination 二次封装
29
-import { getfkfsbymonth } from "@/api/reportFormManagement/reportFormManagement";
26
+import { getfkfsbymonth,getdetailfkfsbymonth } from "@/api/reportFormManagement/reportFormManagement";
30 27
 
31 28
 export default {
32 29
   name: 'ListDetail',
@@ -88,8 +85,8 @@ export default {
88 85
         type: this.typeid
89 86
       }
90 87
       return new Promise(resolve => {
91
-        // ?year=2021&month=06&type=A 
92
-        getfkfsbymonth(params).then(response => {
88
+        // ?year=2021&month=06&type=A getfkfsbymonth  getdetailfkfsbymonth
89
+        getdetailfkfsbymonth(params).then(response => {
93 90
           if (response.state.toLowerCase() === 'success') {
94 91
             this.dataLists = response.data
95 92
             // this.pageParams.total = response.total

+ 1 - 1
CallCenterWeb.UI/static/config/serverConfig.json

@@ -1,6 +1,6 @@
1 1
 {
2 2
   "NODE_ENV": "development",
3
-  "BASE_API": "http://192.168.8.3:8081/",
3
+  "BASE_API": "http://192.168.8.3:8081/", 
4 4
   "SOCKET_IP": "192.168.8.7",
5 5
   "SOCKET_PORT": "8081",
6 6
   "LineChat_SOCKET_IP": "192.168.5.42",