728fe46f by xiaomiao

bug修改

1 parent 2129e5a8
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-17 15:18:47
* @LastEditTime: 2023-03-31 13:53:41
*/
import filter from '@/utils/filter.js'
class data extends filter {
......@@ -35,7 +35,7 @@ class data extends filter {
{
label: "业务号",
prop: "ywh",
minWidth: 150,
minWidth: 120,
},
{
label: "不动产单元号",
......
......@@ -55,9 +55,9 @@
<script>
import columnar from "@/components/Echart/Columnar";
import work from "@/api/work";
export default {
import columnar from "@/components/Echart/Columnar";
import work from "@/api/work";
export default {
data () {
return {
// 日均接入量
......@@ -113,11 +113,11 @@ export default {
});
},
},
};
};
</script>
<style lang="scss" scoped>
.leftcard {
.leftcard {
width: 30%;
display: flex;
height: calc(100vh - 114px);
......@@ -216,10 +216,12 @@ export default {
content: "";
width: 0.0052rem;
height: 0.4688rem;
background: linear-gradient(180deg,
background: linear-gradient(
180deg,
#091b4c 0%,
#47b5e0 56%,
#091b4c 100%);
#091b4c 100%
);
}
.cardcontent-right {
......@@ -238,18 +240,26 @@ export default {
}
p {
width: 1.25rem;
margin-bottom: 0.0417rem;
span:nth-child(1) {
text-align: right;
display: inline-block;
width: 45%;
margin-right: 0.0781rem;
}
span:nth-child(2) {
text-align: left;
display: inline-block;
width: 45%;
font-size: 20px;
font-weight: 900;
}
}
}
}
}
}
</style>
......
......@@ -57,7 +57,7 @@
let res = await work.getdjywltotal(p);
res.result.map((item, index) => {
this.config.data.push([index, item.AREACODE, item.ywtotal])
this.config.data.push([index + 1, item.AREACODE, item.ywtotal])
});
......
......@@ -7,7 +7,7 @@
</el-form-item>
<el-row class="mb-5">
<el-col :span="4">
<el-form-item label="菜单名称" prop="rolesName">
<el-form-item label="角色名称" prop="rolesName">
<el-input v-model.trim="form.rolesName" class="width100" clearable placeholder="角色名称"></el-input>
</el-form-item>
</el-col>
......