mine.vue 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329
  1. <template>
  2. <view>
  3. <cu-custom :isBack="false"></cu-custom>
  4. <view class="main">
  5. <view class="main-top">
  6. <view class="title flex justify-between">
  7. <view>{{ user.nickName || '未更新用户信息' }}</view>
  8. <text class="cuIcon-settings lg text-gray" @tap="goto('setting')"></text>
  9. </view>
  10. <view class="user">
  11. <view class="user-info flex">
  12. <image mode="scaleToFill" :src="user.avatarUrl || defaultAvatar" class="avatar"></image>
  13. <view class="study-info">
  14. <view class="user-name" @tap="switchStudent" v-if="isLogin && user.nickName">
  15. {{ kid_info.name + '-' + kid_info.school_name }}
  16. <text class="iconfont margin-left-xs" style="font-size: 18px;">&#xe600;</text>
  17. </view>
  18. <view class="user-name" @tap="login" v-else>
  19. 切换学生
  20. <text class="iconfont margin-left-xs" style="font-size: 18px;">&#xe716;</text>
  21. </view>
  22. <view class="user-learn">已学习{{ info.parent_data.learn_day }}天</view>
  23. </view>
  24. </view>
  25. <view class="user-relative flex justify-between" v-if="isLogin">
  26. <view v-for="(relate, index) in courseRelates" :key="index" class="course-item" :style="'background:' + relate.background" @tap="goto(relate.page)">
  27. <text class="iconfont back-img" style="font-size: 32px;">{{ relate.icon }}</text>
  28. <view class="text-df">{{ relate.name }}</view>
  29. </view>
  30. </view>
  31. <view class="user-relative flex justify-between" v-else>
  32. <view class="course-item relate-item" v-for="(course, index) in courses" :key="index" :style="'background:' + course.background">
  33. <text class="iconfont back-img" style="font-size: 40px;">{{ course.icon }}</text>
  34. <view class="text-lg">{{ course.title }}</view>
  35. <view class="text-xxl margin-top-xs">{{ course.name }}</view>
  36. </view>
  37. </view>
  38. </view>
  39. <view class="order">
  40. <view class="order-title solid-bottom">我的订单</view>
  41. <view class="order-info flex justify-between">
  42. <view v-for="(order, index) in menuList" :key="index" @tap="toOrder(index)">
  43. <view class="order-image">
  44. <text class="iconfont text-student" style="font-size: 32px;">{{ order.icon }}</text>
  45. </view>
  46. {{ order.title }}
  47. </view>
  48. </view>
  49. </view>
  50. </view>
  51. <view class="margin cu-list box-shadow menu margin-top-lg bg-white">
  52. <view class="cu-item arrow" @tap="goto('classCart')">
  53. <text class="cuIcon-cart lg text-gray" style="font-size: 18px;"></text>
  54. <view class="content margin-left-sm">
  55. <text class="text-black">购物车</text>
  56. </view>
  57. <view class="action"></view>
  58. </view>
  59. <view class="cu-item arrow" @tap="goto('message')">
  60. <text class="cuIcon-message lg text-gray" style="font-size: 18px;"></text>
  61. <view class="content margin-left-sm">
  62. <text class="text-black">消息中心</text>
  63. </view>
  64. <view class="action"></view>
  65. </view>
  66. <view class="cu-item arrow" @tap="goto('courseFiles')">
  67. <text class="cuIcon-file lg text-gray" style="font-size: 18px;"></text>
  68. <view class="content margin-left-sm">
  69. <text class="text-black">课程档案</text>
  70. </view>
  71. <view class="action"></view>
  72. </view>
  73. <view class="cu-item arrow" @tap="goto('onlineService')">
  74. <text class="iconfont text-gray" style="font-size: 18px;">&#xe726;</text>
  75. <view class="content margin-left-sm">
  76. <text class="text-black">在线客服</text>
  77. </view>
  78. </view>
  79. </view>
  80. </view>
  81. <mp-tabbar :outerSelected="2" />
  82. <view class="cu-modal drawer-modal justify-start" :class="modalName == 'showStudent' ? 'show' : ''" @tap="hideModal">
  83. <scroll-view :scroll-y="true" class="cu-dialog basis-lg" @tap.stop="" :style="[{ top: topHeader + 'px', height: 'calc(100vh - 48px - ' + topHeader + 'px)' }]">
  84. <view class="student-list padding-left">
  85. <view class="student margin-top-sm" v-for="(student, index) in students" :key="index" @tap="chooseKid(student.id)">
  86. <view class="flex align-center">
  87. <image mode="scaleToFill" :src="defaultAvatar" class="avatar md"></image>
  88. <view class="margin-left-sm">{{ student.name }}</view>
  89. <text class="cuIcon-check text-student margin-left" style="font-size: 22px;" v-if="kid === student.id"></text>
  90. </view>
  91. <view class="flex">
  92. <view class="cu-tag line-green margin-top-xs"> {{ student.school_name ? student.school_name : '' }}-{{ student.grade_name }}-{{ student.class_name }} </view>
  93. </view>
  94. </view>
  95. </view>
  96. </scroll-view>
  97. </view>
  98. </view>
  99. </template>
  100. <script>
  101. import { mapGetters } from 'vuex'
  102. import { _getStudents, _getUserInfo } from '@/api/auth'
  103. export default {
  104. data() {
  105. return {
  106. topHeader: this.globalCustomBarHeight,
  107. info: {},
  108. modalName: null,
  109. students: [],
  110. kid_info: {}, // 当前学生
  111. menuList: [
  112. {
  113. title: '全部订单',
  114. img: '/static/imgs/mine/qbdd.png',
  115. icon: '\ue897'
  116. },
  117. {
  118. title: '待付款',
  119. img: '/static/imgs/mine/dfk.png',
  120. icon: '\ue896'
  121. },
  122. {
  123. title: '已付款',
  124. img: '/static/imgs/mine/yfk.png',
  125. icon: '\ue656'
  126. },
  127. {
  128. title: '退课售后',
  129. img: '/static/imgs/mine/tksh.png',
  130. icon: '\ue61e'
  131. }
  132. ],
  133. courses: [
  134. {
  135. title: '启蒙教育',
  136. name: '我的机构',
  137. img: '/static/imgs/mine/wdjg.png',
  138. background: '#f8be32',
  139. icon: '\ue661'
  140. },
  141. {
  142. title: '启蒙教育',
  143. name: '我的老师',
  144. img: '/static/imgs/mine/wdls.png',
  145. background: '#67d2a9',
  146. icon: '\ue603'
  147. }
  148. ],
  149. courseRelates: [
  150. {
  151. name: '我的学生',
  152. img: '/static/imgs/mine/wdjhr.png',
  153. background: '#5FCFE0',
  154. page: 'myStudents',
  155. icon: '\ue604'
  156. },
  157. {
  158. name: '我的监护人',
  159. img: '/static/imgs/mine/wdjhr.png',
  160. background: '#f8be32',
  161. page: 'myParents',
  162. icon: '\ue60a'
  163. },
  164. {
  165. name: '我的老师',
  166. img: '/static/imgs/mine/wdjg.png',
  167. background: '#67d2a9',
  168. page: 'myTeachers',
  169. icon: '\ue603'
  170. },
  171. {
  172. name: '我的机构',
  173. img: '/static/imgs/mine/wdls.png',
  174. background: '#FF676E',
  175. page: 'myInstitution',
  176. icon: '\ue661'
  177. }
  178. ],
  179. loginIcon: '/static/imgs/mine/login.png',
  180. switchIcon: '/static/imgs/mine/login1.png',
  181. defaultAvatar: 'http://parent.kehoubaike.com/static/img/7f4e775d2e04234d1e1994b13146f6b.e5c47f3.png'
  182. }
  183. },
  184. computed: {
  185. ...mapGetters({
  186. user: 'user',
  187. isLogin: 'token',
  188. kid: 'kid'
  189. })
  190. },
  191. onShow() {
  192. this.get_info()
  193. },
  194. methods: {
  195. login() {
  196. this.globalNavigateTo('login')
  197. },
  198. get_info() {
  199. _getUserInfo().then(res => {
  200. this.info = res.data
  201. this.get_students()
  202. })
  203. },
  204. get_students() {
  205. _getStudents().then(res => {
  206. if (res.data.length < 1) {
  207. this.globalNavigateTo('myStudents')
  208. return false
  209. }
  210. this.students = res.data.student_data
  211. let kid = this.kid
  212. if (!kid) {
  213. kid = this.students[0].id
  214. this.$store.dispatch('setKid', this.students[0].id)
  215. }
  216. this.setkidInfo(kid)
  217. })
  218. },
  219. hideModal(e) {
  220. this.modalName = null
  221. },
  222. setkidInfo(kid) {
  223. // 设置学生信息
  224. this.kid_info = this.students.find(item => item.id === kid)
  225. },
  226. switchStudent() {
  227. this.modalName = 'showStudent'
  228. },
  229. goto(page) {
  230. if (!this.isLogin) {
  231. this.globalNavigateTo('login')
  232. } else {
  233. this.globalNavigateTo(page)
  234. }
  235. },
  236. toOrder(index) {
  237. this.globalNavigateTo('order', { type: index })
  238. },
  239. chooseKid(id) {
  240. uni.showModal({
  241. title: '',
  242. content: '确定选择该学生?',
  243. success: res => {
  244. if (res.confirm) {
  245. this.$store.dispatch('setKid', id).then(res => {
  246. this.setkidInfo(res)
  247. this.hideModal()
  248. })
  249. }
  250. }
  251. })
  252. }
  253. }
  254. }
  255. </script>
  256. <style lang="scss">
  257. @import '~@/common/css/mixin.scss';
  258. .title {
  259. @include title(10px, 22px);
  260. }
  261. .main {
  262. padding-top: 10px;
  263. }
  264. .main-top {
  265. padding: 0 30rpx;
  266. }
  267. .user {
  268. }
  269. .user-info {
  270. margin-bottom: 10px;
  271. }
  272. .study-info {
  273. margin-left: 40rpx;
  274. padding-top: 6px;
  275. }
  276. .user-name {
  277. @include title(10px, 16px);
  278. }
  279. .user-learn {
  280. margin-top: 20px;
  281. }
  282. .user-relative {
  283. width: 100%;
  284. }
  285. .course-item {
  286. position: relative;
  287. border-radius: 10px;
  288. padding: 16rpx;
  289. width: 24%;
  290. min-height: 52px;
  291. color: #fff;
  292. }
  293. .course-item.relate-item {
  294. width: 48%;
  295. }
  296. .back-img {
  297. position: absolute;
  298. bottom: 8px;
  299. right: 6px;
  300. opacity: 0.4;
  301. }
  302. .order {
  303. margin-top: 10px;
  304. }
  305. .order-info {
  306. padding: 0 30rpx;
  307. }
  308. .order-image {
  309. margin: 10rpx auto;
  310. width: 30px;
  311. height: 30px;
  312. image {
  313. width: 100%;
  314. height: 100%;
  315. }
  316. }
  317. .order-title {
  318. padding-bottom: 10px;
  319. @include title(10px, 16px);
  320. }
  321. .switch-icon {
  322. margin-left: 10rpx;
  323. width: 1em;
  324. height: 1em;
  325. }
  326. </style>