导入抄表记录完成电表列表部分(未调试)

This commit is contained in:
2025-09-08 17:31:03 +08:00
parent 71ad4995c8
commit 70737fa2b8
16 changed files with 249 additions and 46 deletions

View File

@@ -1,4 +1,8 @@
{
"component": true,
"usingComponents": {}
"usingComponents": {
"van-tag": "@vant/weapp/tag/index",
"van-row": "@vant/weapp/row/index",
"van-col": "@vant/weapp/col/index"
}
}

View File

@@ -1,2 +1,61 @@
<!--pages/writeReading/components/meterInfo/index.wxml-->
<text>pages/writeReading/components/meterInfo/index.wxml</text>
<view class="wrapper">
<view class="title">
<text> 电表列表 </text>
</view>
<view class="info">
<view class="title">
<view class="address">
标1东-307
</view>
<view class="meterType">
<van-tag type="primary">华昌宝能收费</van-tag>
</view>
</view>
<view class="detail">
<van-row gutter="20">
<van-col span="12">
<view class="text">
<view>
编号
</view>
<view>
1202312423524
</view>
</view>
</van-col>
<van-col span="12">
<view class="text">
<view>
编号
</view>
<view>
1202312423524
</view>
</view>
</van-col>
<van-col span="12">
<view class="text">
<view>
编号
</view>
<view>
1202312423524
</view>
</view>
</van-col>
<van-col span="12">
<view class="text">
<view>
编号
</view>
<view>
1202312423524
</view>
</view>
</van-col>
</van-row>
</view>
</view>
</view>

View File

@@ -1 +1,33 @@
/* pages/writeReading/components/meterInfo/index.wxss */
/* pages/writeReading/components/meterInfo/index.wxss */
.wrapper {
padding: 0 20rpx 20rpx;
}
.info {
margin-top: 20rpx;
padding: 20rpx;
border-radius: 15rpx;
background-color: white;
}
.info .title {
display: flex;
align-items: center;
justify-content: space-between;
}
.info .title .address {
font-size: 36rpx;
font-weight: 800;
}
.info .detail {
margin-top: 20rpx;
}
.info .detail .text {
display: flex;
justify-content: space-between;
font-size: 30rpx;
}