zx-调性分布

prod
张雄 3 years ago
parent 93358ca604
commit c23907146b

@ -17,23 +17,31 @@
</template> </template>
<script> <script>
import {getGraphData} from "@/api/getEchars" import {getGraphData} from "@/api/getEchars";
//import {getDiffuseZhuTi} from "@/api/WeiboDetails";
import createOpt from "./opt" import createOpt from "./opt"
export default { export default {
name: "weiboSpreadFission", name: "weiboSpreadFission",
data() { data() {
return { return {
opt: {} opt: {},
form: {
token:"",
sBrand:""
}
} }
}, },
created() { created() {
this.drawGraph() this.form.token = this.getToken;
this.form.sBrand = this.getBrand.brandname || this.brand;
this.drawGraph();
}, },
methods: { methods: {
drawGraph() { drawGraph() {
getGraphData().then(res => { let obj = Object.assign({}, this.getCtime2, this.form);
getGraphData(obj).then(res => {
this.opt = createOpt(res.data) this.opt = createOpt(res.data)
}) });
} }
} }

@ -34,7 +34,7 @@ export default {
bigV:{positive:0.1,negative:0.1,show:"个人大V"}, bigV:{positive:0.1,negative:0.1,show:"个人大V"},
media:{positive:0.1,negative:0.1,show:"媒体"}, media:{positive:0.1,negative:0.1,show:"媒体"},
enterprice:{positive:0.1,negative:0.1,show:"企业"}, enterprice:{positive:0.1,negative:0.1,show:"企业"},
goverment:{positive:0.1,negative:0.1,show:"企业"}, goverment:{positive:0.1,negative:0.1,show:"政府"},
famousPerson:{positive:0.1,negative:0.1,show:"名人"}, famousPerson:{positive:0.1,negative:0.1,show:"名人"},
uncertified:{positive:0.1,negative:0.1,show:"未认证"}, uncertified:{positive:0.1,negative:0.1,show:"未认证"},
certified:{positive:0.1,negative:0.1,show:"已认证"} certified:{positive:0.1,negative:0.1,show:"已认证"}

@ -49,11 +49,11 @@ export default {
methods: { methods: {
getData() { getData() {
this.load = true; this.load = true;
Promise.all([this.getH(),this.getF()]).then(() => { Promise.all([this.getH(), this.getF()]).then(() => {
// //
this.handlerTab(0) this.handlerTab(0);
this.load = false; this.load = false;
}) });
}, },
// //
getH() { getH() {
@ -73,12 +73,14 @@ export default {
getF() { getF() {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let obj = Object.assign({}, this.getCtime2, this.form); let obj = Object.assign({}, this.getCtime2, this.form);
getNegative(obj).then((res) => { getNegative(obj)
this.negativeData = res.data || {}; .then((res) => {
resolve(res) this.negativeData = res.data || {};
}).catch(() => { resolve(res);
})
.catch(() => {
reject(false); reject(false);
}); });
}); });
}, },
// //

Loading…
Cancel
Save