| | |
| | | :disabled="btnLoading" |
| | | :loading="btnLoading" |
| | | type="primary" |
| | | text="微信一键登录"></u-button> |
| | | text="手机号一键登录"></u-button> |
| | | </view> |
| | | <!-- <view class="loginBtn"> |
| | | <u-button @click.stop="jumpBindBack" |
| | |
| | | text="一键绑定测试"></u-button> |
| | | </view> --> |
| | | <view class="register" |
| | | @click="registerClick"><text>注册</text></view> |
| | | @click="PrivacyAgreementHandle" :loading="zhuceLoading"><text>注册</text></view> |
| | | <view class="login-bottom-box"> |
| | | <view class="copyright">无人值守微信小程序</view> |
| | | <view class="copyright">小程序仅供已拥有系统账号特定内部人员使用</view> |
| | |
| | | @confirm="bindWxConfirm" |
| | | @cancel="bindWxCancel"></u-modal> |
| | | </view> |
| | | <!-- 注册同意获取隐私信息 --> |
| | | <view class="privacy"> |
| | | <u-modal :show="privacyShow" |
| | | :title="privacyTitle" |
| | | showCancelButton |
| | | @confirm="privacyConfirm" |
| | | @cancel="privacyCancel" |
| | | confirmText="同意" |
| | | cancelText="不同意"> |
| | | <view class="slot-content" |
| | | @click="PrivacyAgreementHandle"> |
| | | <rich-text :nodes="PrivacyAgreement"></rich-text> |
| | | </view> |
| | | </u-modal> |
| | | </view> |
| | | </view> |
| | | </template> |
| | | |
| | |
| | | import { apiLoginWx, apiLoginPassword } from '@/api/publicInterface.js'; |
| | | import { mapMutations } from 'vuex'; |
| | | import userPassword from './userPassword.vue'; |
| | | import { setToken, setRefreshToken, setUsernameKey, setCustomerId, redirectHome } from '@/utils/status.js'; |
| | | import { setToken, setRefreshToken, setUsernameKey, setCustomerId, redirectHome} from '@/utils/status.js'; |
| | | export default { |
| | | data() { |
| | | return { |
| | |
| | | bindWxContent: '如果已拥有系统账号,可以直接跳转绑定微信页面', |
| | | appid: "", |
| | | secret: "", |
| | | privacyShow: false, |
| | | privacyTitle: "注意", |
| | | PrivacyAgreement: `<p>注册即代表您同意我们用户隐私协议</p><p class='PrivacyAgreement'>点击查看用户隐私协议</p>` |
| | | zhuceLoading: false, //注册 |
| | | }; |
| | | }, |
| | | components: { |
| | |
| | | openPopup() { |
| | | console.log('打开了'); |
| | | }, |
| | | privacyConfirm() { |
| | | uni.navigateTo({ |
| | | url: '/pages/register/register' |
| | | }); |
| | | }, |
| | | privacyCancel() { |
| | | this.privacyShow = false |
| | | }, |
| | | registerClick() { |
| | | this.privacyShow = true |
| | | }, |
| | | PrivacyAgreementHandle() { |
| | | this.zhuceLoading = true |
| | | uni.navigateTo({ |
| | | url: '/pages/login/PrivacyAgreementText/PrivacyAgreementText' |
| | | }) |
| | | setTimeout(() => { |
| | | this.zhuceLoading = false |
| | | },1000) |
| | | }, |
| | | // 此方法只进行绑定测试,已经通过扫码解决 |
| | | jumpBindBack() { |
| | | uni.navigateTo({ |
| | | url: '/pages/bindBackground/bindBackground' |
| | | }) |
| | | } |
| | | } |
| | | }; |
| | | </script> |
| | |
| | | } |
| | | } |
| | | } |
| | | </style> |
| | | </style> |