纸板小程序:订单/送货单:列表与详情功能

This commit is contained in:
2026-06-11 11:26:40 +08:00
commit ef9ede1605
2317 changed files with 61642 additions and 0 deletions
+48
View File
@@ -0,0 +1,48 @@
<!--index.wxml-->
<navigation-bar title="登录 • 粤盈科技" back="{{false}}" color="black" background="#FFF"></navigation-bar>
<view class="page_container">
<view class="content_warp" style="width: {{inputWidth}}px; margin: 0 auto;">
<view class="icon">
<view class="img_warp">
<image src="../../assets/images/login_user.png" mode="widthFix" />
</view>
</view>
<view class="welcome">欢迎登录</view>
<view class="tip">请输入您的账号信息</view>
<view class="form_warp">
<view class="phone_input">
<t-input
value="{{phone}}"
placeholder-style="color: #b7b7b7"
placeholder="请输入手机号码"
bind:change="handlePhoneChange"
cursor-spacing="30"
style="border-radius: 200px;"
/>
</view>
<view class="password_input">
<t-input
key="input2"
placeholder="请输入密码"
placeholder-style="color: #b7b7b7"
type="{{ showPassword ? 'text' : 'password' }}"
value="{{password}}"
bind:change="onPasswordInput"
style="border-radius: 200px;margin-top: 6%;"
>
<view class="password-icon" slot="suffix-icon" bind:tap="onPasswordIconClick">
<t-icon
class="password-icon"
name="{{ showPassword ? 'browse' : 'browse-off' }}"
style="color: #b7b7b7; font-size: 18px; "
/>
</view>
</t-input>
</view>
<view class="login_btn" style="border-radius: 200px;">
<t-button bindtap="loginFun"size="large" shape="round" hover-class="btn-hover" style="width: {{inputWidth / 2}}px;">登录</t-button>
</view>
</view>
</view>
</view>