user.vue 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. <template>
  2. <view class="user-page">
  3. <view class="top-box">
  4. <view class="flex">
  5. <view class="avatar">
  6. <!-- <open-data type="userAvatarUrl"></open-data> -->
  7. <image style="width:100%;height:100%" :src="globalImgUrls.defaultAvatar" mode="aspectFill"/>
  8. </view>
  9. <view style="padding-top:10rpx">
  10. <view class="user-name">{{userInfo.real_name||'--'}}</view>
  11. <view class="tel" v-if="userInfo.mobile">{{userInfo.mobile}}</view>
  12. <view class="tel" v-else>{{userInfo.email}}</view>
  13. </view>
  14. </view>
  15. <view class="flex company">
  16. <image src="../../static/company.png" mode="widthFix"/>
  17. <text>{{userInfo.company_name||'--'}}</text>
  18. </view>
  19. </view>
  20. <view class="content">
  21. <view class="flex item-card" >
  22. <image src="../../static/user-icon-1.png" mode="widthFix" />
  23. <text class="label">品种权限</text>
  24. <block v-if="userInfo.status=='冻结'||(userInfo.status=='试用'&&userInfo.is_suspend==1)">
  25. <text style="color:#666666;margin-left:10px">暂无权限</text>
  26. <van-button
  27. custom-class="apply-btn"
  28. plain round color="#DDAA6A"
  29. size="small"
  30. @click.stop="handleContact"
  31. >联系销售</van-button>
  32. </block>
  33. <block v-else-if="userInfo.permission_list.length==0">
  34. <text style="color:#666666;margin-left:10px">暂无权限</text>
  35. <van-button
  36. custom-class="apply-btn"
  37. plain round color="#DDAA6A"
  38. size="small"
  39. @click.stop="handleGoApplyPermission"
  40. >立即申请</van-button>
  41. </block>
  42. <view v-else class="right-text look" @click="handleToUserPermission">
  43. <text>查看</text>
  44. <van-icon name="arrow"></van-icon>
  45. </view>
  46. </view>
  47. <view class="flex item-card">
  48. <image src="../../static/calendar.png" mode="widthFix" />
  49. <text class="label">服务截止日期</text>
  50. <text class="right-text" v-if="!(userInfo.status=='冻结'||(userInfo.status=='试用'&&userInfo.is_suspend==1))">{{lastTime}}</text>
  51. </view>
  52. </view>
  53. <!-- 弹窗 -->
  54. <van-popup :show="pupData.show" @close="pupData.show=false" :close-on-click-overlay="false">
  55. <view class="global-pup">
  56. <view class="content">
  57. <rich-text :nodes="pupData.content"></rich-text>
  58. </view>
  59. <view class="flex bot">
  60. <view @click="pupData.show=false">知道了</view>
  61. </view>
  62. </view>
  63. </van-popup>
  64. </view>
  65. </template>
  66. <script>
  67. const moment=require('@/utils/moment-with-locales.min')
  68. import {apiLastApplyRecord,apiApplyPermission} from '@/api/user'
  69. export default {
  70. computed: {
  71. lastTime(){
  72. let timeArr=[]
  73. this.userInfo.permission_list&&this.userInfo.permission_list.forEach(item=>{
  74. item.permission_list.forEach(item2=>{
  75. timeArr.push(new Date(item2.end_date))
  76. })
  77. })
  78. let maxTime=Math.max(...timeArr)
  79. if(timeArr.length===0){
  80. return ''
  81. }else{
  82. return moment(maxTime).format('YYYY.MM.DD')
  83. }
  84. }
  85. },
  86. data () {
  87. return {
  88. pupData:{
  89. show:false,
  90. content:'',//弹窗html字符串
  91. }
  92. }
  93. },
  94. onShow() {
  95. this.$store.dispatch('getUserInfo')
  96. },
  97. methods: {
  98. async handleGoApplyPermission(){
  99. const res=await apiLastApplyRecord({source:1})
  100. if(res.code===200){
  101. if(!res.data){
  102. // 流失客户主动申请一次
  103. if(this.userInfo.status=='流失'){
  104. apiApplyPermission({
  105. company_name:this.userInfo.company_name,
  106. real_name:this.userInfo.real_name,
  107. source:1,
  108. from_page:'我的'
  109. }).then(res=>{
  110. if(res.code===200){
  111. console.log('主动申请成功');
  112. this.pupData.show=true
  113. this.pupData.content=`<p>申请已提交</p><p>请等待销售人员与您联系</p>`
  114. }
  115. })
  116. return
  117. }
  118. uni.navigateTo({
  119. url:"/pages-applyPermission/applyPermission?source=1&from_page=我的"
  120. })
  121. }else{
  122. this.pupData.show=true
  123. this.pupData.content=`<p>您已提交过申请,请耐心等待</p>`
  124. // uni.navigateTo({
  125. // url:"/pages-applyPermission/applyResult"
  126. // })
  127. }
  128. }
  129. },
  130. handleToUserPermission(){
  131. if(this.userInfo.permission_list.length==0) return
  132. uni.navigateTo({ url: '/pages-user/permissionList' })
  133. },
  134. handleContact(){
  135. apiApplyPermission({
  136. company_name:this.userInfo.company_name,
  137. real_name:this.userInfo.real_name,
  138. source:1,
  139. from_page:'我的'
  140. }).then(res=>{
  141. if(res.code===200){
  142. console.log('主动申请成功');
  143. }
  144. })
  145. uni.makePhoneCall({
  146. phoneNumber: this.userInfo.seal_mobile
  147. });
  148. }
  149. }
  150. }
  151. </script>
  152. <style lang="scss">
  153. .user-page{
  154. min-height: calc(100vh - calc(50px + constant(safe-area-inset-bottom)));
  155. min-height: calc(100vh - calc(50px + env(safe-area-inset-bottom)));
  156. background-color: #EDEDED;
  157. }
  158. .top-box{
  159. height: 392rpx;
  160. background-color: #fff;
  161. padding: 98rpx 50rpx 0 50rpx;
  162. .avatar{
  163. width: 154rpx;
  164. height: 154rpx;
  165. border-radius: 50%;
  166. overflow: hidden;
  167. margin-right: 40rpx;
  168. }
  169. .user-name{
  170. font-size: 24px;
  171. font-weight: bold;
  172. color: #060606;
  173. }
  174. .tel{
  175. margin-top: 26rpx;
  176. color: #999;
  177. }
  178. .company{
  179. margin-top: 50rpx;
  180. image{
  181. width: 32rpx;
  182. height: 32rpx;
  183. margin-right: 8rpx;
  184. }
  185. color:#DBA665;
  186. }
  187. }
  188. .content{
  189. background-color: #fff;
  190. margin-top: 12rpx;
  191. padding: 0 34rpx;
  192. .item-card{
  193. position: relative;
  194. padding: 30rpx 0;
  195. border-bottom: 1px solid $global-border-color;
  196. image{
  197. width: 36rpx;
  198. height: 36rpx;
  199. }
  200. .label{
  201. font-weight: bold;
  202. margin-left: 20rpx;
  203. }
  204. .apply-btn{
  205. position: absolute;
  206. top: 50%;
  207. right: 0;
  208. transform: translateY(-50%);
  209. height: 50rpx;
  210. width: 156rpx;
  211. }
  212. .right-text{
  213. position: absolute;
  214. top: 50%;
  215. right: 0;
  216. transform: translateY(-50%);
  217. color: #666666;
  218. }
  219. .look{
  220. width: 100rpx;
  221. height: 100rpx;
  222. text-align: right;
  223. line-height: 100rpx;
  224. }
  225. }
  226. .item-card:last-child{
  227. border: none;
  228. }
  229. }
  230. </style>