123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478 |
- <template>
- <view class="login-page">
- <view class="brand-area">
- <image class="logo" src="/static/logo.png" mode="aspectFit" />
- <text class="brand-title">小鹅通</text>
- <view class="slogan-area">
- <text class="slogan">让知识创造价值</text>
- <view class="slogan-underline"></view>
- </view>
- </view>
- <view class="phone-area">
- <text class="phone">199****4261</text>
- <text class="carrier">号码认证由中国电信提供</text>
- </view>
- <button class="main-btn login-btn" :disabled="!agreed" @tap="handleLogin">一键登录</button>
- <button class="main-btn wechat-btn" :disabled="!agreed" @tap="socialLogin('wechat')">
- <image class="wechat-icon" src="/static/wechat.png" /> 微信登录
- </button>
- <view class="protocol-area">
- <checkbox :checked="agreed" @tap="agreed = !agreed" color="#2979ff" />
- <text class="protocol-text">
- 我已阅读并同意
- <text class="link" @tap="openProtocol('service')">《服务协议》</text>、
- <text class="link" @tap="openProtocol('privacy')">《隐私政策》</text>
- </text>
- </view>
- <view class="other-login">
- <text class="other-title">其他方式登录</text>
- <view class="other-icons">
- <view @tap="showLoginPopup = true">
- <image class="icon" src="/static/phone.png" />
- </view>
- <view >
- <image class="icon" src="/static/qq.png" />
- </view>
- </view>
- </view>
- <!-- 登录弹窗 -->
- <view v-if="showLoginPopup" class="popup-mask">
- <view class="popup-box">
- <text class="close-btn" @tap="showLoginPopup = false">×</text>
- <view class="popup-title">登录</view>
- <view class="popup-tabs">
- <text :class="{active: loginTab==='phone'}" @tap="loginTab='phone'">手机号登录</text>
- <text :class="{active: loginTab==='account'}" @tap="loginTab='account'">账号密码登录</text>
- </view>
- <view v-if="loginTab==='phone'">
- <view class="input-row">
- <input v-model="loginPhone" placeholder="请输入手机号" />
- </view>
- <view class="input-row code-row">
- <input v-model="loginCode" placeholder="请输入验证码" />
- <button class="code-btn" :disabled="loginCodeCountdown > 0" @tap="getLoginCode">
- {{ loginCodeCountdown > 0 ? loginCodeCountdown + 's' : '获取验证码' }}
- </button>
- </view>
- </view>
- <view v-else>
- <view class="input-row">
- <input v-model="loginAccount" placeholder="请输入账号" />
- </view>
- <view class="input-row">
- <input v-model="loginPassword" type="password" placeholder="请输入密码" />
- </view>
- </view>
- <button class="main-btn popup-login-btn" @tap="handlePopupLogin">登录</button>
- <view class="popup-footer">
- <text @tap="openRegister">去注册</text>
- </view>
- </view>
- </view>
- <!-- 注册弹窗 -->
- <view v-if="showRegisterPopup" class="popup-mask">
- <view class="popup-box">
- <text class="close-btn" @tap="showRegisterPopup = false">×</text>
- <view class="popup-title">注册</view>
- <view class="input-row">
- <input v-model="regPhone" placeholder="请输入手机号" />
- </view>
- <view class="input-row code-row">
- <input v-model="regCode" placeholder="请输入验证码" />
- <button class="code-btn" @tap="getRegCode">
- {{ regCodeCountdown > 0 ? regCodeCountdown + 's' : '获取验证码' }}
- </button>
- </view>
- <view class="input-row">
- <input v-model="regAccount" placeholder="请输入账号" />
- </view>
- <view class="input-row">
- <input v-model="regPassword" type="password" placeholder="请输入密码" />
- </view>
- <button class="main-btn popup-login-btn" @tap="handleRegister">注册</button>
- </view>
- </view>
- </view>
- </template>
- <script setup>
- import { ref, onUnmounted } from 'vue'
- const agreed = ref(false)
- const showLoginPopup = ref(false)
- const showRegisterPopup = ref(false)
- const loginTab = ref('phone')
- const loginPhone = ref('')
- const loginCode = ref('')
- const loginAccount = ref('')
- const loginPassword = ref('')
- const regPhone = ref('')
- const regCode = ref('')
- const regAccount = ref('')
- const regPassword = ref('')
- const loginCodeCountdown = ref(0)
- const regCodeCountdown = ref(0)
- let loginCodeTimer = null
- let regCodeTimer = null
- function handleLogin() {
- if (!agreed.value) {
- uni.showToast({ title: '请先同意协议', icon: 'none' })
- return
- }
- // 登录逻辑
- }
- function openProtocol(type) {
- const urls = {
- service: '/pages/protocol/service',
- privacy: '/pages/protocol/privacy'
- }
- uni.navigateTo({ url: urls[type] })
- }
- function socialLogin(type) {
- // 微信、QQ等登录逻辑
- }
- function openRegister() {
- showLoginPopup.value = false
- showRegisterPopup.value = true
- }
- function getLoginCode() {
- if (loginCodeCountdown.value > 0) return;
- if (!/^1[3-9]\d{9}$/.test(loginPhone.value)) {
- uni.showToast({ title: '请输入正确手机号', icon: 'none' });
- return;
- }
- // 先启动倒计时
- loginCodeCountdown.value = 60;
- loginCodeTimer = setInterval(() => {
- if (loginCodeCountdown.value > 0) {
- loginCodeCountdown.value--;
- } else {
- clearInterval(loginCodeTimer);
- loginCodeTimer = null;
- }
- }, 1000);
- uni.request({
- url: 'http://localhost:9500/user/code',
- method: 'POST',
- data: { phone: loginPhone.value },
- success(res) {
- console.log('验证码接口返回', res);
- if (res.data && (res.data.code === 0 || res.data.success)) {
- uni.showToast({ title: '验证码已发送', icon: 'none' });
- } else {
- uni.showToast({ title: res.data.msg || '发送失败', icon: 'none' });
- }
- },
- fail(err) {
- console.log('验证码接口失败', err);
- uni.showToast({ title: '网络错误', icon: 'none' });
- }
- });
- }
- function getRegCode() {
- if (regCodeCountdown.value > 0) return
- regCodeCountdown.value = 60
- uni.showToast({ title: '验证码已发送', icon: 'none' })
- regCodeTimer = setInterval(() => {
- if (regCodeCountdown.value > 0) {
- regCodeCountdown.value--
- } else {
- clearInterval(regCodeTimer)
- regCodeTimer = null
- }
- }, 1000)
- }
- function handlePopupLogin() {
- if (loginTab.value === 'phone') {
- if (!/^1[3-9]\d{9}$/.test(loginPhone.value)) {
- uni.showToast({ title: '请输入正确手机号', icon: 'none' });
- return;
- }
- if (!loginCode.value) {
- uni.showToast({ title: '请输入验证码', icon: 'none' });
- return;
- }
- uni.request({
- url: 'http://localhost:9500/user/login',
- method: 'POST',
- data: { phone: loginPhone.value, code: loginCode.value },
- success(res) {
- console.log('登录接口返回', res);
- if (res.data && (res.data.code === 0 || res.data.success)) {
- uni.showToast({ title: '登录成功', icon: 'success' });
- uni.setStorageSync('userPhone', loginPhone.value);
- // 跳转首页
- uni.switchTab({ url: '/pages/index/index' });
- } else {
- uni.showToast({ title: res.data.msg || '登录失败', icon: 'none' });
- }
- },
- fail(err) {
- console.log('登录接口失败', err);
- uni.showToast({ title: '网络错误', icon: 'none' });
- }
- });
- } else {
- if (loginAccount.value === '零零' && loginPassword.value === '666') {
- uni.setStorageSync('userPhone', loginAccount.value)
- uni.switchTab({ url: '/pages/index/index' })
- } else {
- uni.showToast({ title: '账号或密码错误', icon: 'none' })
- }
- }
- }
- function handleRegister() { /* 注册逻辑 */ }
- onUnmounted(() => {
- if (loginCodeTimer) clearInterval(loginCodeTimer)
- if (regCodeTimer) clearInterval(regCodeTimer)
- })
- </script>
- <style lang="scss" scoped>
- .login-page {
- min-height: 100vh;
- background: #fff;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: flex-start;
- padding: 0 40rpx;
- }
- .brand-area {
- margin-top: 100rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .logo {
- width: 120rpx;
- height: 120rpx;
- margin-bottom: 20rpx;
- }
- .brand-title {
- font-size: 44rpx;
- font-weight: bold;
- color: #222;
- margin-bottom: 20rpx;
- }
- .slogan-area {
- display: flex;
- flex-direction: column;
- align-items: center;
- .slogan {
- font-size: 28rpx;
- color: #2979ff;
- margin-bottom: 8rpx;
- }
- .slogan-underline {
- width: 220rpx;
- height: 8rpx;
- background: #e3f0ff;
- border-radius: 4rpx;
- }
- }
- }
- .phone-area {
- margin: 500rpx 0 40rpx 0;
- display: flex;
- flex-direction: column;
- align-items: center;
- .phone {
- font-size: 36rpx;
- color: #222;
- font-weight: 500;
- margin-bottom: 10rpx;
- }
- .carrier {
- font-size: 24rpx;
- color: #aaa;
- }
- }
- .main-btn {
- width: 100%;
- height: 88rpx;
- border-radius: 44rpx;
- font-size: 32rpx;
- font-weight: 500;
- margin-bottom: 32rpx;
- }
- .login-btn {
- background: #1976ff;
- color: #fff;
- border: none;
- }
- .wechat-btn {
- background: #1aad19;
- color: #fff;
- border: none;
- display: flex;
- align-items: center;
- justify-content: center;
- .wechat-icon {
- width: 40rpx;
- height: 40rpx;
- margin-right: 16rpx;
- vertical-align: middle;
- }
- }
- .protocol-area {
- display: flex;
- align-items: center;
- margin: 30rpx 0 0 0;
- .protocol-text {
- font-size: 22rpx;
- color: #999;
- margin-left: 10rpx;
- .link {
- color: #1976ff;
- }
- }
- }
- .other-login {
- margin-top: 80rpx;
- display: flex;
- flex-direction: column;
- align-items: center;
- .other-title {
- font-size: 24rpx;
- color: #bbb;
- margin-bottom: 20rpx;
- }
- .other-icons {
- display: flex;
- gap: 60rpx;
- .icon {
- width: 60rpx;
- height: 60rpx;
- }
- }
- }
- .icon-circle {
- width: 80rpx;
- height: 80rpx;
- border: 1px solid #ccc;
- border-radius: 50%;
- display: flex;
- align-items: center;
- justify-content: center;
- margin: 0 20rpx;
- background: #fff;
- }
- .popup-mask {
- position: fixed;
- left: 0; top: 0; right: 0; bottom: 0;
- background: rgba(0,0,0,0.25);
- z-index: 999;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .popup-box {
- width: 90vw;
- max-width: 600rpx;
- background: #fff;
- border-radius: 24rpx;
- box-shadow: 0 8rpx 32rpx rgba(0,0,0,0.10);
- padding: 60rpx 40rpx 40rpx 40rpx;
- position: relative;
- display: flex;
- flex-direction: column;
- align-items: stretch;
- }
- .close-btn {
- position: absolute;
- right: 32rpx;
- top: 24rpx;
- font-size: 48rpx;
- color: #bbb;
- z-index: 2;
- font-weight: bold;
- }
- .popup-title {
- text-align: center;
- font-size: 36rpx;
- font-weight: bold;
- color: #222;
- margin-bottom: 32rpx;
- letter-spacing: 2rpx;
- }
- .popup-tabs {
- display: flex;
- justify-content: center;
- margin-bottom: 32rpx;
- text {
- font-size: 28rpx;
- margin: 0 36rpx;
- color: #888;
- padding-bottom: 8rpx;
- position: relative;
- &.active {
- color: #1976ff;
- font-weight: bold;
- }
- &.active::after {
- content: '';
- display: block;
- position: absolute;
- left: 0; right: 0; bottom: 0;
- height: 4rpx;
- background: #1976ff;
- border-radius: 2rpx;
- }
- }
- }
- .input-row {
- margin-bottom: 28rpx;
- display: flex;
- align-items: center;
- input {
- flex: 1;
- height: 80rpx;
- border-radius: 40rpx;
- background: #f7f8fa;
- border: 1px solid #eee;
- padding: 0 32rpx;
- font-size: 28rpx;
- color: #333;
- }
- }
- .code-row {
- input {
- flex: 1;
- margin-right: 16rpx;
- }
- .code-btn {
- width: 160rpx;
- height: 64rpx;
- border-radius: 32rpx;
- background: #1976ff;
- color: #fff;
- font-size: 24rpx;
- border: none;
- padding: 0;
- }
- }
- .popup-login-btn {
- margin-top: 12rpx;
- margin-bottom: 16rpx;
- width: 100%;
- height: 88rpx;
- border-radius: 44rpx;
- font-size: 32rpx;
- font-weight: 500;
- background: #1976ff;
- color: #fff;
- border: none;
- }
- .popup-footer {
- text-align: center;
- margin-top: 10rpx;
- color: #1976ff;
- font-size: 26rpx;
- font-weight: 500;
- letter-spacing: 1rpx;
- }
- </style>
|