Просмотр исходного кода

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

lihongxiao 2 лет назад
Родитель
Сommit
94de82d9c8

+ 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;