Przeglądaj źródła

修改企业微信扫码登陆

朱鑫波 4 lat temu
rodzic
commit
409a95a004

+ 3 - 0
src/views/modules/autoLaunch/material-all/material-detail.vue

@@ -913,6 +913,7 @@ export default {
         },
         handleClose(e) {
             this.visibleAgain = false;
+            this.updateDescription = '';
             this.form.resetFields();
         },
         getAccountList() {
@@ -942,6 +943,8 @@ export default {
                         if (res.success) {
                             // this.visibleFail = true
                             this.visibleAgain = false;
+                            this.updateDescription = '';
+                            this.handleClose();
                             this.selectedOneKeysValueCreative = [];
                             this.selectedRowKeysValueCreative = [];
                             this.selectedRowKeysCreative = [];

+ 3 - 0
src/views/modules/autoLaunch/material-all/material.less

@@ -3,6 +3,9 @@
     // height: calc(100vh - 137px);
     // padding: 20px;
     overflow: hidden;
+    /deep/.chart-card-content {
+        height: 0;
+    }
     .middle-button {
         margin: 0 8px;
     }

+ 1 - 1
src/views/modules/autoLaunch/material-all/material.vue

@@ -60,7 +60,7 @@
     <a-row :gutter="24" class="material-total" v-if="totalData">
         <a-col :sm="24" :md="12" :xl="6">
             <chart-card title="素材总数" :total="totalData.total + ''">
-                <a-tooltip title="此项目的素材总数" slot="action">
+                <a-tooltip title="此项目可用的素材总数" slot="action">
                     <a-icon type="info-circle-o" />
                 </a-tooltip>
                 <!-- <div slot="percentage">

Plik diff jest za duży
+ 487 - 415
src/views/user/Login.vue


+ 8 - 4
src/views/user/transferLocal.vue

@@ -137,11 +137,15 @@ export default {
   },
   mounted() {
     this.$nextTick(() => {
-      console.log(window.location.search)
-      var data = window.location.search.split('?')[1]
-      var arr = data.split('=')
+      console.log(window.location.search,this.$route.query)
+      var data = this.$route.query.corpId
+      var arr =  data.split('?')
       var json = {}
-      json[arr[0]] = arr[1]
+      json.corpId = arr[0]
+      json[arr[1].split('=')[0]] = arr[1].split('=')[1]
+      // var arr = data.split('=')
+      // var json = {}
+      // json[arr[0]] = arr[1]
       var params = qs.stringify(json)
       postAction('/sys/wxlogin', params).then(res => {
         console.log(res)

+ 2 - 2
vue.config.js

@@ -69,7 +69,7 @@ module.exports = {
     proxy: {
       '/jeecg-boot': {
           // target: 'http://192.168.1.8:8080', //请求本地 需要jeecg-boot后台项目  蒙蒙
-          // target: 'http://192.168.1.3:8080', //请求本地 需要jeecg-boot后台项目  蒙蒙
+          target: 'http://192.168.1.3:8080', //请求本地 需要jeecg-boot后台项目  蒙蒙
         // target: 'http://192.168.0.59:8088', //请求本地 需要jeecg-boot后台项目  英豪
         // target: 'http://192.168.1.62:8088', //请求本地 需要jeecg-boot后台项目  英豪
         // target: 'http://192.168.6.162:9806', //请求本地 需要jeecg-boot后台项目  祚云
@@ -89,7 +89,7 @@ module.exports = {
         // target: 'http://192.168.1.43:8806', // 子安
         // target: 'http://192.168.1.8:8806', // 学超
       //  target:'http://139.186.165.84:8806', //测试
-        target:'http://apipre.tjyourong.com.cn', //预生产
+        // target:'http://apipre.tjyourong.com.cn', //预生产
 
         ws: false,