소스 검색

修复

修复
烬玊 1 년 전
부모
커밋
e3903c2bb1
2개의 변경된 파일4개의 추가작업 그리고 8개의 파일을 삭제
  1. 1 1
      src/api/article_liao.js
  2. 3 7
      src/pages/index/components/car_owner_credit.vue

+ 1 - 1
src/api/article_liao.js

@@ -172,7 +172,7 @@ export default {
172 172
   },
173 173
   //从业人员考核管理
174 174
   dashDataDockingDelete(params){
175
-    return axios.tet('/dash/data/docking/delete', params)
175
+    return axios.post('/dash/data/docking/delete', params)
176 176
   },
177 177
   //从业人员考核
178 178
   dashEmployeeQualificationExamine(params){

+ 3 - 7
src/pages/index/components/car_owner_credit.vue

@@ -45,9 +45,6 @@ export default {
45 45
         } ,{
46 46
           label: '催缴总次数',
47 47
           key: 'totalReminders'
48
-        },{
49
-          label: '信用分',
50
-          key: 'credit_point'
51 48
         }
52 49
       ],
53 50
       tableData: [],
@@ -58,19 +55,18 @@ export default {
58 55
   },
59 56
   mounted() {
60 57
     this.getTableData()
61
-    this.dashCarOwnerCreditPage()
62 58
   },
63 59
   methods: {
64 60
     handlePageChange() {
65 61
       this.getTableData()
66 62
     },
67
-    dashCarOwnerCreditPage(){
63
+    getTableData() {
68 64
       const {pageNum, pageSize} = this
69
-      api.dashCarOwnerCreditPage({current: pageNum, size: pageSize}).then(res => {
65
+      api.czxyjgListByPage({current: pageNum, size: pageSize}).then(res => {
70 66
         this.tableData = res.data.records || []
71 67
         this.total = res.data.total
72 68
       })
73
-    },
69
+    }
74 70
   }
75 71
 }
76 72
 </script>