Browse Source

提交、

dev
douzhuo 2 years ago
parent
commit
b78b8c11a7
7 changed files with 23 additions and 12 deletions
  1. +1
    -1
      pages/center/Piabodata/StaffAnalysis.vue
  2. +7
    -2
      pages/center/Piabodata/Theteamcompared.vue
  3. +0
    -1
      pages/center/consumer/edit.vue
  4. +2
    -2
      pages/mine/reception/addreception.vue
  5. +1
    -1
      uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js
  6. +8
    -1
      uni_modules/qiun-data-charts/js_sdk/u-charts/config-ucharts.js
  7. +4
    -4
      utils/domain.js

+ 1
- 1
pages/center/Piabodata/StaffAnalysis.vue View File

@@ -123,7 +123,7 @@
<view class="title" style="padding-right: 30rpx;">
<view class="title1" style="flex: 1;">销讲能力</view>
</view>
<view class="uchaserbox">
<view class="uchaserbox" style="height: 70vh;">
<qiun-data-charts
type="radar"
:chartData="chartData"


+ 7
- 2
pages/center/Piabodata/Theteamcompared.vue View File

@@ -58,7 +58,7 @@
</view>
<view class="" v-if=" eharTab.active1 == 1 ">
<view class="danwei">接待量</view>
<view class="uchaserbox">
<view class="uchaserbox" style="height: 70vh;">
<qiun-data-charts
type="line"
:chartData="lineOptsect1"
@@ -216,7 +216,7 @@
</view>
</view>
<view class="uchaserbox">
<view class="uchaserbox uchaserboxs">
<qiun-data-charts
type="radar"
:opts="opts"
@@ -1050,6 +1050,11 @@
};
</script>
<style lang="scss" scoped>
.uchaserboxs {
width: 100%;
height: 70vh;
}
.box {
width: 100%;
height: 100%;


+ 0
- 1
pages/center/consumer/edit.vue View File

@@ -205,7 +205,6 @@
console.log(data)
if(data.data.code==10000){
this.list = data.data.data
}
}
})


+ 2
- 2
pages/mine/reception/addreception.vue View File

@@ -40,7 +40,7 @@
<view class="title" style="border: none;" @click="Buildingselection()">
<view class="titletext">客户来源</view>
<view class="titletext2" style="font-size: 30rpx;font-weight: 400;color: #B2B2B2;line-height: 90rpx;padding-left: 10rpx;">
<text v-if="parames.sourceId" style="color: #333333;">{{showSourceName}}</text>
<text v-if="showSourceName" style="color: #333333;">{{showSourceName}}</text>
<text v-else>请选择客户来源</text>
</view>
<view class="titleimg">
@@ -135,7 +135,6 @@
if(data.data.code==10000){
// this.shifoinfo=data.data.data.selfAssigned
this.list = data.data.data
}
}
})
@@ -281,6 +280,7 @@
this.Showhiddenunits=false;
},
confirm(e) {
console.log(e)
this.showSourceName = e[0].label;
this.parames.sourceId=e[0].value;
this.Showhiddenunits=false;


+ 1
- 1
uni_modules/qiun-data-charts/js_sdk/u-charts/config-echarts.js View File

@@ -59,7 +59,7 @@ module.exports = {
},
seriesFormatDemo:function(res){
return res.name + '年' + res.value + '元';
}
},
},
//这里演示了自定义您的图表类型的option,可以随意命名,之后在组件上 type="demotype" 后,组件会调用这个花括号里的option,如果组件上还存在eopts参数,会将demotype与eopts中option合并后渲染图表。
"demotype":{


+ 8
- 1
uni_modules/qiun-data-charts/js_sdk/u-charts/config-ucharts.js View File

@@ -690,7 +690,14 @@ module.exports = {
"labelBgColor": "#FFFFFF",
"labelBgOpacity": 0.7,
"labelFontColor": "#666666"
}
},
// 过滤文字
fileXLength(value) {
if (value.length > 6) {
return `${value.slice(0, 6)}`;
}
return value;
}
}
},


+ 4
- 4
utils/domain.js View File

@@ -1,7 +1,7 @@
// http.js使用域名
// const baseUrl = 'http://192.168.31.57:8080/autoSR/api';// 本地
const baseUrl = 'http://121.42.63.138:9091/autoSR/api';// 测试站
// const baseUrl = 'http://192.168.31.167:8080/autoSR/api'; // 长龙
// const baseUrl = 'http://121.42.63.138:9091/autoSR/api';// 测试站
const baseUrl = 'http://192.168.31.167:8080/autoSR/api'; // 长龙
// const baseUrl = 'http://192.168.31.134:8080/autoSR/api'; // 佳豪
// const baseUrl = 'http://10.2.1.104:8081/autoSR/api'; // 刘敏
// const baseUrl = 'https://zkgj.quhouse.com/api'; // 质控正式
@@ -14,8 +14,8 @@ const baseUrl = 'http://121.42.63.138:9091/autoSR/api';// 测试站
*/
// 此处主机域名修改成腾讯云解决方案分配的域名
// const host = 'http://192.168.31.57:8080/autoSR/api';// 本地
const host = 'http://121.42.63.138:9091/autoSR/api'; // 测试站
// const host = 'http://192.168.31.167:8080/autoSR/api'; // 长龙
// const host = 'http://121.42.63.138:9091/autoSR/api'; // 测试站
const host = 'http://192.168.31.167:8080/autoSR/api'; // 长龙
// const host = 'http://192.168.31.134:8080/autoSR/api'; // 佳豪
// const host = 'http://10.2.1.104:8081/autoSR/api'; // 刘敏
// const host = 'https://zkgj.quhouse.com/api'; // 质控正式


Loading…
Cancel
Save