|
|
|
@ -24,7 +24,7 @@
|
|
|
|
|
src="@/assets/privateOrder/positiveEnergy/本级网评指令比例.png"
|
|
|
|
|
alt=""
|
|
|
|
|
/>
|
|
|
|
|
<span>本级网评指令比例 </span>
|
|
|
|
|
<span>{{ sjNumName }} </span>
|
|
|
|
|
<span style="margin-left: 20px; color: #71e8fb">
|
|
|
|
|
{{ sjNum }}%
|
|
|
|
|
</span>
|
|
|
|
@ -43,7 +43,7 @@
|
|
|
|
|
src="@/assets/privateOrder/positiveEnergy/上级网评指令比例.png"
|
|
|
|
|
alt=""
|
|
|
|
|
/>
|
|
|
|
|
<span>上级网评指令比例</span>
|
|
|
|
|
<span>{{ bjNumName }}</span>
|
|
|
|
|
<span style="margin-left: 20px; color: #79ffd0">
|
|
|
|
|
{{ bjNum }}%
|
|
|
|
|
</span>
|
|
|
|
@ -83,6 +83,8 @@ export default {
|
|
|
|
|
return {
|
|
|
|
|
sjNum: 0,
|
|
|
|
|
bjNum: 0,
|
|
|
|
|
sjNumName: "",
|
|
|
|
|
bjNumName: "",
|
|
|
|
|
percentageList: null,
|
|
|
|
|
percentageName: [],
|
|
|
|
|
percentageValue: [],
|
|
|
|
@ -108,7 +110,9 @@ export default {
|
|
|
|
|
getNetworkAppraiser() {
|
|
|
|
|
listBjsj({ pageNum: 1, pageSize: 2 }).then((res) => {
|
|
|
|
|
this.sjNum = res.rows[0].percent;
|
|
|
|
|
this.sjNumName = res.rows[0].name;
|
|
|
|
|
this.bjNum = res.rows[1].percent;
|
|
|
|
|
this.bjNumName = res.rows[1].name;
|
|
|
|
|
this.sjdata = Math.round(this.bjNum);
|
|
|
|
|
this.bjdata = Math.round(this.sjNum);
|
|
|
|
|
this.inItCylinder();
|
|
|
|
@ -119,7 +123,6 @@ export default {
|
|
|
|
|
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)
|
|
|
|
|
);
|
|
|
|
|