Commit 1576c0db42940b52a618bd8cb3b5a58948da7342

Authored by 夏洋涛
1 parent 22a02519
Exists in master

feat: 浙里办反馈问题修改

src/router/index.js
... ... @@ -44,13 +44,15 @@ const routes = [{
44 44 path: '/',
45 45 name: 'ServiceKQ',
46 46 component: ServiceKQ,
47   - meta: {}
  47 + meta: {
  48 + title: '红色网上游'
  49 + }
48 50 }, {
49 51 path: '/home',
50 52 name: 'Home',
51 53 component: Home,
52 54 meta: {
53   - title: '个人中心(柯桥研学)'
  55 + title: '红色网上游'
54 56 }
55 57 },
56 58  
... ... @@ -59,7 +61,7 @@ const routes = [{
59 61 name: 'ServiceAbroadDetail',
60 62 component: ServiceAbroadDetail,
61 63 meta: {
62   - title: '详情'
  64 + title: '红色网上游'
63 65 }
64 66 },
65 67  
... ... @@ -251,7 +253,6 @@ const router = new VueRouter({
251 253 router.beforeEach((to, from, next) => {
252 254 /* 路由发生变化修改页面title */
253 255 if (to.meta.title) {
254   - // console.log(to)
255 256 document.title = to.meta.title
256 257 }
257 258 next()
... ...
src/views/Home/Home.vue
... ... @@ -17,18 +17,18 @@
17 17 </div>
18 18 <HomeOrder></HomeOrder>
19 19 <div class="function">
20   - <div class="item" @click="handleGroup">
  20 + <!-- <div class="item" @click="handleGroup">
21 21 <div class="left">
22 22 <van-icon class="icon" name="orders-o" />
23 23 <span>集团权限</span>
24 24 </div>
25   - <!-- <div class="pic">
  25 + <div class="pic">
26 26 <img src="@/assets/home/bg2.png"/>
27 27 <span>已认证</span>
28 28 <van-icon name="arrow" />
29   - </div> -->
  29 + </div>
30 30 <van-icon name="arrow" />
31   - </div>
  31 + </div> -->
32 32 <div class="item" @click="handleMyCard">
33 33 <div class="left">
34 34 <van-icon class="icon" name="discount" />
... ...
src/views/Service/AbroadDetail.vue
... ... @@ -177,12 +177,12 @@
177 177 </p>
178 178 <p>首页</p>
179 179 </div>
180   - <div class="icon" @click="contactService">
  180 + <!-- <div class="icon" @click="contactService">
181 181 <p>
182 182 <van-icon name="service-o" />
183 183 </p>
184 184 <p>客服</p>
185   - </div>
  185 + </div> -->
186 186 </div>
187 187 <div class="box box2">
188 188 <span v-if="packageArr.length > 0&&detailData.applyCount>=detailData.stockCount" class="disabled">已满团</span>
... ...
src/views/Service/ServiceBaseKQ.vue
... ... @@ -108,7 +108,7 @@ export default {
108 108 // 设置tabbar状态
109 109 let showTab = this.$route.query.showTab
110 110 this.tabName = showTab || 'KQ'
111   - document.title = showTab == 'ZZY' ? '周周营' : '红色网上游——柯桥研学'
  111 + // document.title = showTab == 'ZZY' ? '周周营' : '红色网上游——柯桥研学'
112 112 this.$nextTick(() => {
113 113 this.$refs.tabs.resize();
114 114 })
... ...
src/views/Service/ServiceOrderXST.vue
1 1 <template>
2 2 <div class="myOrders">
3   - <van-nav-bar
4   - title=""
5   - left-text="返回首页"
6   - left-arrow
7   - @click-left="back"
8   -/>
  3 + <!-- <van-nav-bar title="" left-text="返回首页" left-arrow @click-left="back" /> -->
9 4 <van-tabs v-model="active" :before-change="beforeTabChange">
10 5 <van-tab title="待付款">
11 6 <van-list v-model="loading" :finished="finished" finished-text="没有更多了" @load="onLoadpay()">
... ... @@ -237,8 +232,8 @@ export default {
237 232 }
238 233 },
239 234 methods: {
240   - back(){
241   - this.$router.push({ name: 'ServiceKQ'})
  235 + back () {
  236 + this.$router.push({ name: 'ServiceKQ' })
242 237 },
243 238 beforeTabChange (item) {
244 239 console.log(item)
... ...
src/views/Service/component/aboutDes.vue
1 1 <template>
2   - <p class="bottom_about_des">本服务由浙江政务服务网、柯桥区教育体育局、浙江行之教育信息咨询有限公司提供<br>服务咨询热线:<span @click="call">400-826-2468</span></p>
  2 + <p class="bottom_about_des">本服务由浙江政务服务网、浙江行之教育信息咨询有限公司提供<br>服务咨询热线:<span @click="call">400-826-2468</span></p>
3 3 </template>
4 4 <script>
5 5 export default {
... ...