login.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861
  1. <template>
  2. <view>
  3. <!-- 状态栏 -->
  4. <!-- 公共组件-每个页面必须引入 -->
  5. <public-module></public-module>
  6. <app-update ref="app_update"></app-update>
  7. <!-- 欢迎语 -->
  8. <view class="dis j-end a-c">
  9. <image src="../../static/image/login/2.png" mode=""
  10. style="height: 280px;width: calc(100% - 16px);margin-top: 25%;">
  11. </image>
  12. </view>
  13. <view class="" style="margin-top: -120px;">
  14. <u-tabs :list="list" :is-scroll="true" :current="current" @change="change"
  15. style="background: transparent;margin-bottom: 30px;"></u-tabs>
  16. <!-- 登录区域Start -->
  17. <view class="mx-3">
  18. <!-- 账号密码登录 false代表账号密码登录 -->
  19. <template v-if="current==0">
  20. <view class="mt-2 position-relative border-bottom">
  21. <view class="position-absolute d-flex a-center j-center left-0 top-0 font-weight"
  22. style="height: 100%;">
  23. <image src="../../static/image/login/zhanghao.png" mode=""
  24. style="width: 18px;height: 18px;">
  25. </image>
  26. </view>
  27. <input type="text" v-model="username" class="uni-input common-input" maxlength="17"
  28. placeholder="请输入会员号" style="padding-left: 56rpx;background: transparent;" />
  29. </view>
  30. <view class="mt-2 position-relative border-bottom">
  31. <view class="position-absolute d-flex a-center j-center left-0 top-0 font-weight"
  32. style="height: 100%;">
  33. <image src="../../static/image/login/mima.png" mode="" style="width: 18px;height: 18px;">
  34. </image>
  35. </view>
  36. <input type="text" :password="isHidePassword" v-model="password" class="uni-input common-input"
  37. placeholder="请输入密码" style="padding-right: 200rpx;padding-left: 56rpx;" maxlength="15" />
  38. <view class=" position-absolute top-0 right-0 d-flex a-center j-center"
  39. style="width: 200rpx;height: 100%;">
  40. <image
  41. :src="isHidePassword?'../../static/image/login/biyan.png':'../../static/image/login/zhengyan.png'"
  42. @tap="isHidePassword = !isHidePassword" mode="" style="width: 18px;height: 18px;">
  43. </view>
  44. </view>
  45. <view class="mt-2 position-relative border-bottom">
  46. <view class="position-absolute d-flex a-center j-center left-0 top-0 font-weight"
  47. style="height: 100%;">
  48. <image src="../../static/image/login/yanzhengma.png" mode=""
  49. style="width: 18px;height: 18px;">
  50. </image>
  51. </view>
  52. <input type="text" v-model="imgcode" class="uni-input common-input" maxlength="5"
  53. placeholder="请输入验证码" style="padding-right: 200rpx;padding-left: 56rpx;" />
  54. <image style="height: 80%;padding-top: 4rpx;width: 200rpx;" mode="aspectFill"
  55. class="position-absolute top-0 right-0 d-flex a-center j-center text-light-muted"
  56. :src="imgcodesrc" @tap="refreshCaptcha"></image>
  57. </view>
  58. </template>
  59. <!-- 手机验证码登录 true代表手机验证码登录 -->
  60. <template v-else>
  61. <view class="mt-2 position-relative border-bottom">
  62. <view class="position-absolute d-flex a-center j-center left-0 top-0 font-weight"
  63. style="height: 100%;">
  64. <image src="../../static/image/login/shoujihao.png" mode=""
  65. style="width: 18px;height: 18px;">
  66. </image>
  67. </view>
  68. <input type="text" v-model="phone" class="uni-input common-input" style="padding-left: 56rpx;"
  69. placeholder="手机号" />
  70. </view>
  71. <view class="mt-2 position-relative border-bottom">
  72. <view class="position-absolute d-flex a-center j-center left-0 top-0 font-weight"
  73. style="height: 100%;">
  74. <image src="../../static/image/login/yanzhengma.png" mode=""
  75. style="width: 18px;height: 18px;">
  76. </image>
  77. </view>
  78. <input type="text" v-model="checknum" class="uni-input common-input" maxlength="4"
  79. style="padding-right:120px;padding-left: 56rpx;" placeholder="请输入验证码" />
  80. <view class="position-absolute top-0 right-0 d-flex a-center j-center text-light-muted"
  81. style="width: 240rpx;height: 100%;" @tap="getCheckNum">
  82. <view class="d-flex a-center j-center "
  83. :class="!codetime?'yanzhengmaView1 text-color':'yanzhengmaView2'">
  84. {{!codetime?'获取验证码':codetime+' S'+'后重新获取'}}
  85. </view>
  86. </view>
  87. </view>
  88. </template>
  89. <button class="my-3 mt-4 d-flex a-center j-center font-weight bg-color" :loading="loading"
  90. :class="{'bg-hover-color':disabled}" type="primary" @tap="submit" :disabled="disabled"
  91. style="letter-spacing: 20rpx;">登录</button>
  92. <view class=" left-0 right-0 dis a-c j-start text-light-muted" style="bottom:30rpx">
  93. <u-checkbox v-model="checked"></u-checkbox>
  94. 我已确认并同意<view> <text @tap="nav('/pages/login/xieyi')" class="text-color">平台协议</text>及<text
  95. class="text-color" @tap="nav('/pages/login/mimi')">隐私协议</text>政策</view>
  96. </view>
  97. <!-- #ifdef APP -->
  98. <view class="third_party_login_box">
  99. <view class="third_party_title"><text>第三方登录</text></view>
  100. <view class="third_party_content flex-wrap">
  101. <image src="../../static/image/login/wx.png" @click="onWxAppLogin" mode="aspectFit"></image>
  102. <image src="../../static/image/login/zf.png" @click="onzfbAppLogin" mode="aspectFit"></image>
  103. </view>
  104. </view>
  105. <!-- #endif -->
  106. </view>
  107. </view>
  108. <u-toast ref="uToast" />
  109. <u-popup v-model="show" border-radius="14" mode="center" width="70%">
  110. <view class="shu1 shili">
  111. <text>温馨提示</text>
  112. <text>是否更新账号密码?</text>
  113. </view>
  114. <view class="heng shili_btn">
  115. <view class="heng1" @click="quxiao">取消</view>
  116. <view class="heng1" @click="queren" style="background-color: orangered;">确认</view>
  117. </view>
  118. </u-popup>
  119. </view>
  120. </template>
  121. <script>
  122. import appUpdate from "@/components/yzhua006-update/app-update.vue"; //app更新组件
  123. import md5 from '@/plugins/md5';
  124. let clear;
  125. import {
  126. mapState,
  127. mapMutations
  128. } from 'vuex';
  129. import socket from '@/config/socket';
  130. import DB from "@/common/sqlite";
  131. export default {
  132. components: {
  133. appUpdate
  134. },
  135. data() {
  136. return {
  137. checked: false,
  138. list: [{
  139. name: '账号登录'
  140. }, {
  141. name: '短信登录'
  142. }],
  143. current: 0,
  144. isLoading: false,
  145. show: false,
  146. contentSlot: true,
  147. status: false, //false代表账号密码登录,true代表手机验证码登录
  148. disabled: true, //登录按钮是否可用
  149. loading: false, //是否显示按钮加载状态
  150. username: "", //登录用户名
  151. password: "", //登录密码
  152. imgcode: "", //图片验证码0
  153. imgcodesrc: "", //验证码图片
  154. isHidePassword: true, //是否隐藏密码
  155. phone: "", //登录手机号
  156. checknum: "", //登录验证码
  157. captchaId: "",
  158. codetime: 0, //验证码获取倒计时
  159. code: "", //用户code
  160. listData: [],
  161. };
  162. },
  163. onReady() {
  164. this.isLoading = true;
  165. },
  166. beforeCreate() {
  167. setTimeout(() => {
  168. this.$refs.app_update.update(); //调用子组件检查更新方法
  169. setTimeout(() => {
  170. if (this.$refs.app_update.popup_show == true && this.$refs.app_update.force == true) {}
  171. }, 100)
  172. }, 500)
  173. },
  174. //第一次加载
  175. async onLoad(e) {
  176. let pageRequest = {
  177. pageNum: 1,
  178. pageSize: 20,
  179. columnFilters: {
  180. apptype: {
  181. name: "apptype",
  182. value: "apk",
  183. }
  184. }
  185. };
  186. let getquote = await this.$http.post('/sysVersion/findPage', pageRequest);
  187. // #ifdef APP-PLUS
  188. this.openSQL();
  189. this.selectTableData();
  190. // this.deleteTableData();
  191. // #endif
  192. },
  193. watch: {
  194. username(val) {
  195. this.username = this.username.toUpperCase();
  196. this.OnBtnChange();
  197. },
  198. password(val) {
  199. this.OnBtnChange();
  200. },
  201. imgcode(val) {
  202. this.OnBtnChange();
  203. },
  204. phone(val) {
  205. this.OnBtnChange();
  206. },
  207. checknum(val) {
  208. this.OnBtnChange();
  209. }
  210. },
  211. mounted() {
  212. // //取出缓存中的账号、密码
  213. const HBusername = uni.getStorageSync('username');
  214. const HBpassword = uni.getStorageSync('password');
  215. // //有账号、密码就赋值给文本,没有就清空
  216. this.username = HBusername;
  217. this.password = HBpassword;
  218. },
  219. onShow() {
  220. this.refreshCaptcha();
  221. uni.getClipboardData({
  222. success: (res) => {
  223. let id = (res.data.replace(/(^\s*)|(\s*$)/g, "")).toUpperCase();
  224. if ((id.length == 17) && (id.indexOf('99') == 0) && (id.indexOf('D') >
  225. 0) && (id.indexOf(
  226. 'M') > 0) && (id !== this.username)) {
  227. uni.showModal({
  228. content: '是否自动填充会员号',
  229. cancelText: '否',
  230. confirmText: '是',
  231. success: (res1) => {
  232. if (res1.confirm) {
  233. this.username = id;
  234. }
  235. }
  236. });
  237. }
  238. }
  239. })
  240. //#ifdef APP-PLUS
  241. let args = plus.runtime.arguments;
  242. if (args) {
  243. plus.runtime.arguments = null; //进入之后就把urlscheme清空要不然下一次oushow时还会执行
  244. // 处理args参数,如直达到某新页面等
  245. //通过code请求获取user_id
  246. var authCode = args.split("=")[1];
  247. if (authCode != undefined && authCode != "" && authCode != null) {
  248. this.$login({
  249. url: "/alipay/login",
  250. data: {
  251. code: authCode,
  252. }
  253. }).then(res => {
  254. return uni.showToast({
  255. title: res.msg,
  256. icon: 'none'
  257. });
  258. socket.init();
  259. return;
  260. })
  261. }
  262. }
  263. //#endif
  264. },
  265. onUnload() {
  266. this.closeSQL();
  267. },
  268. computed: {
  269. ...mapState(["userLoginId", "loginStatus"])
  270. },
  271. //方法
  272. methods: {
  273. ...mapMutations(['setUserInfo']),
  274. // 跳转页面
  275. change(index) {
  276. this.current = index;
  277. },
  278. nav(url) {
  279. uni.navigateTo({
  280. url: url
  281. });
  282. },
  283. // 图片验证码
  284. refreshCaptcha() {
  285. let randnum = Math.floor(Math.random() * (1000000 - 1 + 1)) + 1
  286. this.imgcodesrc = this.$base.baseUrl + "/captchaById?t=" + new Date().getTime() +
  287. '&captchaId=' + randnum;
  288. this.captchaId = randnum;
  289. },
  290. // 切换登录状态
  291. changeStatus() {
  292. uni.hideKeyboard();
  293. this.initInput();
  294. this.status = !this.status;
  295. this.refreshCaptcha();
  296. },
  297. // 初始化表单
  298. initInput() {
  299. this.username = '';
  300. this.password = '';
  301. this.phone = '';
  302. this.checknum = '';
  303. this.imgcode = "";
  304. },
  305. // 改变按钮状态
  306. OnBtnChange() {
  307. if ((this.username && this.password && this.imgcode) || (this.phone && this.checknum)) {
  308. this.disabled = false;
  309. return;
  310. }
  311. this.disabled = true;
  312. },
  313. // 获取验证码
  314. async getCheckNum() {
  315. uni.hideKeyboard();
  316. if (this.codetime > 0) return;
  317. // 验证手机号合法性
  318. if (!this.phone) {
  319. return uni.showToast({
  320. title: '请输入手机号',
  321. icon: 'none'
  322. });
  323. }
  324. if (!this.$base.phoneRegular.test(this.phone)) {
  325. return uni.showToast({
  326. title: '请输入正确的手机号码',
  327. icon: 'none'
  328. });
  329. }
  330. // 请求服务器,发送验证码
  331. let res = await this.$http.get('/sendMsg', {
  332. phone: this.phone,
  333. type: "0"
  334. });
  335. // 请求失败处理
  336. if (res.code != 200) {
  337. return uni.showToast({
  338. title: res.data.msg,
  339. icon: "none"
  340. });
  341. } else {
  342. uni.showToast({
  343. title: "发送成功",
  344. icon: "none"
  345. });
  346. }
  347. // 发送成功,开启倒计时
  348. this.codetime = 60;
  349. let timer = setInterval(() => {
  350. this.codetime--;
  351. if (this.codetime < 1) {
  352. clearInterval(timer);
  353. this.codetime = 0;
  354. }
  355. }, 1000);
  356. },
  357. //#ifdef APP-PLUS
  358. quxiao() {
  359. this.show = false;
  360. this.$login({
  361. url: "/login2",
  362. data: {
  363. account: this.username,
  364. password: this.password,
  365. captcha: this.imgcode.toLowerCase(),
  366. captchaId: this.captchaId,
  367. }
  368. }).then(res => {
  369. if (res) {
  370. return uni.showToast({
  371. title: res.msg,
  372. icon: 'none'
  373. });
  374. } else {
  375. socket.init();
  376. }
  377. })
  378. },
  379. queren() {
  380. this.show = false;
  381. this.$login({
  382. url: "/login2",
  383. data: {
  384. account: this.username,
  385. password: this.password,
  386. captcha: this.imgcode.toLowerCase(),
  387. captchaId: this.captchaId,
  388. }
  389. }).then(async res => {
  390. if (res) {
  391. return uni.showToast({
  392. title: res.msg,
  393. icon: 'none'
  394. });
  395. } else {
  396. this.deleteTableData();
  397. this.openSQL();
  398. this.createTable(); //创建表
  399. this.insertTableData(this.username, this.password); //新增表数据
  400. socket.init();
  401. }
  402. })
  403. },
  404. //#endif
  405. // 提交登录
  406. submit() {
  407. if (!this.checked) {
  408. return this.$refs.uToast.show({
  409. title: '请阅读后勾选并同意《平台协议》及《隐私协议》政策',
  410. type: 'default',
  411. })
  412. }
  413. // // 账号密码登录
  414. uni.hideKeyboard();
  415. if (this.current == 0) {
  416. //#ifdef H5
  417. this.$login({
  418. url: "/login2",
  419. data: {
  420. account: this.username,
  421. password: this.password,
  422. captcha: this.imgcode.toLowerCase(),
  423. captchaId: this.captchaId,
  424. }
  425. }).then(res => {
  426. if (res) {
  427. return uni.showToast({
  428. title: res.msg,
  429. icon: 'none'
  430. });
  431. } else {
  432. socket.init();
  433. }
  434. })
  435. // }
  436. //#endif
  437. //#ifdef APP-PLUS
  438. if (this.listData.length > 0) {
  439. this.listData.map(ele => {
  440. if (this.username == ele.username && this.password == ele.password) {
  441. this.$login({
  442. url: "/login2",
  443. data: {
  444. account: this.username,
  445. password: this.password,
  446. captcha: this.imgcode.toLowerCase(),
  447. captchaId: this.captchaId,
  448. }
  449. }).then(res => {
  450. if (res) {
  451. return uni.showToast({
  452. title: res.msg,
  453. icon: 'none'
  454. });
  455. } else {
  456. socket.init();
  457. }
  458. })
  459. } else {
  460. this.show = true;
  461. }
  462. })
  463. } else {
  464. this.$login({
  465. url: "/login2",
  466. data: {
  467. account: this.username,
  468. password: this.password,
  469. captcha: this.imgcode.toLowerCase(),
  470. captchaId: this.captchaId,
  471. }
  472. }).then(res => {
  473. if (res) {
  474. return uni.showToast({
  475. title: res.msg,
  476. icon: 'none'
  477. });
  478. } else {
  479. this.openSQL(); //打开数据库
  480. this.createTable(); //创建表
  481. this.insertTableData(this.username, this.password); //新增表数据
  482. socket.init();
  483. }
  484. })
  485. }
  486. //#endif
  487. } else {
  488. // 验证码登录
  489. // 验证手机号合法性
  490. if (!this.$base.phoneRegular.test(this.phone)) {
  491. return uni.showToast({
  492. title: '请输入正确的手机号码',
  493. icon: 'none'
  494. });
  495. }
  496. this.$login({
  497. url: "/loginByPhone",
  498. data: {
  499. phone: this.phone,
  500. phoneMsg: this.checknum
  501. }
  502. }).then(res => {
  503. if (res) {
  504. return uni.showToast({
  505. title: res.msg,
  506. icon: 'none'
  507. });
  508. }
  509. // socket.init();
  510. return;
  511. })
  512. }
  513. },
  514. // 微信APP登录
  515. onWxAppLogin() {
  516. var that = this;
  517. uni.login({
  518. provider: 'weixin',
  519. onlyAuthorize: true,
  520. success: function(loginRes) {
  521. that.codeRes(loginRes.code);
  522. },
  523. fail: (err) => {
  524. uni.showToast({
  525. title: '绑定失败',
  526. icon: "none"
  527. });
  528. console.log('login fail:', err);
  529. }
  530. });
  531. },
  532. onzfbAppLogin() {
  533. let urls =
  534. 'https://openauth.alipay.com/oauth2/publicAppAuthorize.htm?app_id=2021004153668213&scope=auth_user&redirect_uri=https://test.baoxianzhanggui.com/pay/';
  535. urls = encodeURIComponent(urls); //将地址编码成浏览器访问的格式
  536. plus.runtime.openURL(
  537. 'alipays://platformapi/startapp?appId=20000067&url=' + urls,
  538. res => {
  539. //这里写打开URL地址失败后的处理0
  540. uni.showModal({
  541. content: '本机未检测到对应客户端,是否打开浏览器访问页面?',
  542. success: function(res) {
  543. if (res.confirm) {
  544. //plus.runtime.openURL();
  545. }
  546. }
  547. });
  548. },
  549. 'com.eg.android.AlipayGphone'
  550. );
  551. },
  552. codeRes(code) {
  553. this.$login({
  554. url: "/wechat/login",
  555. data: {
  556. code: code,
  557. }
  558. }).then(res => {
  559. return uni.showToast({
  560. title: res.msg,
  561. icon: 'none'
  562. });
  563. socket.init();
  564. return;
  565. })
  566. },
  567. // 打开数据库
  568. openSQL() {
  569. // 这个是查询有没有打开数据库
  570. let open = DB.isOpen();
  571. DB.openSqlite()
  572. .then(res => {})
  573. .catch(error => {});
  574. },
  575. // 关闭数据库
  576. closeSQL() {
  577. // 这个是查询有没有打开数据库
  578. let open = DB.isOpen();
  579. if (open) {
  580. DB.closeSqlite()
  581. .then(res => {
  582. // this.showToast("数据库已关闭");
  583. })
  584. .catch(error => {
  585. // this.showToast("数据库关闭失败");
  586. });
  587. }
  588. },
  589. // 创建表
  590. createTable() {
  591. let open = DB.isOpen();
  592. if (open) {
  593. this.openSQL();
  594. let sql =
  595. '"id" INTEGER PRIMARY KEY AUTOINCREMENT,"username" text,"password" text,"time" text';
  596. // 创建表 DB.createTable(表名, 表的列)
  597. DB.createTable("chat", sql)
  598. .then(res => {
  599. // this.showToast("创建chat表成功");
  600. })
  601. .catch(error => {});
  602. } else {}
  603. },
  604. // 新增表数据
  605. insertTableData(user, word) {
  606. let open = DB.isOpen();
  607. if (open) {
  608. let arr = [{
  609. username: user,
  610. password: word,
  611. }]
  612. arr.map(item => {
  613. let time = this.formatDate(new Date().getTime());
  614. let sql =
  615. `'${item.username}','${item.password}','${time}'`;
  616. let condition = "'username','password','time'";
  617. // 新增 DB.insertTableData(表名, 对应表头列的数据)
  618. DB.insertTableData("chat", sql, condition)
  619. .then(res => {
  620. this.selectTableData();
  621. })
  622. .catch(error => {});
  623. })
  624. } else {}
  625. },
  626. // 查询表数据
  627. selectTableData() {
  628. let open = DB.isOpen();
  629. if (open) {
  630. // 查询表 DB.selectTableData(表名,查询条件列名,查询条件列值)
  631. DB.selectTableData("chat")
  632. .then(res => {
  633. console.log("contact表数据", res);
  634. this.listData = res;
  635. this.username = res[0].username;
  636. this.password = res[0].password;
  637. })
  638. .catch(error => {});
  639. } else {}
  640. },
  641. // 修改表数据
  642. updateTableData() {
  643. let open = DB.isOpen();
  644. if (open) {
  645. let time = this.formatDate(new Date().getTime());
  646. let data =
  647. `username ='${this.username}',password ='${this.password}'`;
  648. // 修改表数据 DB.updateTableData(表名, 要修改的列名=修改后列值, 修改条件的列名, 修改条件的列值)
  649. DB.updateTableData("chat", data)
  650. .then(res => {
  651. console.log('修改后的数据', res)
  652. this.showToast("保存成功");
  653. this.selectTableData();
  654. })
  655. .catch(error => {
  656. console.log(error)
  657. });
  658. } else {}
  659. },
  660. // 删除表
  661. deleteTableData() {
  662. let open = DB.isOpen();
  663. if (open) {
  664. // 删除表 DB.deleteTableData(表名,查询条件列名,查询条件列值)
  665. DB.dropTable("chat")
  666. .then(res => {})
  667. .catch(error => {});
  668. } else {}
  669. },
  670. // 提示框
  671. showToast: function(str) {
  672. uni.showToast({
  673. icon: "none",
  674. title: str,
  675. mask: true
  676. });
  677. },
  678. // 时间戳转年月日
  679. formatDate(data) {
  680. let now = new Date(data);
  681. var year = now.getFullYear(); //取得4位数的年份
  682. var month =
  683. now.getMonth() + 1 < 10 ?
  684. "0" + (now.getMonth() + 1) :
  685. now.getMonth() + 1;
  686. var date = now.getDate() < 10 ? "0" + now.getDate() : now.getDate();
  687. var hour = now.getHours() < 10 ? "0" + now.getHours() : now.getHours();
  688. var minute =
  689. now.getMinutes() < 10 ? "0" + now.getMinutes() : now.getMinutes();
  690. var second =
  691. now.getSeconds() < 10 ? "0" + now.getSeconds() : now.getSeconds();
  692. return (
  693. year +
  694. "-" +
  695. month +
  696. "-" +
  697. date +
  698. " " +
  699. hour +
  700. ":" +
  701. minute +
  702. ":" +
  703. second
  704. );
  705. }
  706. },
  707. //页面隐藏
  708. onHide() {},
  709. //页面卸载
  710. onUnload() {},
  711. //页面下来刷新
  712. onPullDownRefresh() {},
  713. //页面上拉触底
  714. onReachBottom() {},
  715. };
  716. </script>
  717. <style lang="scss" scoped>
  718. /deep/ {
  719. .u-tab-bar {
  720. background: linear-gradient(90deg, #0052FF 0%, rgba(0, 82, 255, 0) 100%) !important;
  721. border-radius: 4px 4px 4px 4px;
  722. }
  723. }
  724. .shu1 {
  725. display: flex;
  726. flex-direction: column;
  727. justify-content: space-between;
  728. align-items: center;
  729. }
  730. .shili_btn {
  731. width: 100%;
  732. height: 90rpx;
  733. border-top: 2rpx solid #F2F2F2;
  734. }
  735. .shili_btn>view {
  736. width: 50%;
  737. height: 100%;
  738. background-color: #ffffff;
  739. cursor: pointer;
  740. }
  741. .shili_btn>view:nth-child(2) {
  742. color: #FFFFFF;
  743. background-color: #007BFF;
  744. }
  745. .shili>text:nth-child(1) {
  746. font-weight: bold;
  747. }
  748. .shili {
  749. padding: 40rpx;
  750. box-sizing: border-box;
  751. }
  752. .heng {
  753. display: flex;
  754. justify-content: space-between;
  755. align-items: center;
  756. }
  757. .heng1 {
  758. display: flex;
  759. justify-content: center;
  760. align-items: center;
  761. }
  762. /* 第三方登录Start */
  763. .third_party_login_box {
  764. position: fixed;
  765. bottom: 50rpx;
  766. left: 0;
  767. right: 0;
  768. height: 170rpx;
  769. padding: 0 30rpx;
  770. }
  771. .third_party_login_box .third_party_title {
  772. display: flex;
  773. align-items: center;
  774. }
  775. .third_party_login_box .third_party_title:before,
  776. .third_party_login_box .third_party_title:after {
  777. content: "";
  778. flex: 1;
  779. height: 2rpx;
  780. background-color: #f5f5f5;
  781. }
  782. .third_party_login_box .third_party_title text {
  783. font-size: 24rpx;
  784. color: #999999;
  785. flex-shrink: 0;
  786. padding: 0 20rpx;
  787. }
  788. .third_party_login_box .third_party_content {
  789. height: 140rpx;
  790. display: flex;
  791. justify-content: center;
  792. align-items: center;
  793. }
  794. .third_party_login_box .third_party_content image {
  795. margin: 0rpx 20rpx;
  796. width: 80rpx;
  797. height: 80rpx;
  798. }
  799. /* 第三方登录End */
  800. .yanzhengmaView1 {
  801. background: #FFFFFF;
  802. border-radius: 10rpx;
  803. width: 150rpx;
  804. padding: 5rpx 0;
  805. }
  806. .yanzhengmaView2 {
  807. background: #FFFFFF;
  808. border-radius: 10rpx;
  809. width: 220rpx;
  810. padding: 5rpx 0;
  811. }
  812. .bg-color {
  813. background-color: #0052FF;
  814. border-radius: 20px;
  815. }
  816. .bg-hover-color {
  817. background-color: #0052FF;
  818. opacity: 0.65;
  819. border-radius: 20px;
  820. }
  821. .text-color {
  822. color: #0052FF;
  823. }
  824. </style>