user.vue 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. <template>
  2. <view class="user-page">
  3. <view class="top-box">
  4. <view class="flex" @click="toMySetting">
  5. <view class="avatar">
  6. <!-- <open-data type="userAvatarUrl"></open-data> -->
  7. <image style="width:100%;height:100%;border-radius: 50%;" :src="userInfo.head_img_url" mode="aspectFill"/>
  8. <image src="@/static/upload_avatar.png" class="avatar_ico"></image>
  9. </view>
  10. <view style="padding-top:10rpx">
  11. <view class="user-name">{{userInfo.real_name||'--'}}</view>
  12. <view class="nick-name">
  13. 昵称:{{userInfo.nick_name || ''}}
  14. <text v-if="!userInfo.nick_name" style="color: #E3B377;">设置专属昵称</text>
  15. </view>
  16. <view class="tel" v-if="userInfo.mobile">{{userInfo.mobile}}</view>
  17. <view class="tel" v-else>{{userInfo.email}}</view>
  18. </view>
  19. </view>
  20. <view class="flex company">
  21. <image src="../../static/company.png" mode="widthFix"/>
  22. <text>{{userInfo.company_name||'--'}}</text>
  23. </view>
  24. </view>
  25. <view class="content">
  26. <view class="flex item-card" >
  27. <image src="../../static/user-icon-1.png" mode="widthFix" />
  28. <text class="label">品种权限</text>
  29. <block v-if="userInfo.status=='冻结'||(userInfo.status=='试用'&&userInfo.is_suspend==1)">
  30. <text style="color:#666666;margin-left:10px">暂无权限</text>
  31. <van-button
  32. custom-class="apply-btn"
  33. plain round color="#DDAA6A"
  34. size="small"
  35. @click.stop="handleContact"
  36. >联系销售</van-button>
  37. </block>
  38. <block v-else-if="userInfo.permission_list.length==0">
  39. <text style="color:#666666;margin-left:10px">暂无权限</text>
  40. <van-button
  41. custom-class="apply-btn"
  42. plain round color="#DDAA6A"
  43. size="small"
  44. @click.stop="handleGoApplyPermission"
  45. >立即申请</van-button>
  46. </block>
  47. <view v-else class="right-text look" @click="handleToUserPermission">
  48. <text>查看</text>
  49. <van-icon name="arrow"></van-icon>
  50. </view>
  51. </view>
  52. <view class="flex item-card" >
  53. <image src="@/static/message_ico.png" mode="widthFix" />
  54. <view class="label flex" style="align-items: center;">消息通知
  55. <text class="unread-ico" v-if="userInfo.un_read">{{userInfo.un_read}}</text>
  56. </view>
  57. <view class="right-text look" @click="toMessageHadle">
  58. <text>查看</text>
  59. <van-icon name="arrow"></van-icon>
  60. </view>
  61. </view>
  62. <view class="flex item-card">
  63. <image src="../../static/question/question-icon.png" mode="widthFix" />
  64. <text class="label">我的问答</text>
  65. <view class="right-text look" @click="handleToQuestionPage">
  66. <!-- <text>查看</text> -->
  67. <text class="hint" v-if="questionUnread!==0">{{questionUnread}}</text>
  68. <van-icon name="arrow"></van-icon>
  69. </view>
  70. </view>
  71. <view class="flex item-card" v-if="userInfo.status!='试用'">
  72. <image src="../../static/calendar.png" mode="widthFix" />
  73. <text class="label">服务截止日期</text>
  74. <text class="right-text" v-if="!(userInfo.status=='冻结'||(userInfo.status=='试用'&&userInfo.is_suspend==1))">{{lastTime}}</text>
  75. </view>
  76. </view>
  77. <!-- 弹窗 -->
  78. <van-popup :show="pupData.show" @close="pupData.show=false" :close-on-click-overlay="false">
  79. <view class="global-pup">
  80. <view class="content">
  81. <rich-text :nodes="pupData.content"></rich-text>
  82. </view>
  83. <view class="flex bot">
  84. <view @click="pupData.show=false">知道了</view>
  85. </view>
  86. </view>
  87. </van-popup>
  88. </view>
  89. </template>
  90. <script>
  91. const moment=require('@/utils/moment-with-locales.min')
  92. import {apiLastApplyRecord,apiApplyPermission} from '@/api/user'
  93. import {apiGetUnread} from '@/api/question'
  94. export default {
  95. computed: {
  96. lastTime(){
  97. let timeArr=[]
  98. this.userInfo.permission_list&&this.userInfo.permission_list.forEach(item=>{
  99. item.permission_list.forEach(item2=>{
  100. timeArr.push(new Date(item2.end_date))
  101. })
  102. })
  103. let maxTime=Math.max(...timeArr)
  104. if(timeArr.length===0){
  105. return ''
  106. }else{
  107. return moment(maxTime).format('YYYY.MM.DD')
  108. }
  109. }
  110. },
  111. data () {
  112. return {
  113. pupData:{
  114. show:false,
  115. content:'',//弹窗html字符串
  116. },
  117. questionUnread:0
  118. }
  119. },
  120. onShow() {
  121. this.$store.dispatch('getUserInfo')
  122. this.getQuestionUnread()
  123. },
  124. methods: {
  125. async handleGoApplyPermission(){
  126. const res=await apiLastApplyRecord({source:1})
  127. if(res.code===200){
  128. if(!res.data){
  129. // 流失客户主动申请一次
  130. if(this.userInfo.status=='流失'){
  131. apiApplyPermission({
  132. company_name:this.userInfo.company_name,
  133. real_name:this.userInfo.real_name,
  134. source:1,
  135. from_page:'我的'
  136. }).then(res=>{
  137. if(res.code===200){
  138. console.log('主动申请成功');
  139. this.pupData.show=true
  140. this.pupData.content=`<p>申请已提交</p><p>请等待销售人员与您联系</p>`
  141. }
  142. })
  143. return
  144. }
  145. uni.navigateTo({
  146. url:"/pages-applyPermission/applyPermission?source=1&from_page=我的"
  147. })
  148. }else{
  149. this.pupData.show=true
  150. this.pupData.content=`<p>您已提交过申请,请耐心等待</p>`
  151. // uni.navigateTo({
  152. // url:"/pages-applyPermission/applyResult"
  153. // })
  154. }
  155. }
  156. },
  157. handleToUserPermission(){
  158. if(this.userInfo.permission_list.length==0) return
  159. uni.navigateTo({ url: '/pages-user/permissionList' })
  160. },
  161. /* 消息通知页 */
  162. toMessageHadle() {
  163. uni.navigateTo({ url: '/pages-user/messageList' })
  164. },
  165. /* 我的设置 */
  166. toMySetting() {
  167. uni.navigateTo({ url: '/pages-user/mysetting' })
  168. },
  169. handleToQuestionPage(){
  170. uni.navigateTo({url:'/pages-question/answerList'})
  171. },
  172. handleContact(){
  173. apiApplyPermission({
  174. company_name:this.userInfo.company_name,
  175. real_name:this.userInfo.real_name,
  176. source:1,
  177. from_page:'我的'
  178. }).then(res=>{
  179. if(res.code===200){
  180. console.log('主动申请成功');
  181. }
  182. })
  183. uni.makePhoneCall({
  184. phoneNumber: this.userInfo.seal_mobile
  185. });
  186. },
  187. getQuestionUnread(){
  188. apiGetUnread().then(
  189. res=>{
  190. if(res.code===200){
  191. this.questionUnread = res.data
  192. }
  193. }
  194. )
  195. }
  196. }
  197. }
  198. </script>
  199. <style>
  200. page{
  201. padding-bottom: 0;
  202. }
  203. </style>
  204. <style lang="scss">
  205. .user-page{
  206. min-height: 100vh;
  207. /* min-height: calc(100vh - calc(50px + constant(safe-area-inset-bottom)));
  208. min-height: calc(100vh - calc(50px + env(safe-area-inset-bottom))); */
  209. background-color: #EDEDED;
  210. }
  211. .top-box{
  212. height: 392rpx;
  213. background-color: #fff;
  214. padding: 98rpx 50rpx 0 50rpx;
  215. .avatar{
  216. width: 154rpx;
  217. height: 154rpx;
  218. border-radius: 50%;
  219. // overflow: hidden;
  220. margin-right: 40rpx;
  221. position: relative;
  222. .avatar_ico {
  223. width: 40rpx;
  224. height: 40rpx;
  225. position: absolute;
  226. bottom: 0;
  227. right: 0;
  228. z-index: 2;
  229. }
  230. }
  231. .user-name{
  232. font-size: 24px;
  233. font-weight: bold;
  234. color: #060606;
  235. }
  236. .tel{
  237. color: #999;
  238. }
  239. .company{
  240. margin-top: 50rpx;
  241. image{
  242. width: 32rpx;
  243. height: 32rpx;
  244. margin-right: 8rpx;
  245. }
  246. color:#DBA665;
  247. }
  248. .nick-name {
  249. font-size: 28rpx;
  250. margin: 20rpx 0;
  251. }
  252. }
  253. .content{
  254. background-color: #fff;
  255. margin-top: 12rpx;
  256. padding: 0 34rpx;
  257. .item-card{
  258. position: relative;
  259. padding: 30rpx 0;
  260. border-bottom: 1px solid $global-border-color;
  261. image{
  262. width: 36rpx;
  263. height: 36rpx;
  264. }
  265. .label{
  266. font-weight: bold;
  267. margin-left: 20rpx;
  268. }
  269. .apply-btn{
  270. position: absolute;
  271. top: 50%;
  272. right: 0;
  273. transform: translateY(-50%);
  274. height: 50rpx;
  275. width: 156rpx;
  276. }
  277. .right-text{
  278. position: absolute;
  279. top: 50%;
  280. right: 0;
  281. transform: translateY(-50%);
  282. color: #666666;
  283. }
  284. .look{
  285. width: 100rpx;
  286. height: 100rpx;
  287. text-align: right;
  288. line-height: 100rpx;
  289. display: flex;
  290. align-items: center;
  291. justify-content: flex-end;
  292. .hint{
  293. width:30rpx;
  294. height:30rpx;
  295. background-color: #FF0000FF;
  296. color:#fff;
  297. font-size: 20rpx;
  298. text-align: center;
  299. line-height: 30rpx;
  300. border-radius: 50%;
  301. display: inline-block;
  302. }
  303. }
  304. .unread-ico {
  305. width: 30rpx;
  306. height: 30rpx;
  307. display: inline-block;
  308. border-radius: 50%;
  309. color: #ffff;
  310. background: #D62020;
  311. line-height: 30rpx;
  312. text-align: center;
  313. font-size: 24rpx;
  314. margin-left: 20rpx;
  315. }
  316. }
  317. .item-card:last-child{
  318. border: none;
  319. }
  320. }
  321. </style>