fix: ui
All checks were successful
构建并部署前端到生产环境 / build-and-deploy (push) Successful in 1m1s

This commit is contained in:
luo
2026-07-30 11:35:56 +08:00
parent 863a34f74c
commit e7a7b30bc8
10 changed files with 498 additions and 201 deletions

View File

@@ -28,7 +28,7 @@
</view>
<view class="package-main">
<view class="data-block">
<view class="data-label">可用流量</view>
<view class="data-label">套餐流量</view>
<view class="package-data">{{ formatData(item.data_allowance, item.data_unit) }}</view>
</view>
<view class="price-block">
@@ -36,7 +36,6 @@
<text class="package-price">{{ formatPackagePrice(item.retail_price) }}</text>
</view>
</view>
<view class="package-desc" v-if="item.description">{{ item.description }}</view>
<view class="package-footer">
<view class="btn">
<up-button type="primary" size="small" @click="buyPackage(item)">立即订购</up-button>
@@ -56,7 +55,7 @@
<view class="summary-price">¥{{ formatPackagePrice(currentPackage?.retail_price) }}</view>
<view class="summary-details">
<view class="detail-item">
<text class="detail-label">可用流量</text>
<text class="detail-label">套餐流量</text>
<text class="detail-value">{{ formatData(currentPackage?.data_allowance, currentPackage?.data_unit) }}</text>
</view>
<view class="detail-divider"></view>
@@ -672,13 +671,6 @@
}
}
.package-desc {
font-size: 24rpx;
color: var(--text-secondary);
line-height: 1.5;
margin-bottom: 22rpx;
}
.package-footer {
display: block;
padding-top: 22rpx;