|
|
|
@ -70,10 +70,7 @@
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { getComplete } from "@/api/common";
|
|
|
|
|
import {
|
|
|
|
|
networkAppraisercomplete,
|
|
|
|
|
networkAppraiser,
|
|
|
|
|
} from "@/api/zongzhi/st.js";
|
|
|
|
|
import { listBjsj, listWpyrwwcl } from "@/api/zongzhi/st.js";
|
|
|
|
|
export default {
|
|
|
|
|
components: {},
|
|
|
|
|
filters: {
|
|
|
|
@ -109,9 +106,9 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
getNetworkAppraiser() {
|
|
|
|
|
networkAppraiser().then((res) => {
|
|
|
|
|
this.sjNum = res.data[0].pt;
|
|
|
|
|
this.bjNum = res.data[1].pt;
|
|
|
|
|
listBjsj({ pageNum: 1, pageSize: 2 }).then((res) => {
|
|
|
|
|
this.sjNum = res.rows[0].percent;
|
|
|
|
|
this.bjNum = res.rows[1].percent;
|
|
|
|
|
this.sjdata = Math.round(this.bjNum);
|
|
|
|
|
this.bjdata = Math.round(this.sjNum);
|
|
|
|
|
this.inItCylinder();
|
|
|
|
@ -119,12 +116,16 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
// 获取任务完成率data
|
|
|
|
|
getpercentageData() {
|
|
|
|
|
networkAppraisercomplete().then((res) => {
|
|
|
|
|
res.data.forEach((item) => {
|
|
|
|
|
this.percentageName.push(item.name);
|
|
|
|
|
this.percentageValue.push(item.pt);
|
|
|
|
|
this.inItBar();
|
|
|
|
|
listWpyrwwcl({ pageNum: 1, pageSize: 7 }).then((res) => {
|
|
|
|
|
res.rows.forEach((item) => {
|
|
|
|
|
let name = JSON.parse(item.areaId);
|
|
|
|
|
console.log();
|
|
|
|
|
this.percentageName.push(
|
|
|
|
|
this.$filterDict("town", name[name.length - 1], true)
|
|
|
|
|
);
|
|
|
|
|
this.percentageValue.push(item.finish);
|
|
|
|
|
});
|
|
|
|
|
this.inItBar();
|
|
|
|
|
});
|
|
|
|
|
// this.percentageName = ['陆渡街道', '港区', '浮桥镇', '编办', '老干部局', '党校', '档案馆']
|
|
|
|
|
// this.percentageValue = [80, 90, 60, 90, 90, 70, 50]
|
|
|
|
|