|
@@ -17,74 +17,71 @@ export default {
|
|
|
data() {
|
|
|
return {
|
|
|
options: {
|
|
|
- legend: {},
|
|
|
- tooltip: {},
|
|
|
- dataset: {
|
|
|
- source: [
|
|
|
- ["product", "今日", "本月", "今年"],
|
|
|
- // ["销售一组", 20, 30, 50],
|
|
|
- // ["销售二组", 15, 60, 80],
|
|
|
- // ["销售三组", 10, 20, 100],
|
|
|
- // ["销售6组", 1, 30, 100],
|
|
|
- ],
|
|
|
- },
|
|
|
- xAxis: { type: "category" },
|
|
|
- yAxis: {},
|
|
|
- series: [
|
|
|
- {
|
|
|
- type: "bar",
|
|
|
- label: {
|
|
|
- show: true,
|
|
|
- color: "#fff",
|
|
|
- position: 'top',
|
|
|
- formatter: function (params) {
|
|
|
- return params.value[1]+"%"
|
|
|
- }
|
|
|
+ legend: {},
|
|
|
+ tooltip: {},
|
|
|
+ dataset: {
|
|
|
+ source: [
|
|
|
+ ["product", "今日", "本月", "今年"],
|
|
|
+ // ["销售一组", 20, 30, 50],
|
|
|
+ // ["销售二组", 15, 60, 80],
|
|
|
+ // ["销售三组", 10, 20, 100],
|
|
|
+ // ["销售6组", 1, 30, 100],
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ xAxis: { type: "category" },
|
|
|
+ yAxis: {},
|
|
|
+ series: [
|
|
|
+ {
|
|
|
+ type: "bar",
|
|
|
+ label: {
|
|
|
+ show: true,
|
|
|
+ color: "#fff",
|
|
|
+ position: "top",
|
|
|
+ formatter: function (params) {
|
|
|
+ return params.value[1] + "%";
|
|
|
},
|
|
|
- itemStyle: {
|
|
|
- normal: {
|
|
|
- color: "#1a8cd7",
|
|
|
-
|
|
|
- },
|
|
|
+ },
|
|
|
+ itemStyle: {
|
|
|
+ normal: {
|
|
|
+ color: "#1a8cd7",
|
|
|
},
|
|
|
},
|
|
|
- {
|
|
|
- type: "bar",
|
|
|
- label: {
|
|
|
- show: true,
|
|
|
- color: "#fff",
|
|
|
- position: 'top',
|
|
|
- formatter: function (params) {
|
|
|
- return params.value[2]+"%"
|
|
|
- }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "bar",
|
|
|
+ label: {
|
|
|
+ show: true,
|
|
|
+ color: "#fff",
|
|
|
+ position: "top",
|
|
|
+ formatter: function (params) {
|
|
|
+ return params.value[2] + "%";
|
|
|
},
|
|
|
- itemStyle: {
|
|
|
- normal: {
|
|
|
- color: "skyblue",
|
|
|
-
|
|
|
- },
|
|
|
+ },
|
|
|
+ itemStyle: {
|
|
|
+ normal: {
|
|
|
+ color: "skyblue",
|
|
|
},
|
|
|
},
|
|
|
- {
|
|
|
- type: "bar",
|
|
|
- label: {
|
|
|
- show: true,
|
|
|
- color: "#fff",
|
|
|
- position: 'top',
|
|
|
- formatter: function (params) {
|
|
|
- return params.value[3]+"%"
|
|
|
- }
|
|
|
+ },
|
|
|
+ {
|
|
|
+ type: "bar",
|
|
|
+ label: {
|
|
|
+ show: true,
|
|
|
+ color: "#fff",
|
|
|
+ position: "top",
|
|
|
+ formatter: function (params) {
|
|
|
+ return params.value[3] + "%";
|
|
|
},
|
|
|
- itemStyle: {
|
|
|
- normal: {
|
|
|
- color: "orange",
|
|
|
-
|
|
|
- },
|
|
|
+ },
|
|
|
+ itemStyle: {
|
|
|
+ normal: {
|
|
|
+ color: "orange",
|
|
|
},
|
|
|
},
|
|
|
- ],
|
|
|
- },
|
|
|
- flag:false,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ flag: false,
|
|
|
};
|
|
|
},
|
|
|
components: {
|
|
@@ -96,60 +93,76 @@ export default {
|
|
|
default: () => ({}),
|
|
|
},
|
|
|
},
|
|
|
- mounted(){
|
|
|
- this.initHttp()
|
|
|
- // this.initHttp2()
|
|
|
- // this.initHttp3()
|
|
|
+ mounted() {
|
|
|
+ this.initHttp3();
|
|
|
},
|
|
|
- methods:{
|
|
|
- async initHttp(){
|
|
|
- let res = await asyncRequest.datatordertransferratetoday();
|
|
|
- if(res.data.length<=0) {
|
|
|
- this.$message.error("转单率暂无数据")
|
|
|
- return;
|
|
|
- }
|
|
|
- if(res.code == 0){
|
|
|
- console.log(res)
|
|
|
- res.data.forEach((item,index) => {
|
|
|
- this.$set(this.options.dataset.source, index+1, [item.companyName])
|
|
|
- this.$set(this.options.dataset.source[index+1], 1, item.transfer_rate)
|
|
|
- });
|
|
|
- await this.initHttp2()
|
|
|
- await this.initHttp3()
|
|
|
- }else{
|
|
|
- this.$message.error(res.message)
|
|
|
- return;
|
|
|
- }
|
|
|
+ methods: {
|
|
|
+ async initHttp() {
|
|
|
+ let res = await asyncRequest.datatordertransferratetoday();
|
|
|
+ if (res.data.length <= 0) {
|
|
|
+ for(let index = 0; index<this.options.dataset.source.length-1; index++){
|
|
|
+ this.$set(this.options.dataset.source[index + 1], 1, 0);
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (res.code == 0) {
|
|
|
+ // console.log(res)
|
|
|
+ res.data.forEach((item, index) => {
|
|
|
+ this.$set(
|
|
|
+ this.options.dataset.source[index + 1],
|
|
|
+ 1,
|
|
|
+ item.transfer_rate
|
|
|
+ );
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message);
|
|
|
+ return;
|
|
|
+ }
|
|
|
},
|
|
|
- async initHttp2(){
|
|
|
+ async initHttp2() {
|
|
|
let res = await asyncRequest.datatordertransferratemonth();
|
|
|
- if(res.code == 0){
|
|
|
- res.data.forEach((item,index) => {
|
|
|
- // this.$set(this.options.dataset.source, index+1, [item.companyName])
|
|
|
- this.$set(this.options.dataset.source[index+1], 2, item.transfer_rate)
|
|
|
- });
|
|
|
- }else{
|
|
|
- this.$message.error(res.message)
|
|
|
- return;
|
|
|
- }
|
|
|
+ if (res.data.length <= 0) {
|
|
|
+ for(let index = 0; index<this.options.dataset.source.length-1; index++){
|
|
|
+ this.$set(this.options.dataset.source[index + 1], 2, 0);
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (res.code == 0) {
|
|
|
+ res.data.forEach((item, index) => {
|
|
|
+ // this.$set(this.options.dataset.source, index+1, [item.companyName])
|
|
|
+ this.$set(
|
|
|
+ this.options.dataset.source[index + 1],
|
|
|
+ 2,
|
|
|
+ item.transfer_rate
|
|
|
+ );
|
|
|
+ });
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message);
|
|
|
+ return;
|
|
|
+ }
|
|
|
},
|
|
|
- async initHttp3(){
|
|
|
+ async initHttp3() {
|
|
|
let res = await asyncRequest.datatordertransferrateyear();
|
|
|
- if(res.code == 0){
|
|
|
- res.data.forEach((item,index) => {
|
|
|
- // this.$set(this.options.dataset.source, index+1, [item.companyName])
|
|
|
- this.$set(this.options.dataset.source[index+1], 3, item.transfer_rate)
|
|
|
- });
|
|
|
- }else{
|
|
|
- this.$message.error(res.message)
|
|
|
- return;
|
|
|
- }
|
|
|
- }
|
|
|
+ if (res.code == 0) {
|
|
|
+ res.data.forEach((item, index) => {
|
|
|
+ this.$set(this.options.dataset.source, index + 1, [item.companyName]);
|
|
|
+ this.$set(
|
|
|
+ this.options.dataset.source[index + 1],
|
|
|
+ 3,
|
|
|
+ item.transfer_rate
|
|
|
+ );
|
|
|
+ });
|
|
|
+ await this.initHttp2();
|
|
|
+ await this.initHttp();
|
|
|
+ } else {
|
|
|
+ this.$message.error(res.message);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ },
|
|
|
},
|
|
|
watch: {
|
|
|
// cdata: {
|
|
|
// handler() {
|
|
|
-
|
|
|
// },
|
|
|
// immediate: true,
|
|
|
// deep: true,
|