12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- <script>
- import {
- conn
- } from './utils/WebIM';
- // import {
- // index
- // } from "@/units/inquire.js"
- export default {
- onLaunch: function() {
- // console.log('App Launch')
- setTimeout(() => {
- console.log('aaaaaaaaaaaaaaa');
- if (uni.getStorageSync("token")) {
- this.HXlogin()
- /* if (uni.getStorageSync("company_id") == 0) {
- if (getCurrentPages()[0].route != 'pages/login/login') {
- uni.reLaunch({
- url: "/pages/login/login"
- })
- }
- } else {
- index().then(res => {
- if (res.code != 1) {
- if (getCurrentPages()[0].route != 'pages/login/login') {
- uni.reLaunch({
- url: "/pages/login/login"
- })
- }
- }
- })
- } */
- } else {
- // if (getCurrentPages()[0].route != 'pages/login/login') {
- // uni.reLaunch({
- // url: "/pages/login/login"
- // })
- // }
- }
- }, 800)
- },
- onShow: function() {
- // console.log('App Show')
- },
- onHide: function() {
- // console.log('App Hide')
- },
- methods: {
- HXlogin() {
- if (uni.getStorageSync('user_no') && uni.getStorageSync('pwd')) {
- var user_no = uni.getStorageSync('user_no')
- var pwd = uni.getStorageSync('pwd')
- conn.open({
- user: user_no,
- pwd: pwd,
- appKey: conn.appkey
- }).then(() => {
- console.log('res');
- }).catch(reason => {
- console.log('失败', reason);
- })
- }
- }
- }
- };
- </script>
- <style lang="scss">
- page {
- background-color: #f4f4f4;
- }
- .uni-bar {
- background-color: #f4f4f4;
- }
- /*每个页面公共css */
- @import "@/uview-ui/index.scss";
- </style>
|