snow 1 year ago
parent
commit
3c21eea59a

File diff suppressed because it is too large
+ 0 - 0
dist/app.js


File diff suppressed because it is too large
+ 7 - 0
dist/chunk-libs.js


+ 1 - 1
dist/runtime.js

@@ -113,7 +113,7 @@
 /******/
 /******/ 	var hotApplyOnUpdate = true;
 /******/ 	// eslint-disable-next-line no-unused-vars
-/******/ 	var hotCurrentHash = "a72de05dec1e27d06b55";
+/******/ 	var hotCurrentHash = "16d1a63af67a940ecf67";
 /******/ 	var hotRequestTimeout = 10000;
 /******/ 	var hotCurrentModuleData = {};
 /******/ 	var hotCurrentChildModule;

BIN
dist/static/img/wechat.42e0fefc.png


+ 21 - 2
package-lock.json

@@ -3749,6 +3749,11 @@
       "dev": true,
       "optional": true
     },
+    "charenc": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/charenc/-/charenc-0.0.2.tgz",
+      "integrity": "sha512-yrLQ/yVUFXkzg7EDQsPieE/53+0RlaWTs+wBrvW36cyilJ2SaDWfl4Yj7MtLTXleV9uEKefbAGUPv2/iWSooRA=="
+    },
     "check-types": {
       "version": "8.0.3",
       "resolved": "https://registry.npmmirror.com/check-types/-/check-types-8.0.3.tgz",
@@ -4921,6 +4926,11 @@
         }
       }
     },
+    "crypt": {
+      "version": "0.0.2",
+      "resolved": "https://registry.npmjs.org/crypt/-/crypt-0.0.2.tgz",
+      "integrity": "sha512-mCxBlsHFYh9C+HVpiEacem8FEBnMXgU9gy4zmNC+SXAZNB/1idgp/aulFJ4FgCi7GPEVbfyng092GqL2k2rmow=="
+    },
     "crypto-browserify": {
       "version": "3.12.0",
       "resolved": "https://registry.npmmirror.com/crypto-browserify/-/crypto-browserify-3.12.0.tgz",
@@ -8987,8 +8997,7 @@
     "is-buffer": {
       "version": "1.1.6",
       "resolved": "https://registry.npmmirror.com/is-buffer/-/is-buffer-1.1.6.tgz",
-      "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==",
-      "dev": true
+      "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w=="
     },
     "is-callable": {
       "version": "1.2.4",
@@ -9908,6 +9917,16 @@
       "integrity": "sha512-M6AMrvq9bO8uL42KvQHPA2/SbAobA0R7gviUmPrcTcGfdwpaLitz4q2Euzx2lP9Oy88vxK3HOrsISgSwKsYS4A==",
       "dev": true
     },
+    "md5": {
+      "version": "2.3.0",
+      "resolved": "https://registry.npmjs.org/md5/-/md5-2.3.0.tgz",
+      "integrity": "sha512-T1GITYmFaKuO91vxyoQMFETst+O71VUPEU3ze5GNzDm0OWdP8v1ziTaAEPUr/3kLsY3Sftgz242A1SetQiDL7g==",
+      "requires": {
+        "charenc": "0.0.2",
+        "crypt": "0.0.2",
+        "is-buffer": "~1.1.6"
+      }
+    },
     "md5.js": {
       "version": "1.3.5",
       "resolved": "https://registry.npmmirror.com/md5.js/-/md5.js-1.3.5.tgz",

+ 1 - 0
package.json

@@ -23,6 +23,7 @@
     "js-base64": "^2.5.2",
     "js-cookie": "^2.2.0",
     "lrz": "^4.9.40",
+    "md5": "^2.3.0",
     "npm": "^7.13.0",
     "weixin-js-sdk": "^1.6.0"
   },

+ 16 - 0
src/api/axios.js

@@ -1,8 +1,14 @@
+import md5 from "md5";
 
 const header = {
   // "sign": true
 }
 
+function generateRandomString(length) {
+  let str = Math.random().toString(36).substring(2, length + 2);
+  return str;
+}
+
 window.ajaxTimeout = 20000
 export default async (
   url = '',
@@ -29,6 +35,16 @@ export default async (
   // 请求拦截器
   axios.interceptors.request.use(
     config => {
+
+      const noce = generateRandomString(10);
+      const origin = window.location.origin;
+      const timestamp = new Date().valueOf();
+
+      config.headers.noce = noce;
+      config.headers.origin = origin;
+      config.headers.timestamp = timestamp;
+      config.headers.sign = md5(origin + noce + timestamp);
+      config.headers['web-auth'] = 1;
       return config
     },
     error => {

+ 0 - 1
src/api/index.js

@@ -10,5 +10,4 @@ export default {
   accountQuery: (data, params) => http(baseApi + "accountquery", data, "post", params),
   template: (data, params) => http(baseReportApi + "admin/WeTemplate/getTemplate", data, "post", params),
   bindwx: (data, params) => http(baseApi + "bindwx", data, "post", params),
-
 };

BIN
src/assets/phone.png


+ 86 - 49
src/components/binding/index.vue

@@ -1,28 +1,40 @@
 <template>
   <div class="binding-container">
-    <div class="login-container">
-      <h3>请登录采销365账号 与当前微信绑定</h3>
-      <el-form label-width="0px" style="margin-top:10px" ref="formRef" :model="formData" :rules="rules">
-        <el-form-item label="" prop="username">
-          <el-input v-model="formData.username" placeholder="账号">
-            <template slot="prefix">
-              <i class="el-icon-user" style="padding-left:5px;color:#087af5"></i>
-            </template>
-          </el-input>
-        </el-form-item>
-
-        <el-form-item prop="password">
-          <el-input type="password" v-model="formData.password" placeholder="密码">
-            <template slot="prefix">
-              <i class="el-icon-key"  style="padding-left:5px;color:#087af5"></i>
-            </template>
-          </el-input>
-        </el-form-item>
-
-        <el-form-item>
-          <el-button type="primary" @click="submit" style="width:100%;border-radius:15px;background-color:#087af5"">登 录</el-button>
-        </el-form-item>
-      </el-form>
+    <div class="login-container" v-loading="loading_login">
+      <div class="inner-login-container">
+        <h3 style="margin-bottom: 30px;">采销365</h3>
+        <el-form label-width="0px" style="margin-top:10px" ref="formRef" :model="formData" :rules="rules">
+          <el-form-item label="" prop="username">
+            <el-input  size="medium" v-model="formData.username" placeholder="账号" maxlength="11">
+              <template slot="prefix">
+                <i class="el-icon-user" style="padding-left:5px;color:#087af5"></i>
+              </template>
+            </el-input>
+          </el-form-item>
+
+          <el-form-item prop="password">
+            <el-input size="medium" type="password" v-model="formData.password" placeholder="密码">
+              <template slot="prefix">
+                <i class="el-icon-key" style="padding-left:5px;color:#087af5"></i>
+              </template>
+            </el-input>
+          </el-form-item>
+
+          <el-form-item>
+            <div style="display: flex;gap:10px">
+              <div class="button" style="background-color: #087af5;border-color:#087af5;width: 100%;"  @click="submit(false)">
+                <img style="height:20px;width:20px;margin:0 2px 0 5px;" src="~@/assets/phone.png" />
+                <span style="font-weight: 600;">登录</span>
+              </div>
+
+              <div class="button" style="background-color: #07c160;width:100%" v-if="isWx"  @click="submit(true)">
+                <img style="height:20px;width:20px" src="~@/assets/wechat.png" />
+                <span style="font-weight: 600;">授权登录</span>
+              </div>
+            </div>
+          </el-form-item>
+        </el-form>
+      </div>
     </div>
   </div>
 </template>
@@ -30,8 +42,9 @@
 <script>
 import asyncRequest from "@/api"
 import { isnumber, isAlphanumeric, validAlphabets, isMobile } from '@/utils/validate'
+import { getParameterByName } from "@/utils/auth"
 export default {
-  props: ["openid", "template"],
+  props: ["openid", "template", "isWx"],
   data() {
 
     const validateUsername = (rule, value, callback) => {
@@ -69,10 +82,10 @@ export default {
       isMobile: true,
       ol: false,
       maxHeight: null,
-      loading_wx: true,
       loading: false,
+      loading_login:false,
       currentAccount: {},
-      isMobile:false,
+      isMobile: false,
       formData: {
         username: "",
         password: ""
@@ -84,32 +97,30 @@ export default {
     }
   },
   created() {
-    document.title = "绑定采销账号"
+    document.title = "采销365"
   },
   beforeDestory() {
     document.title = ""
   },
   methods: {
-    handleSuccess(res) {
-      console.log('success:',res)
-      this.submit();
-    },
-    handleError(err) {
-      console.log('error:',err)
-      this.submit();
-      // this.$message.warning("订阅失败,请重试!")
+    toLogin() {
+      const back = getParameterByName("back")
+      window.location.href = back + "/?from=authorization";
     },
     handleChange(value) {
       const item = this.accounts.find(({ value: oV }) => oV === value)
-      this.formData = { id: item.value, phone: item.mobile, lastCode: ""  }
+      this.formData = { id: item.value, phone: item.mobile, lastCode: "" }
     },
-    async submit() {
+    async submit(hasOpenId) {
       try {
         await this.$refs.formRef.validate();
         const { username, password } = this.formData;
-        this.loading = true
-        const result = await asyncRequest.login({ password, username, openId: this.openid })
-        this.loading = false;
+        this.loading_login = true
+        const result = await asyncRequest.login({
+          ...({ password, username, }),
+          ...(hasOpenId ? { openId: this.openid} : {})
+        })
+        this.loading_login = false;
         if (result.code === 0) {
           this.$emit("bind", result.data.token);
         } else {
@@ -150,28 +161,54 @@ export default {
   align-items: center;
   position: fixed;
   top: 0%;
-  width:100vw;
+  width: 100vw;
   height: 100vh;
   background: url("~@/assets/bg-phone.jpg") no-repeat;
-  background-size:cover;
+  background-size: cover;
 
-  .login-container{
+  .login-container {
 
-    h3{
+    h3 {
       text-align: center;
-      color:#087af5;
+      color: #087af5;
+      line-height: 20px;
+
+      &:first-child {
+        margin-top: 30px;
+      }
     }
 
-    width:90%;
-    max-width: 428px;
+    width: 320px;
     background:#fff;
     box-sizing: border-box;
-    padding: 10px 40px;
+    padding: 10px 35px;
     position: absolute;
 
+    .button {
+      height: 40px;
+      width: 80%;
+      display: flex;
+      flex-direction: row;
+      align-items: center;
+      justify-content: center;
+      line-height: 40px;
+      color: #fff;
+      border-radius: 80px;
+      cursor: pointer;
+      user-select: none;
+
+      img {
+        margin: 0 5px 0 0px;
+      }
+    }
+
+    /deep/ .el-form-item {
+      width: 250px;
+    }
+
     top:50%;
     left:50%;
-    transform:translate(-50%,-50%);
+    transform:translate(-50%, -50%);
     border-radius:10px;
   }
 }

+ 1 - 1
src/config/env.prod.js

@@ -2,7 +2,7 @@
 
 module.exports = {
   title: "微信登录",
-  baseApi: "http://user.test241.wanyuhengtong.com/",
+  baseApi: "http://user.api.caixiao365.com/",
   baseReportApi: "http://report.test241.wanyuhengtong.com/",
   cxApi: "http://stock.api.wanyuhengtong.com/",
   fileURL: `https://api2.edu.futurelab.tv`,

+ 11 - 5
src/config/env.staging.js

@@ -1,10 +1,16 @@
-// 测试环境
+// 本地
+
 module.exports = {
-  title: "业绩报表",
-  baseApi: "http://inv.sit.wanyuhengtong.com/",
-  fileURL: `https://api2.edusit.zretchome.com`,
+  title: "微信登录",
+  baseApi: "http://user.test241.wanyuhengtong.com/",
+  baseReportApi: "http://report.test241.wanyuhengtong.com/",
+  cxApi: "http://stock.api.wanyuhengtong.com/",
+  fileURL: `https://api2.edu.futurelab.tv`,
   reportApi: "http://cxinv.api.caixiao365.com/",
-  appId: "wx5ac3a2c2d72b6f26",
+  appId: "wx975a4b5b19681d8b",
+  redirect: 'http://depart.test241.wanyuhengtong.com/',
+  authUrl: 'http://rep.caixiao365.com',
+  wechatEnv: 'micromessenger',
   ding: {
     //企业id
     CorpId: "dingc78fa4301e1a424a35c2f4657eb6378f",

+ 17 - 0
src/main.js

@@ -14,6 +14,23 @@ import {
 import 'element-ui/lib/theme-chalk/index.css';
 
 
+const ua = window.navigator.userAgent.toLowerCase();
+
+import { getParameterByName } from "@/utils/auth"
+const code = getParameterByName("code");
+const back = getParameterByName("back");
+
+
+// 是否为微信环境
+const isWechat = ua.match(/micromessenger/i) == 'micromessenger'
+if (isWechat && !code) {
+  router.push("/" + "?back=" + back)
+}
+
+if (!isWechat) {
+  router.push("/wechat" + "?back=" + back)
+}
+
 // new VConsole();
 
 Vue.component(Table.name, Table);

+ 11 - 7
src/pages/wechat.vue

@@ -2,7 +2,7 @@
   <div id="app" v-cloak v-loading="loading">
     <!-- 未绑定账号 -->
     <div v-if="!isError && !isBound && !loading">
-        <Binding :openid="openid" :template="template" @bind="jumpToSystem" />
+        <Binding :isWx="isWx" :openid="openid" :template="template" @bind="jumpToSystem" />
     </div>
 
     <!-- 已绑定账号 -->
@@ -10,7 +10,7 @@
       v-if="!isError && isBound && !loading" 
       v-loading="true" 
       style="height:100vh" 
-      :element-loading-text="` 正在登录至 ${name} 系统...`"
+      :element-loading-text="` 正在登录至系统...`"
       />
 
     <!-- 登陆时出错 -->
@@ -37,13 +37,18 @@ export default {
       isError: "",
       openid: "",
       back:"",
-      name:""
+      name:"",
+      isWx:false
     }
   },
+  created(){
+    const ua = window.navigator.userAgent.toLowerCase();
+    this.isWx = ua.match(/micromessenger/i) == 'micromessenger' && window.location.search !== "?from=authorization"
+  },
   async mounted() {
     this.back = getParameterByName("back")
     this.name = getParameterByName("name")
-    await this.requestUserinfo()
+    if(this.isWx) await this.requestUserinfo()
   },
   methods: {
     async requestUserinfo() {
@@ -58,10 +63,8 @@ export default {
       }
 
       const { wxinfo, isLogin, userinfo } = (result.data || {})
-      this.isBound = Number(isLogin) === 1;
+      this.isBound =  Number(isLogin) === 1;
       this.openid = wxinfo.openid;
-      const isMobile = /Mobi|Android|iPhone/i.test(navigator.userAgent);
-
 
       if (!this.isBound) return;
       this.jumpToSystem(userinfo.token)
@@ -69,6 +72,7 @@ export default {
     jumpToSystem(token = "") {
       const encJson = CryptoJS.AES.encrypt(JSON.stringify({ token }), "key123")
       const encData = CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(encJson))
+      console.log(this.back + "/#/accept?t=" + encData);
       window.location.href = this.back + "/#/accept?t=" + encData
     },
     async getTemplate(){

+ 0 - 2
src/router/index.js

@@ -1,11 +1,9 @@
 import Wechat from "./../pages/wechat.vue"
 import Login from "./../pages/login.vue"
-// import Nav from "./../pages/nav.vue"
 
 const routes = [
   { path: '/wechat', component: Wechat },
   { path: '/', component: Login },
-  // { path: '/', component: Nav }
 ]
 
 const router = new VueRouter({routes ,mode:'hash'})

Some files were not shown because too many files changed in this diff