chore: 杂项更新(gitignore/登录/注册/首页微调)
Generated with [Claude Code](https://claude.ai/code) via [Happy](https://happy.engineering) Co-Authored-By: Claude <noreply@anthropic.com> Co-Authored-By: Happy <yesreply@happy.engineering>
This commit is contained in:
@@ -32,3 +32,4 @@ pnpm-debug.log*
|
||||
*.log
|
||||
*.tmp
|
||||
*.temp
|
||||
.ace-tool/
|
||||
|
||||
+1
-1
@@ -75,7 +75,7 @@
|
||||
<text class="table-name">{{ item.table_name }}</text>
|
||||
</view>
|
||||
<view class="header-right">
|
||||
<text class="limit-info">{{ $lang.maxLimit }}:{{ $fk(item.limit_money ? item.limit_money.split('-')[1] : 0) }} {{ $lang.minLimit }}:{{ item.limit_money ? item.limit_money.split('-')[0] : 0 }}</text>
|
||||
<text class="limit-info">{{ $lang.maxLimit }}:{{ $fk((item.game_id == 4 || item.game_id == 5) && userInfo.limit_high_nn > 0 ? userInfo.limit_high_nn : (userInfo.limit_high || 0)) }} {{ $lang.minLimit }}:{{ (item.game_id == 4 || item.game_id == 5) && userInfo.limit_low_nn > 0 ? userInfo.limit_low_nn : (userInfo.limit_low || 0) }}</text>
|
||||
<view class="status-dot" :class="{ 'is-live': item.status===1 }"></view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
+1
-1
@@ -29,7 +29,7 @@
|
||||
<u-input
|
||||
class="input"
|
||||
v-model="phone"
|
||||
type="number"
|
||||
type="text"
|
||||
clearable
|
||||
:placeholder="$lang.enterAccount"
|
||||
><!--
|
||||
|
||||
+1
-1
@@ -4,7 +4,7 @@
|
||||
<view class="logo">
|
||||
<u--image :showLoading="false" :src="loginLogo" width="125px" height="119px" mode="scaleToFill"></u--image>
|
||||
</view>
|
||||
<u-input class="input" :focus='focusUsername' v-model="username" type="number" clearable :placeholder="$lang.enterAccount">
|
||||
<u-input class="input" :focus='focusUsername' v-model="username" type="text" clearable :placeholder="$lang.enterAccount">
|
||||
<text class="text" slot="prefix">{{ $lang.account }}</text>
|
||||
</u-input>
|
||||
<u-input class="input" :focus='focusPassword' v-model="password" :password="true" :placeholder="$lang.enterPassword" autocomplete="new-password">
|
||||
|
||||
Reference in New Issue
Block a user