hookehuyr

style(页面布局): 统一温馨提示的图标和文字布局样式

将离线预约码和预约码页面的温馨提示部分统一调整为flex布局,使图标和文字对齐更美观
<!--
* @Date: 2024-01-16 10:06:47
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2026-01-07 21:08:16
* @LastEditTime: 2026-01-07 21:59:47
* @FilePath: /xyxBooking-weapp/src/pages/bookingCode/index.vue
* @Description: 文件描述
-->
......@@ -10,7 +10,7 @@
<view style="padding: 32rpx;">
<qrCode></qrCode>
<view class="warning">
<view><IconFont name="tips" />&nbsp;温馨提示</view>
<view style="display: flex; align-items: center; justify-content: center;"><IconFont name="tips" /><text style="margin-left: 10rpx;">温馨提示</text></view>
<view style="margin-top: 16rpx;">一人一码,扫码或识别身份证成功后进入</view>
<view style="height: 256rpx;"></view>
</view>
......
......@@ -8,9 +8,7 @@
<view style="padding: 32rpx;">
<offlineQrCode :list="qrList"></offlineQrCode>
<view class="warning">
<view>
温馨提示
</view>
<view style="display: flex; align-items: center; justify-content: center;"><IconFont name="tips" /><text style="margin-left: 10rpx;">温馨提示</text></view>
<view style="margin-top: 16rpx;">一人一码,扫码或识别身份证成功后进入</view>
</view>
</view>
......