天波h5前端应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

322 lines
8.7KB

  1. <template>
  2. <div class="page" v-if="isSHowPage">
  3. <van-nav-bar title="" :border="true" :left-arrow="true" @click-left="onNavBack" v-if="showLeftArrow">
  4. <template #left>
  5. <van-icon name="arrow-left" size="23" style="padding: 0"/>返回
  6. </template>
  7. </van-nav-bar>
  8. <div class="tip">
  9. <div class="icon">
  10. <i class="iconfont icon-tishi"></i>
  11. </div>
  12. <div class="info">
  13. <div class="titie">温馨提醒:</div>
  14. <div class="content">
  15. 首次佩戴,需完成以下2步,建立情绪模型。完成初始化建模后,将为您计算抑郁、压力、疲劳分值。
  16. </div>
  17. </div>
  18. </div>
  19. <div v-if="info">
  20. <div class="step" v-show="info.progress !== 1">
  21. <div class="name">第一步</div>
  22. <div class="title">
  23. <div class="text">连续佩戴两小时</div>
  24. <div class="status success" v-if="info.progress === 1">
  25. <span class="icon"
  26. ><i class="iconfont icon-caozuochenggong"></i
  27. ></span>
  28. <span>已完成</span>
  29. </div>
  30. <div class="status" v-else>待完成</div>
  31. </div>
  32. <div class="schedule">
  33. <van-progress
  34. :percentage="(info.progress) * 100"
  35. stroke-width="10px"
  36. color="#638ee4"
  37. :show-pivot="false"
  38. ></van-progress>
  39. </div>
  40. <div class="sub_title">
  41. 请连续佩戴不低于2小时,有助于为您输出更加精准的情绪分析指标。
  42. </div>
  43. </div>
  44. <div class="step" v-show="info.initScaleState !== 1">
  45. <div class="name">第二步</div>
  46. <div class="title">
  47. <div class="text">情绪初始化评估</div>
  48. <div class="status success" v-if="info.initScaleState === 1">
  49. <span class="icon"
  50. ><i class="iconfont icon-caozuochenggong"></i
  51. ></span>
  52. <span>已完成</span>
  53. </div>
  54. <div class="status" v-else>待完成</div>
  55. </div>
  56. <div class="sub_title">
  57. 完成一次“情绪初始化评估”,有助于建立您的个人情绪模型。
  58. </div>
  59. </div>
  60. <div class="button">
  61. <van-button
  62. round
  63. type="info"
  64. style="width: 100%; height: 100%"
  65. @click="toQuestion"
  66. v-if="info.initScaleState !== 1"
  67. >去完成</van-button
  68. >
  69. </div>
  70. </div>
  71. </div>
  72. </template>
  73. <script>
  74. import axios from 'axios'
  75. export default {
  76. name: 'PsychologicalModeling',
  77. data() {
  78. return {
  79. info: null,
  80. showLeftArrow: null,
  81. isSHowPage: false,
  82. fromUrl: '',
  83. }
  84. },
  85. mounted() {
  86. //页面标题
  87. window.document.title = '情绪初始化建模'
  88. //页面传参
  89. let params = { ...this.$route.query }
  90. if (params.uid) {
  91. this.uid = params.uid;
  92. // 缓存从随手精灵传过来的token
  93. this.$store.commit('ssjlToken', params.token);
  94. // 缓存从随手精灵传过来的标识
  95. this.$store.commit('fromSsjl', params.fromSsjl);
  96. // 是否显示 返回标签
  97. this.showLeftArrow = this.$store.getters.fromSsjl === 'true';
  98. this.fromUrl = params.fromUrl;
  99. console.log("fromUrl", this.fromUrl);
  100. //初始化
  101. this.init()
  102. } else {
  103. this.$toast('参数错误')
  104. }
  105. },
  106. methods: {
  107. onNavBack() {
  108. let fromSsjl = this.$store.getters.fromSsjl === 'true';
  109. if(fromSsjl) {
  110. let baseUrl = this.fromUrl;
  111. window.location.href = `${baseUrl}/#/device`;
  112. } else {
  113. this.$router.go(-1);
  114. }
  115. },
  116. async init() {
  117. let ssjlToken = this.$store.getters.ssjlToken;
  118. let re = await this.api('/api/Question/Progress', {
  119. method: 'GET',
  120. sslVerify: false,
  121. withCredentials: false,
  122. params: {
  123. uid: this.uid,
  124. },
  125. }, ssjlToken)
  126. if (re.success) {
  127. if (re.response && re.response.state === -1) {
  128. this.$toast('用户不存在或未绑定手表')
  129. } else if (re.response && re.response.initScaleState === 1 && re.response.progress === 1) {
  130. // 2023.6.1 需求变更,建模完成直接跳到心理健康汇总页面
  131. this.$router.replace(`/psychologicalMain?uid=${this.uid}&fromUrl=${this.fromUrl}`);
  132. } else {
  133. this.info = re.response
  134. }
  135. } else {
  136. this.$toast(re.msg)
  137. }
  138. setTimeout(() => {
  139. this.isSHowPage = true;
  140. }, 800)
  141. },
  142. toQuestion() {
  143. this.$router.replace(`/PsychologicalQuestionnaire?uid=${this.uid}`)
  144. },
  145. api(url, config, token) {
  146. let baseUrl = 'https://dbmq.rzliot.com/heart'
  147. setTimeout(() => {
  148. this.$toast.loading({
  149. message: '',
  150. forbidClick: true,
  151. duration: 0,
  152. })
  153. }, 100)
  154. return new Promise((res) => {
  155. axios({
  156. url: `${baseUrl}${url}`,
  157. ...config,
  158. // 增加请求头部 token
  159. headers: {
  160. 'AuthToken': token
  161. }
  162. })
  163. .then((re) => {
  164. if (re) {
  165. if (re.data) {
  166. console.log(re.data)
  167. res(re.data)
  168. this.$toast.clear()
  169. return
  170. }
  171. this.$toast(`信息获取失败-${re.status}`)
  172. res(true)
  173. this.$toast.clear()
  174. return
  175. }
  176. this.$toast(`信息获取失败-${url}`)
  177. res(true)
  178. this.$toast.clear()
  179. })
  180. .catch((e) => {
  181. this.$toast(`信息获取失败-${url}`)
  182. res(true)
  183. this.$toast.clear()
  184. console.log(e)
  185. })
  186. })
  187. },
  188. },
  189. }
  190. </script>
  191. <style lang="scss" scoped>
  192. @font-face {
  193. font-family: 'iconfont'; /* Project id 2652084 */
  194. src: url('data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAAQoAAsAAAAACFQAAAPaAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHFQGYACDBgqEIIQDATYCJAMMCwgABCAFhGcHQRtqBxEVnBvJPhLjmMRz8aCJJho3wfN8ne+5817QmS/XTApqUAGT1kmpHaidloBWXGdzOaZE+Aj1S75l+ek70v5OL82zLE6hFEIiJEbx96dyFkjAnwUAJnXNTcUP1HiBAtaxhhUr2KsXyLuo1/rCrIx6BgFM6tACo12HbjZpk4bPmkIRGksqkFbKpPFjhxOWRnRLpRBGCEKXamQTATDWGo+AjeHn5RdRCYNBQGHt0mtM+1Hc+Zr+1VZ+0gf1Gl+CgIcbQABQQI2NmWVIu7MfKk7WQGHWKTUpDKIRjEkjySSEglIHt/zHM0CCWMoUTFVRGBclugwEvto8VnH9qyAIhIDrIApTOVMVOr2mNDQjKSPHeM4zz6ZrPrYDY3fjR7a4+xTrY15tvZVw5KkZtx/X+HznyRPHnvCeqZskVmTOjMmRnF1girdzz7F4ju3uiB/xc53CoFi1HdXMW9Vu1TonY+gTzqB98OucaHakkW3GjxWJhX9kQXymq/AjJ5sfbS5Hc9nm5+KfvW9ZiYfnRXbG8tzG6nK7+u265yW2Hv38lNG3PmqlJo7Hjv0enTXu0fJ0ouuAIf1WL94ysHiw9aA5vca2mth0ZPGOvtu99JioF7HtiBd95LA4E7Gj3qPSVmO6tC3erV1e54F9yvUsu3Bh2Z7l+lwiLGETNtvRp9ylmtsGlm7eieOF8GLvn+zifT/067/LLFd8TdeujrureHTFyFEf+hbPVft+SK96RrBXE7tqx8rt21XpUO2QwwZswmZvsZsOz8+pN3TsrzXZ143c71m5NwLL+4xyo30jdTbxttGdTvRcMG4rPzrU0SFdrfTjHqXWlOrxuHR1FdK1219m/7yFvU52Hh3x6th9I25U9b0QTS1XvFyq35thACTvqtuqZZiOq5kq9v9/w/jtj8cOTW/2P2xpAN5vbXsP+5NxDcwN4RfjFPjbqkFApFYhULpOcFsQQLEkk4cBmLYJfm81QBZvh6uzweUghMlOwSBEcVCEKYdpqhoEsIhCkDDNwaQ67VdbZPsIzBFdDKjEC4GQwRsM0rgKigw+mKa+ECCPHwTJ4A8mrqy2s6gkZs2oBC3oB9SGBudoJJR7QD92iqtiF+RY4wjkSVbM7HFAHmNGvPpCxIFj6mHHT8OuIwhMDRpJKpFQpqmre0liqJ+sYRCFgFgAzQOgxkAMOB8t+e87gHhGOhQMxC52JlKeyAdyEjIAtlcOoLYb6R254ikQBEdHORiiB9gpO9LZSQII9YMaEIOQUA2IB0pSgnJQZbK8un+5XYCJtaUSQ5Ro0kcqeo5kKhy8J7dhKXWs6skEAAA=');
  195. }
  196. .iconfont {
  197. font-family: 'iconfont' !important;
  198. // font-size: 16px;
  199. font-style: normal;
  200. -webkit-font-smoothing: antialiased;
  201. -moz-osx-font-smoothing: grayscale;
  202. }
  203. .icon-caozuochenggong:before {
  204. content: '\e60f';
  205. }
  206. .icon-tishi:before {
  207. content: '\e654';
  208. }
  209. .page {
  210. width: 100%;
  211. min-height: 100%;
  212. box-sizing: border-box;
  213. font-size: 3.6vw;
  214. text-align: left;
  215. background: #f4f4f4;
  216. padding-bottom: 30vw;
  217. .tip {
  218. display: flex;
  219. font-size: 3.3vw;
  220. padding: 6vw 4vw;
  221. justify-content: space-between;
  222. align-items: center;
  223. background: white;
  224. .icon {
  225. overflow: hidden;
  226. display: flex;
  227. justify-content: center;
  228. align-items: center;
  229. width: 40px;
  230. height: 40px;
  231. color: #ff865a;
  232. font-size: 6vw;
  233. border-radius: 50%;
  234. background: #fff5f1;
  235. }
  236. .info {
  237. width: calc(100% - 50px);
  238. line-height: 20px;
  239. text-align: left;
  240. .titie {
  241. color: #ff865a;
  242. }
  243. .content {
  244. color: gray;
  245. }
  246. }
  247. }
  248. .step {
  249. margin-top: 3vw;
  250. padding: 4vw 8vw;
  251. padding-right: 4vw;
  252. background: white;
  253. .name {
  254. display: flex;
  255. align-items: center;
  256. font-size: 3.8vw;
  257. padding-bottom: 2vw;
  258. &::before {
  259. content: '';
  260. display: block;
  261. width: 1vw;
  262. height: 1vw;
  263. border: 2px solid #638ee4;
  264. border-radius: 50%;
  265. margin-left: calc(-2vw - 4px);
  266. margin-right: 1vw;
  267. }
  268. }
  269. .title {
  270. display: flex;
  271. justify-content: space-between;
  272. padding: 3vw 0;
  273. .status {
  274. color: #ff865a;
  275. }
  276. .success {
  277. color: #638ee4;
  278. .icon {
  279. font-size: 4vw;
  280. margin-right: 1vw;
  281. }
  282. }
  283. }
  284. .sub_title {
  285. padding: 3vw 0;
  286. color: gray;
  287. }
  288. }
  289. .button {
  290. position: fixed;
  291. left: 0;
  292. right: 0;
  293. bottom: 15vw;
  294. width: 75vw;
  295. height: 14vw;
  296. margin: auto;
  297. .van-button--info {
  298. background-color: #638ee4;
  299. border: 1px solid #638ee4;
  300. }
  301. }
  302. }
  303. </style>