소스 검색

付费用户管理优化

yuhao 2 년 전
부모
커밋
f26980b90a
3개의 변경된 파일7개의 추가작업 그리고 4개의 파일을 삭제
  1. 1 1
      src/components/common/layout/layout.vue
  2. 2 2
      src/pages/customerMan/details/index.vue
  3. 4 1
      src/pages/testSkin/index.vue

+ 1 - 1
src/components/common/layout/layout.vue

@@ -313,7 +313,7 @@ export default {
313 313
     }, 20000)
314 314
   },
315 315
   mounted () {
316
-    if(this.$route.path=='/customerMan/details'){
316
+    if(this.$route.path=='/customerMan/details'||this.$route.path=='/testSkin/details'){
317 317
       this.isback=true
318 318
     }
319 319
   },

+ 2 - 2
src/pages/customerMan/details/index.vue

@@ -98,12 +98,12 @@
98 98
 
99 99
         <div class="myDataList coupon-num">
100 100
           <span class="dataListTitle">次卡数量</span> :
101
-          <span @click="toOrder(2)">{{ order_total.card_num }}</span>
101
+          <span class="JEcolor" @click="toOrder(2)">{{ order_total.card_num }}</span>
102 102
         </div>
103 103
 
104 104
         <div class="myDataList coupon-num">
105 105
           <span class="dataListTitle">优惠券</span> :
106
-          <span @click="toOrder(4)">{{ userInfo.card_num }}</span>
106
+          <span class="JEcolor" @click="toOrder(4)">{{ userInfo.card_num }}</span>
107 107
         </div>
108 108
 
109 109
         <div class="myDataList">

+ 4 - 1
src/pages/testSkin/index.vue

@@ -86,7 +86,7 @@ export default {
86 86
       let params = {
87 87
         page: this.currentPage1,
88 88
         limit: this.limit,
89
-        keywords: this.searchText||this.$route.query.id,
89
+        keywords: this.searchText || this.$route.query.id,
90 90
         start_date: start_date,
91 91
         end_date: end_date,
92 92
       };
@@ -119,6 +119,9 @@ export default {
119 119
   created() {
120 120
     this.getSkinList();
121 121
   },
122
+  activated() {
123
+    this.getSkinList();
124
+  },
122 125
 
123 126
   mounted() {},
124 127
 };