Header.vue 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305
  1. <script setup>
  2. import { useStore } from "vuex";
  3. import { computed, ref, watch } from "vue";
  4. import moment from "moment";
  5. import { useRouter } from "vue-router";
  6. const router = useRouter();
  7. const store = useStore();
  8. store.dispatch("getUserInfo"); //获取个人信息
  9. const userInfo = computed(() => store.state.userInfo);
  10. const lastTime = computed(() => {
  11. let timeArr = [];
  12. store.state.userInfo.permission_list &&
  13. store.state.userInfo.permission_list.forEach((item) => {
  14. item.permission_list.forEach((item2) => {
  15. timeArr.push(new Date(item2.end_date));
  16. });
  17. });
  18. let maxTime = Math.max(...timeArr);
  19. if (timeArr.length === 0) {
  20. return "";
  21. } else {
  22. return moment(maxTime).format("YYYY.MM.DD");
  23. }
  24. });
  25. import { apiGetPermissionList } from "@/api/common.js";
  26. let permissionList = ref([]);
  27. const getPermissionList = async () => {
  28. const res = await apiGetPermissionList();
  29. if (res.code === 200) {
  30. permissionList.value = res.data;
  31. }
  32. };
  33. getPermissionList();
  34. let permission_list_str = computed(() => {
  35. let hasArr = [];
  36. store.state.userInfo.permission_list &&
  37. store.state.userInfo.permission_list.forEach((item) => {
  38. item.permission_list.forEach((item2) => {
  39. hasArr.push(item2.name);
  40. });
  41. });
  42. let arr = permissionList.value.filter((item) => {
  43. if (hasArr.find((e) => e === item.permission_name)) return item;
  44. });
  45. let arr2 = arr.map((item) => item.name);
  46. return arr2.join("/");
  47. });
  48. //我的中点击去申请权限
  49. import { ElMessageBox, ElMessage } from "element-plus";
  50. import { apiLastApplyRecord } from "@/api/user";
  51. const handleGoApplyPermission = async () => {
  52. const res = await apiLastApplyRecord();
  53. if (res.code === 200) {
  54. if (res.data) {
  55. const htmlStr = `<p style="text-align:center;">您已提交过申请,请耐心等待</p>`;
  56. ElMessageBox({
  57. title: "申请提醒",
  58. message: htmlStr,
  59. center: true,
  60. dangerouslyUseHTMLString: true,
  61. confirmButtonText: "知道了",
  62. confirmButtonClass: "self-elmessage-confirm-btn",
  63. });
  64. } else {
  65. // 流失客户主动申请一次
  66. if (userInfo.value.status == "流失") {
  67. apiApplyPermission({
  68. company_name: userInfo.value.company_name,
  69. real_name: userInfo.value.real_name,
  70. source: 1,
  71. from_page: "我的",
  72. }).then((res) => {
  73. const htmlStr = `<p>申请已提交</p><p>请等待销售人员与您联系</p>`;
  74. ElMessageBox({
  75. title: "申请提醒",
  76. message: htmlStr,
  77. center: true,
  78. dangerouslyUseHTMLString: true,
  79. confirmButtonText: "知道了",
  80. confirmButtonClass: "self-elmessage-confirm-btn",
  81. });
  82. });
  83. return;
  84. }
  85. router.push({
  86. path: "/apply/permission",
  87. query: {
  88. source: 1,
  89. fromPage: "我的",
  90. },
  91. });
  92. }
  93. }
  94. };
  95. //我的中点击联系销售
  96. import { apiApplyPermission } from "@/api/user";
  97. const handleContact = async () => {
  98. const res = await apiApplyPermission({
  99. company_name: userInfo.value.company_name,
  100. real_name: userInfo.value.real_name,
  101. source: 1,
  102. from_page: "我的",
  103. });
  104. if (res.code === 200) {
  105. console.log("主动申请成功");
  106. }
  107. const htmlStr = `<p>请联系对口销售--${userInfo.value.seal_name}:${userInfo.value.seal_mobile}</p>`;
  108. ElMessageBox({
  109. title: "申请提醒",
  110. message: htmlStr,
  111. center: true,
  112. dangerouslyUseHTMLString: true,
  113. confirmButtonText: "知道了",
  114. confirmButtonClass: "self-elmessage-confirm-btn",
  115. });
  116. };
  117. // 全局返回按钮
  118. const goBack=()=>{
  119. if(window.history.state.back){
  120. console.log('返回上一页');
  121. router.go(-1)
  122. }else{
  123. console.log('返回首页');
  124. router.push({path:'/'})
  125. }
  126. }
  127. </script>
  128. <template>
  129. <div class="clear-float head-wrap">
  130. <div class="flex-col-center logo-box">
  131. <img src="@/assets/logo.png" alt="logo" class="logo" />
  132. <span>弘则研报</span>
  133. </div>
  134. <div class="flex-col-center userinfo-wrap">
  135. <el-popover :width="400" popper-style="box-shadow: rgb(14 18 22 / 35%) 0px 10px 38px -10px, rgb(14 18 22 / 20%) 0px 10px 20px -15px; padding: 20px;">
  136. <template #reference>
  137. <img class="icon-scan" src="@/assets/icon-scan.png" alt="" />
  138. </template>
  139. <template #default>
  140. <div class="flex" style="justify-content: space-between">
  141. <div style="flex: 1; text-align: center">
  142. <img style="width: 121px" src="@/assets/xcx-img.png" alt="" />
  143. <p>手机扫码<br />体验更多小程序功能</p>
  144. </div>
  145. <div style="flex: 1; text-align: center">
  146. <img style="width: 121px" src="@/assets/gzh-img.png" alt="" />
  147. <p>关注弘则研报公众号<br />及时获取活动和报告通知</p>
  148. </div>
  149. </div>
  150. </template>
  151. </el-popover>
  152. <el-popover :width="400" popper-style="box-shadow: rgb(14 18 22 / 35%) 0px 10px 38px -10px, rgb(14 18 22 / 20%) 0px 10px 20px -15px; padding: 20px;">
  153. <template #reference>
  154. <el-avatar shape="square" :size="40" :src="$store.state.globalImgUrls.defaultAvatar"></el-avatar>
  155. </template>
  156. <template #default>
  157. <div class="userinfo-box" v-if="userInfo">
  158. <div class="top">
  159. <el-avatar shape="square" :size="50" :src="$store.state.globalImgUrls.defaultAvatar"></el-avatar>
  160. <p style="font-size: 20px">{{ userInfo.real_name || "--" }}</p>
  161. <p>{{ userInfo.mobile || userInfo.email }}</p>
  162. </div>
  163. <div class="flex info-item">
  164. <div class="label">公司</div>
  165. <div class="con">{{ userInfo.company_name || "--" }}</div>
  166. </div>
  167. <div class="flex info-item">
  168. <div class="label">品种权限</div>
  169. <div class="con" v-if="userInfo.status == '冻结' || (userInfo.status == '试用' && userInfo.is_suspend == 1)">
  170. <span>暂无权限</span>
  171. <span class="btn" @click="handleContact">联系销售</span>
  172. </div>
  173. <div class="con" v-else-if="userInfo.permission_list.length == 0">
  174. <span>暂无权限</span>
  175. <span class="btn" @click="handleGoApplyPermission">立即申请</span>
  176. </div>
  177. <div class="con" v-else>{{ permission_list_str }}</div>
  178. </div>
  179. <div class="flex info-item">
  180. <div class="label">服务截至日期</div>
  181. <div class="con">{{ lastTime }}</div>
  182. </div>
  183. </div>
  184. </template>
  185. </el-popover>
  186. </div>
  187. <!-- 头部版心 -->
  188. <div class="head-main">
  189. <!-- 面包屑 -->
  190. <div class="flex-col-center left-breadcrumb-box">
  191. <img @click="goBack" class="back-icon" src="@/assets/icon-back.png" alt="" v-if="$route.meta.hasBack">
  192. <span class="breadcrumb-item">研报</span>
  193. </div>
  194. </div>
  195. </div>
  196. </template>
  197. <style lang="scss" scoped>
  198. .head-wrap {
  199. width: 100%;
  200. height: 100%;
  201. .logo-box {
  202. float: left;
  203. width: 140px;
  204. height: 100%;
  205. border-right: 1px solid #f2f2f2;
  206. .logo {
  207. width: 32px;
  208. height: 32px;
  209. margin-right: 10px;
  210. }
  211. span {
  212. font-size: 18px;
  213. font-weight: bold;
  214. }
  215. }
  216. .userinfo-wrap {
  217. float: right;
  218. width: 120px;
  219. height: 100%;
  220. .icon-scan {
  221. width: 26px;
  222. height: 26px;
  223. position: relative;
  224. margin-right: 20px;
  225. }
  226. }
  227. .head-main{
  228. width: calc(100% - 280px);
  229. height: 100%;
  230. margin-left: auto;
  231. margin-right: auto;
  232. .left-breadcrumb-box{
  233. float: left;
  234. margin-left: 20px;
  235. height: 100%;
  236. .back-icon{
  237. width: 30px;
  238. height: 30px;
  239. margin-right: 20px;
  240. cursor: pointer;
  241. }
  242. .breadcrumb-item{
  243. font-size: 14px;
  244. cursor: pointer;
  245. &::after{
  246. content: '/';
  247. display: inline-block;
  248. margin: 0 5px;
  249. }
  250. &:last-child::after{
  251. content: '';
  252. }
  253. }
  254. }
  255. }
  256. }
  257. .userinfo-box {
  258. .top {
  259. text-align: center;
  260. margin-bottom: 31px;
  261. p {
  262. margin: 0;
  263. }
  264. }
  265. .info-item {
  266. padding: 20px 26px 20px 20px;
  267. border-top: 1px solid #ebebeb;
  268. position: relative;
  269. .label {
  270. width: 90px;
  271. margin-right: 19px;
  272. flex-shrink: 0;
  273. }
  274. .con {
  275. .btn {
  276. width: 97px;
  277. height: 30px;
  278. border-radius: 8px;
  279. border: 1px solid #dab37c;
  280. font-size: 16px;
  281. color: #dab37c;
  282. display: inline-block;
  283. text-align: center;
  284. line-height: 30px;
  285. position: absolute;
  286. right: 0;
  287. top: 50%;
  288. transform: translateY(-50%);
  289. cursor: pointer;
  290. }
  291. }
  292. }
  293. }
  294. </style>