Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Hooke
/
xyxBooking-weapp
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
hookehuyr
2026-01-16 20:39:58 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8b7561fbba772c615345b048c4e036d7023045cc
8b7561fb
1 parent
0d65d303
style(ui): 统一添加参观者按钮的样式
为保持UI一致性,将两个页面中的"添加参观者"按钮样式统一调整为flex布局并居中显示,同时为图标添加右边距
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
src/pages/submit/index.vue
src/pages/visitorList/index.vue
src/pages/submit/index.vue
View file @
8b7561f
<!--
* @Date: 2024-01-15 16:25:51
* @LastEditors: hookehuyr hookehuyr@gmail.com
* @LastEditTime: 2026-01-16 20:
09:30
* @LastEditTime: 2026-01-16 20:
38:48
* @FilePath: /xyxBooking-weapp/src/pages/submit/index.vue
* @Description: 预约人员信息
-->
...
...
@@ -15,8 +15,8 @@
</view>
</view>
<view @tap="goToVisitor" class="add-visitors">
<view>
<IconFont name="plus" /> 添加参观者
<view
class="flex items-center justify-center"
>
<IconFont name="plus"
class="mr-1"
/> 添加参观者
</view>
</view>
<view v-if="visitorList.length" class="visitors-list">
...
...
src/pages/visitorList/index.vue
View file @
8b7561f
...
...
@@ -5,7 +5,9 @@
<view class="text">参观者信息</view>
</view>
<view @tap="() => { go('/pages/addVisitor/index') }" class="add-visitors">
<view class="add-btn"><IconFont name="plus" /> 添加参观者</view>
<view class="add-btn flex items-center justify-center">
<IconFont name="plus" class="mr-1" /> 添加参观者
</view>
</view>
<view v-if="visitorList.length" class="visitors-list">
<view v-for="(item, index) in visitorList" :key="index" class="visitor-item">
...
...
Please
register
or
login
to post a comment