| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484 |
- <template>
- <view class="container" style="background-color: #ffffff;padding-bottom: 100rpx;">
- <form @submit="bindSave">
- <view v-if="config.logo" class="login-logo">
- <image style="width: 300rpx;height: 300rpx;" :src="config.logo"></image>
- </view>
- <view class="tui-form">
- <view v-if="isphonelogin" class="tui-view-input">
- <tui-list-cell :hover="false" :lineLeft="false" backgroundColor="transparent">
- <view class="tui-cell-input">
- <tui-icon name="mobile" color="#6d7a87" :size="20"></tui-icon>
- <input name="userphone" v-model="phone" :adjust-position="false" placeholder="手机号"
- placeholder-class="tui-phcolor" type="text" />
- </view>
- </tui-list-cell>
- <tui-list-cell :hover="false" :lineLeft="false" backgroundColor="transparent">
- <view class="tui-cell-input">
- <tui-icon name="pwd" color="#6d7a87" :size="20"></tui-icon>
- <input name="captcha" v-model="captcha" :adjust-position="false" placeholder="验证码"
- placeholder-class="tui-phcolor" type="text" />
- <button class="code font-num" :class="disabled === true ? 'on' : ''" :disabled='disabled'
- @click="makecaptcha">
- {{verifyCodetext}}
- </button>
- </view>
- </tui-list-cell>
- </view>
- <view v-else class="tui-view-input">
- <tui-list-cell :hover="false" :lineLeft="false" backgroundColor="transparent">
- <view class="tui-cell-input">
- <tui-icon name="people" color="#6d7a87" :size="20"></tui-icon>
- <input name="username" :adjust-position="false" placeholder="手机号/用户名"
- placeholder-class="tui-phcolor" type="text" />
- </view>
- </tui-list-cell>
- <tui-list-cell :hover="false" :lineLeft="false" backgroundColor="transparent">
- <view class="tui-cell-input">
- <tui-icon name="pwd" color="#6d7a87" :size="20"></tui-icon>
- <input name="password" :adjust-position="false" placeholder="密 码" :password="true"
- placeholder-class="tui-phcolor" type="text" />
- </view>
- </tui-list-cell>
- </view>
- <view class="tui-btn-box">
- <button form-type="submit" class="btn86" :style="'background:'+ pagestyleconfig.appstylecolor">登录</button>
- </view>
- <view class="tui-wxloginbtn-box">
- <tui-button v-if="isphonelogin" :disabledGray="true" @click="isphonelogin=false" height="86rpx" type="white"
- shape="circle">账号密码登录
- </tui-button>
- <tui-button v-else :disabledGray="true" @click="isphonelogin=true" height="86rpx" type="white"
- shape="circle">手机验证码登录
- </tui-button>
- </view>
- <view v-if="ptype!='admin'" class="tui-cell-text">
- <view hover-class="tui-opcity" :hover-stay-time="150">
- <button class="tui-regbutton" type='white' @tap="reg">
- <text>还没有账号?</text>点此注册
- </button>
- </view>
- </view>
- </view>
- </form>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- ptype: "",
- pagestyleconfig: [],
- gotopage: '',
- config: {},
- memberconfig: {},
- phone: '',
- captcha: '',
- isphonelogin: false,
- disabled: false,
- verifyCodetext: "获取验证码"
- };
- },
- onLoad(e) {
- var _this = this;
- if (e.ptype) {
- this.ptype = e.ptype;
- }
- if (e.gotopage) {
- this.gotopage = e.gotopage;
- }
- _this.$request.post('config', {
- mo: 'pagestyle'
- }).then(res => {
- if (res.errno == 0) {
- _this.pagestyleconfig = res.data
- }
- });
- _this.$util.getUserInfo(function(userInfo) {
- console.log(userInfo);
- })
- _this.$request.post('config', {
- samkey: (new Date()).valueOf()
- }).then(res => {
- if (res.errno == 0) {
- if (res.data) {
- _this.config = res.data
- }
- }
- });
- },
- methods: {
- bindSave: function(e) {
- var _this = this;
- const username = e.detail.value.username;
- const password = e.detail.value.password;
- const userphone = e.detail.value.userphone;
- const captcha = e.detail.value.captcha;
- if (!userphone) {
- if (!username) {
- uni.showToast({
- title: '请输入用户名',
- icon: 'none'
- });
- return;
- }
- if (!password) {
- uni.showToast({
- title: '请输入密码',
- icon: 'none'
- });
- return;
- }
- } else {
- if (!captcha) {
- uni.showToast({
- title: '请输入验证码',
- icon: 'none'
- });
- return;
- }
- }
- _this.$request.post('login.index', {
- ptype: _this.ptype,
- username: username,
- password: password,
- userphone: userphone,
- captcha: captcha
- }).then(res => {
- if (res.errno != 0) {
- console.log(res);
- uni.showToast({
- title: res.msg,
- icon: 'none'
- });
- return;
- } else {
- uni.setStorageSync("uid", res.data.id);
- uni.setStorageSync("uuid", res.data.uuid);
- uni.showToast({
- title: res.msg,
- icon: 'none'
- });
- if(res.data.is_reg){
- _this.reg();
- }else{
- _this.loginnextpage();
- }
- }
- });
- },
- loginnextpage(){
- var _this = this;
- let url = '/pages/index/index';
- if (_this.ptype == 'technical') {
- url = '/pagesA/my/admintechnical/index';
- }
- if (_this.ptype == 'tuanzhang') {
- url = '/pagesA/my/admintuanzhang/index';
- }
- if (_this.ptype == 'operatingcity') {
- url = '/pagesA/my/adminoperatingcity/index';
- }
- if (_this.ptype == 'store') {
- url = '/pagesA/my/adminstore/index';
- }
- if (_this.ptype == 'admin') {
- url = '/pagesA/my/admin/index';
- }
-
- uni.reLaunch({
- url: url
- });
- },
- reg() {
- uni.reLaunch({
- url: "./reg?ptype=" + this.ptype
- });
- },
- // 获取手机号
- getPhoneNumber(e) {
- console.log(e);
- var _this = this;
- _this.$request.post('login.getphonenumber', {
- ptype: _this.ptype,
- code: e.detail.code
- }).then(res => {
- if (res.errno == 0) {
- if (res.data.id > 0) {
- uni.setStorageSync("telephone", res.data.telephone);
- if(res.data.is_reg){
- _this.reg();
- }else{
- _this.loginnextpage();
- }
- }
- }
- });
- },
- makecaptcha() {
- let _this = this;
- if (!_this.phone) {
- uni.showToast({
- title: '请填写手机号码!',
- icon: 'none'
- });
- return;
- }
- if (!(/^1(3|4|5|7|8|9|6)\d{9}$/i.test(_this.phone))) {
- uni.showToast({
- title: '请输入正确的手机号码!',
- icon: 'none'
- });
- return;
- }
- _this.$request.post('login.captcha', {
- phone: _this.phone
- }).then(res => {
- console.log(res);
- if (res.errno == 0) {
- uni.showToast({
- title: res.msg,
- icon: 'none'
- });
- _this.sendCode();
- }
- });
- },
- sendCode() {
- if (this.disabled) return;
- this.disabled = true;
- let n = 60;
- this.verifyCodetext = "剩余 " + n + "s";
- const run = setInterval(() => {
- n = n - 1;
- if (n < 0) {
- clearInterval(run);
- }
- this.verifyCodetext = "剩余 " + n + "s";
- if (this.verifyCodetext < "剩余 " + 0 + "s") {
- this.disabled = false;
- this.verifyCodetext = "重新获取";
- }
- }, 1000);
- }
- },
- /**
- * 页面相关事件处理函数--监听用户下拉动作
- */
- onPullDownRefresh: function() {
- setTimeout(() => {
- uni.stopPullDownRefresh()
- }, 200);
- },
- };
- </script>
- <style lang="scss">
- page {
- background-color: #ffffff;
- }
- .container {
- .login-logo {
- margin-left: auto;
- margin-right: auto;
- text-align: center;
- }
- .tui-status-bar {
- width: 100%;
- height: var(--status-bar-height);
- }
- .bottom {
- height: 86rpx;
- border-radius: 43rpx;
- }
- .tui-header {
- width: 100%;
- padding: 40rpx;
- display: flex;
- align-items: center;
- justify-content: space-between;
- box-sizing: border-box;
- }
- .tui-page-title {
- width: 100%;
- font-size: 48rpx;
- font-weight: bold;
- color: $uni-text-color;
- line-height: 42rpx;
- padding: 40rpx;
- box-sizing: border-box;
- }
- .tui-form {
- padding-top: 50rpx;
- .tui-view-input {
- width: 100%;
- box-sizing: border-box;
- padding: 0 40rpx;
- .tui-cell-input {
- width: 100%;
- display: flex;
- align-items: center;
- padding-top: 48rpx;
- padding-bottom: $uni-spacing-col-base;
- input {
- flex: 1;
- padding-left: $uni-spacing-row-base;
- }
- }
- }
- .tui-cell-text {
- width: 100%;
- padding: $uni-spacing-col-lg $uni-spacing-row-lg;
- box-sizing: border-box;
- font-size: $uni-font-size-sm;
- color: $uni-text-color-grey;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .tui-color-primary {
- color: $uni-color-primary;
- }
- .tui-regbutton {
- margin-left: auto;
- margin-right: auto;
- background-color: #ffffff;
- font-size: 28rpx;
- color: $uni-color-primary;
- }
- .tui-regbutton text {
- color: #666;
- }
- }
- .tui-btn-box {
- width: 100%;
- padding: 0 $uni-spacing-row-lg;
- box-sizing: border-box;
- margin-top: 60rpx;
- }
- .tui-wxloginbtn-box {
- width: 100%;
- padding: 0 $uni-spacing-row-lg;
- box-sizing: border-box;
- margin-top: 40rpx;
- }
- }
- .tui-login-way {
- width: 100%;
- font-size: 26rpx;
- color: $uni-color-primary;
- display: flex;
- justify-content: center;
- position: fixed;
- left: 0;
- bottom: 80rpx;
- view {
- padding: 12rpx 0;
- }
- }
- .tui-auth-login {
- width: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- padding-bottom: 80rpx;
- padding-top: 20rpx;
- .tui-icon-platform {
- width: 90rpx;
- height: 90rpx;
- display: flex;
- align-items: center;
- justify-content: center;
- position: relative;
- margin-left: 40rpx;
- &::after {
- content: '';
- position: absolute;
- width: 200%;
- height: 200%;
- transform-origin: 0 0;
- transform: scale(0.5, 0.5) translateZ(0);
- box-sizing: border-box;
- left: 0;
- top: 0;
- border-radius: 180rpx;
- border: 1rpx solid $uni-text-color-placeholder;
- }
- }
- .tui-login-logo {
- width: 60rpx;
- height: 60rpx;
- }
- }
- .code {
- font-size: 32rpx;
- }
- .code.on {
- color: #b9b9bc !important;
- }
- .tui-modal-custom {
- padding-top: 60rpx;
- padding-bottom: 50rpx;
- text-align: center;
- }
- .tui-prompt-title {
- padding-bottom: 20rpx;
- font-size: 34rpx;
- }
- .tui-modal__btn {
- align-items: center;
- justify-content: space-between;
- }
- .tui-box {
- padding: 15rpx 20rpx;
- box-sizing: border-box;
- }
-
- .btn86{
- height: 86rpx;
- line-height: 86rpx;
- border-radius: 98rpx;
- color: #fff;
- }
- .tui-btn-danger {
- height: 80rpx;
- line-height: 80rpx;
- border-radius: 98rpx;
- color: #fff;
- }
- }
- </style>
|