Commit f9c9bfb71a7ff3d9476e60cceccb5389d5df361f

Authored by 夏洋涛
1 parent 097a340c
Exists in master

fix:修

src/App.vue
... ... @@ -51,6 +51,12 @@ export default {
51 51 console.log(error)
52 52 })
53 53 })
  54 + // 健康地址调用
  55 + this.yxAxios.get(`https://proxy.shunzhi.net/achieve/healthCheckSXYX`).then((res) => {
  56 + console.log('健康地址:', JSON.stringify(res.data))
  57 + const bodyElement = document.getElementsByTagName('body')[0]
  58 + bodyElement.append(JSON.stringify(res.data))
  59 + })
54 60 },
55 61 methods: {
56 62 setElder(e) {
... ... @@ -77,6 +83,8 @@ export default {
77 83 <style lang="stylus">
78 84 html,body,#app {
79 85 height:100%;
  86 + overflow: auto;
  87 + font-size: 0;
80 88 }
81 89 html {
82 90 font-size: 10px;
... ...
src/views/Home.vue
... ... @@ -235,7 +235,7 @@ export default {
235 235 // alert('支付宝')
236 236 window.location.href = `https://puser.zjzwfw.gov.cn/sso/alipay.do?action=ssoLogin&servicecode=8301b7fe71594245b97560ff841db1f2`
237 237 } else {
238   - alert('非浙里办渠道访问,显示测试用户数据')
  238 + // alert('非浙里办渠道访问,显示测试用户数据')
239 239 console.log('非浙里办渠道访问,显示测试用户数据', userData)
240 240 this.centerNo = '2022031508525674030748540013076'
241 241 localStorage.setItem('centerNo', '2022031508525674030748540013076')
... ...
src/views/Service/BaseDetail/BaseDetail.scss
... ... @@ -106,6 +106,7 @@
106 106 }
107 107 .text_box {
108 108 padding: 10px;
  109 + white-space: break-spaces;
109 110 }
110 111 .tag {
111 112 display: inline-block;
... ... @@ -139,7 +140,8 @@
139 140 height: 80px;
140 141 color: #000;
141 142 white-space: initial;
142   - }
  143 + overflow: hidden;
  144 + }
143 145 }
144 146 .teacher_box {
145 147 .teacher_item {
... ...
src/views/Service/BaseDetail/c_BaseDes.vue
... ... @@ -33,7 +33,7 @@
33 33 </div>
34 34 </div>
35 35 </van-tab>
36   - <van-tab title="研学导师">
  36 + <!-- <van-tab title="研学导师">
37 37 <div class="tag_item">
38 38 <p class="tag_title">研学导师</p>
39 39 <div class="content_box">
... ... @@ -55,7 +55,7 @@
55 55 </div>
56 56 </div>
57 57 </div>
58   - </van-tab>
  58 + </van-tab> -->
59 59 </van-tabs>
60 60 </div>
61 61 </template>
... ...