登录模块接口对接完毕

This commit is contained in:
仲么了
2023-03-22 14:09:51 +08:00
parent c308a7131b
commit 02e950130d
4 changed files with 61 additions and 14 deletions

View File

@@ -2,7 +2,7 @@
<view>
<uni-data-checkbox v-model="radio" :localdata="sex"></uni-data-checkbox>
<view class="charts-box">
<qiun-data-charts :ontouch="true" type="column" :opts="opts" :chartData="chartData" />
<qiun-data-charts type="bar" :opts="opts" :chartData="chartData" />
</view>
</view>
</template>
@@ -27,12 +27,12 @@ export default {
opts: {
enableScroll: true,
color: ["#1890FF", "#91CB74", "#FAC858", "#EE6666", "#73C0DE", "#3CA272", "#FC8452", "#9A60B4", "#ea7ccc"],
padding: [15, 15, 0, 5],
padding: [10,0,10,0],
legend: {},
xAxis: {
disableGrid: true,
itemCount: 8,
scrollShow: true,
// scrollShow: true,
},
yAxis: {
data: [
@@ -49,7 +49,7 @@ export default {
activeBgOpacity: 0.08
}
},
}
}
};
},
mounted () {
@@ -65,11 +65,11 @@ export default {
series: [
{
name: "电网侧",
data: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30]
data: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 7]
},
{
name: "负载册",
data: [30, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
data: [5, 29, 28, 27, 26, 25, 24, 23, 22, 21, 20, 19, 18, 17, 16, 15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1]
}
]
};
@@ -83,7 +83,6 @@ export default {
<style lang="scss">
.charts-box {
margin-top: 20rpx;
width: 100%;
height: 300px;
height:600px;
}
</style>