feat(退款页面): 添加无退款记录时的样式和提示信息

This commit is contained in:
2025-09-29 23:43:00 +08:00
parent 503bcc249e
commit e92b864bec
2 changed files with 17 additions and 0 deletions

View File

@@ -50,6 +50,12 @@
</view> </view>
<button class="button" form-type="submit" type="warn">线下退款</button> <button class="button" form-type="submit" type="warn">线下退款</button>
</form> </form>
<view wx:if="{{userInfo.refundType === 'none'}}" class="no-refund-info"> <!-- 没有可退款记录 -->
<view class="info">
<view class="no-refund-text">没有可退款记录</view>
</view>
</view>
</block> </block>
</view> </view>
</view> </view>

View File

@@ -80,3 +80,14 @@
.balance-item .b { .balance-item .b {
color: #0056A3; color: #0056A3;
} }
.no-refund-info {
margin-top: 20rpx;
}
.no-refund-text {
text-align: center;
color: #999;
font-size: 28rpx;
padding: 40rpx 0;
}