123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366 |
- <template>
- <view class="section">
- <view class="text-area content">
- <text class="title">智慧用电</text>
- </view>
- <form class="padding-lg flex flex-direction">
- <view class="login-box shadow ">
- <view class="phone-box">
- <input type="text" placeholder="请输入手机号码" onfocus="this.placeholder=''" v-model="phone">
- <span class="icon iconfont left-icon"></span>
- <span class="icon iconfont right-icon"></span>
- </view>
- <view class="password-box">
- <input type="text" placeholder="请输入验证码" v-model="verify" maxlength="5" >
- <text class="icon iconfont left-icon"></text>
- <view @click="getVerifyCode">
- <!-- <text class="right-icon verify">获取验证码</text> -->
- <text class="right-icon verify">{{!codeTime?'获取验证码':codeTime+'s'}}</text>
- </view>
- </view>
- <view class="btn-area">
- <button class="submit" @click="submitRes">提 交 </button>
- </view>
- </view>
- </form>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- codeTime: 0,
- phone: '',
- verify: '',
- VerificationCodeOne: ''
- }
- },
- onLoad() {
- this.init()
- uni.setNavigationBarColor({
- frontColor: "#ffffff", //文字颜色
- backgroundColor: "#4866DF", //底部背景色
- })
- uni.setNavigationBarTitle({
- title: '登录'
- });
- // this.getLoginAuthorize()
- },
- methods: {
- // setNavigationBarTitle
- getUrlCode() {
- var url = location.search
- this.winUrl = url
- var theRequest = new Object()
- if (url.indexOf("?") != -1) {
- var str = url.substr(1)
- var strs = str.split("&")
- for (var i = 0; i < strs.length; i++) {
- theRequest[strs[i].split("=")[0]] = (strs[i].split("=")[1])
- }
- }
- return theRequest
- },
- async init() {
- let ua = navigator.userAgent.toLowerCase();
- if (ua.match(/MicroMessenger/i) == "micromessenger") {
- var curl2 = window.location.href;
- //是
- var appId = "wx4eab2e3b5531d58b";
- var params = {};
- var CODE = this.getUrlCode();
- var code = CODE['code'];
- if (code) {
- params.code = code;
- const res = await this.$myRequest({
- url: 'Login/getLoginAuthorize',
- data: params
- })
- // if (res.data.flag == true) {
- // uni.switchTab({
- // url: '/pages/index/index'
- // });
- // }
- code = '';
- return "ok";
- }
- var cs = {};
- var curl = window.location.href;
- cs.curl = curl;
- const res1 = await this.$myRequest({
- url: 'Login/getLoginAuthorize',
- data: cs
- })
- var turl = res1.data.turl;
- window.location.href =
- 'https://open.weixin.qq.com/connect/oauth2/authorize?appid=wx4eab2e3b5531d58b&redirect_uri=' + turl +
- '&response_type=code&scope=snsapi_base&state=abc123#wechat_redirect';
- } else {
- const res = await this.$myRequest({
- url: 'Login/getLoginAuthorize',
- data: params
- })
- }
- },
- // end
- //短信验证码验证
- getVerifyCode() {
- if (!this.phone) {
- uni.showToast({
- title: "请输入手机号码...",
- icon: "none"
- });
- return
- }
- if (!/^1[345678]\d{9}$/.test(this.phone)) {
- uni.showToast({
- title: "请输入正确的手机号码...",
- icon: "none"
- });
- return
- }
- this.getVerifyData({
- "phone": this.phone
- })
- if (this.codeTime > 0) {
- uni.showToast({
- title: '不能重复获取',
- icon: "none"
- });
- return;
- } else {
- this.codeTime = 60
- let timer = setInterval(() => {
- this.codeTime--;
- if (this.codeTime < 1) {
- clearInterval(timer);
- this.codeTime = 0
- }
- }, 1000)
- }
- },
- async getVerifyData(params = {}) {
- const res = await this.$myRequest({
- url: 'Login/getVerificationCode',
- data: params
- })
- this.VerificationCodeOne = eval('(' + res.data + ')').data[0].VerificationCode
- },
- // 登录提交按钮
- submitRes() {
- if (!this.phone) {
- uni.showToast({
- title: "请输入手机号码...",
- icon: "none"
- });
- return
- }
- if (!/^1[345678]\d{9}$/.test(this.phone)) {
- uni.showToast({
- title: "请输入正确的手机号码...",
- icon: "none"
- });
- return
- }
- if (!this.verify) {
- uni.showToast({
- title: "请输入验证码...",
- icon: "none"
- });
- return
- }
- this.getData({
- "phone": this.phone,
- "VerificationCode": this.verify,
- "VerificationCodeOne": this.VerificationCodeOne
- })
- },
- async getData(params = {}) {
- const res = await this.$myRequest({
- url: 'Login/setSignUp',
- data: params
- })
- if (res.data.flag == true) {
- uni.switchTab({
- url: '/pages/index/index'
- });
- } else {
- }
- },
- //登录页初始化
- async getLoginAuthorize() {
- const res = await this.$myRequest({
- url: 'Login/getLoginAuthorize',
- })
- },
- }
- }
- </script>
- <style>
- .section {
- height: 400rpx;
- background-image: url(/static/login-bg.png);
- background-size: cover;
- background-repeat: no-repeat;
- }
- .content {
- height: 434rpx;
- text-align: center;
- position: relative;
- }
- .login-box {
- height: 600rpx;
- position: relative;
- top: -150rpx;
- background: #fff;
- border-radius: 30rpx;
- padding: 100rpx 20rpx;
- }
- .shadow {
- box-shadow: 1px 1px 4px rgb(26 26 26 / 10%);
- }
- .title {
- position: absolute;
- color: #fff;
- font-size: 60rpx;
- bottom: 180rpx;
- display: block;
- width: 100%;
- }
- input,
- button {
- width: 100%;
- height: 100rpx;
- line-height: 100rpx;
- opacity: 1;
- border: 1px solid #dbdbdb;
- border-radius: 100rpx;
- background: #fff;
- coloe: #333;
- margin: 40rpx 0;
- font-size: 34rpx;
- }
- input {
- text-indent: 100rpx;
- }
- .submit {
- background: #4074E7;
- color: #fff
- }
- .phone-box,
- .password-box {
- position: relative;
- }
- .phone-box text,
- .password-box text {
- font-size: 30rpx;
- color: #999999
- }
- .left-icon {
- position: absolute;
- left: 48rpx;
- top: 50%;
- margin-top: -20rpx;
- line-height: 100%
- }
- .right-icon {
- position: absolute;
- right: 48rpx;
- top: 50%;
- margin-top: -20rpx;
- line-height: 100%
- }
- .right-icon.verify {
- margin-top: -10rpx;
- color: #4074E7
- }
- .iconfont {
- color: #999
- }
- /* 底部 */
- .box {
- display: none;
- position: fixed;
- bottom: 0;
- width: 100%;
- border-top: 1px solid pink
- }
- .cuIcon-cu-image .iconfont {
- width: 38rpx;
- height: 38rpx;
- display: inline-block;
- margin-bottom: 10rpx;
- }
- .text-gray {
- font-size: 26rpx;
- }
- </style>
|