소스 검색

新增区域业绩管理菜单页面

lihongxiao 2 년 전
부모
커밋
94de82d9c8
3개의 변경된 파일과 13개의 추가작업 그리고 2개의 파일을 삭제
  1. 8 1
      src/http/moudules/user.js
  2. 4 0
      src/views/Letter/Letter.vue
  3. 1 1
      src/views/PeopleManage/Player/RegionPerformanceManage.vue

+ 8 - 1
src/http/moudules/user.js

@@ -389,5 +389,12 @@ export const quUserNumList = (data) => {
   })
 }
 
-
+// 区域业绩管理列详情接口
+export const quUserNumDetail = (data) => {
+  return axios({
+    url: '/user/quUserNumDetail',
+    method: 'post',
+    data
+  })
+}
 

+ 4 - 0
src/views/Letter/Letter.vue

@@ -1336,6 +1336,10 @@
                     reslistitem.result.accidentInfoStr }}
                   </span>
                 </span>
+                  <span  v-if="reslistitem.result.ubiPredictedInfoScore" class="marginL">
+                  紫荆能源车(鼎然-车辆风险评分):
+                  <span>{{ reslistitem.result.ubiPredictedInfoScore }}</span>
+                </span>
                 <span v-if="reslistitem.result.iszdj && reslistitem.result.iszdj=='1'">真单交</span>
                 <span v-if="reslistitem.result.iszdj && reslistitem.result.iszdj=='0'">假单交</span>
                 </div>

+ 1 - 1
src/views/PeopleManage/Player/RegionPerformanceManage.vue

@@ -305,7 +305,7 @@
     },
     getDetailData(){
       this.loading = true;
-      this.$api.user.quTeamNumDetail(this.detailParams).then((res) => {
+      this.$api.user.quUserNumDetail(this.detailParams).then((res) => {
         if (res.code == 200) {
           this.detailData = res.data.records;
           this.detailParams.pageNo = res.data.current;