myWebsit.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423
  1. <template>
  2. <view style="width: 100%; height: 100vh; background: rgb(247, 248, 255)">
  3. <zj-page-container>
  4. <view class="toubuyangs">
  5. <view class="toubuyangsTab">
  6. <view class="toubuyangsTabItem" @click="tabQiehuan(0)">
  7. <view>未入驻</view>
  8. <view :class="{ hengxian: true, xuanzhong: tab == 0 }"> </view>
  9. </view>
  10. <view class="toubuyangsTabItem" @click="tabQiehuan(1)">
  11. <view>待审核{{ websitCount.dsh ? ` (${websitCount.dsh})` : '' }}</view>
  12. <view :class="{ hengxian: true, xuanzhong: tab == 1 }"></view>
  13. </view>
  14. <view class="toubuyangsTabItem" @click="tabQiehuan(2)">
  15. <view>已入驻{{ websitCount.yrz ? ` (${websitCount.yrz})` : '' }}</view>
  16. <view :class="{ hengxian: true, xuanzhong: tab == 2 }"></view>
  17. </view>
  18. </view>
  19. <view class="search-container">
  20. <u-search
  21. shape="round"
  22. :showAction="false"
  23. placeholder="输入网点名称搜索"
  24. v-model="keyword"
  25. @search="getList"
  26. >
  27. </u-search>
  28. </view>
  29. </view>
  30. <zj-page-fill>
  31. <zj-page-layout
  32. :isScroll="true"
  33. :refresherTriggered="refresherTriggered"
  34. @refresherrefresh="refresherrefresh"
  35. @scrolltolower="scrolltolower"
  36. >
  37. <view class="list-container" v-if="dataList.length > 0">
  38. <view class="mode" @click="navToPage(item)" v-for="(item, index) in dataList" :key="index">
  39. <view class="flex_asb order">
  40. <view class="title"></view>
  41. <view class="status">{{
  42. item.examineStatus == 'WAIT_WORKER'
  43. ? '待师傅购买'
  44. : item.examineStatus == 'POLICY_WAIT'
  45. ? '保险待审核'
  46. : item.examineStatus == 'OK'
  47. ? '状态正常'
  48. : item.examineStatus == 'FAIL'
  49. ? '已驳回'
  50. : item.examineStatus == 'EXPIRED'
  51. ? '证件快过期'
  52. : item.examineStatus == 'OVERDUE'
  53. ? '证件已过期'
  54. : item.examineStatus == 'STOP'
  55. ? '已经离职'
  56. : item.examineStatus == 'QUIT'
  57. ? '已经离职'
  58. : item.examineStatus == 'WAIT'
  59. ? '入驻申请待审核'
  60. : ''
  61. }}</view>
  62. </view>
  63. <view class="flex_asb" style="align-items: flex-start">
  64. <image class="img" src="/static/mine/workerEnter/order.png" mode="aspectFill"></image>
  65. <view class="content flex1">
  66. <view class="flex_asb">
  67. <view class="title">({{ item.websitId }}){{ item.name }}</view>
  68. </view>
  69. <view class="flex">
  70. <view class="hui">地址</view>
  71. <view class="text">{{ item.address || '无' }}</view>
  72. </view>
  73. <view class="flex_end">
  74. <u-button
  75. v-if="item.examineStatus == 'N' || item.examineStatus == 'FAIL'"
  76. style="width: 160rpx; height: 60rpx; margin: 0"
  77. shape="circle"
  78. type="primary"
  79. text="入驻"
  80. @tap="goEnter(item)"
  81. ></u-button>
  82. </view>
  83. </view>
  84. </view>
  85. </view>
  86. </view>
  87. <Loading :loadStatus="loadStatus" :dataList="dataList" />
  88. <zjDialogPicker
  89. ref="websitDialog"
  90. :isShow="isShowWebsitDialog"
  91. :multiple="false"
  92. :styleType="2"
  93. :title="'选择对应网点购买保险'"
  94. :list="baoxiandangqianxianxitishi"
  95. :keyName="'websitName'"
  96. @cancel="isShowWebsitDialog = false"
  97. @confirm="confirmWebsitDialog"
  98. >
  99. </zjDialogPicker>
  100. </zj-page-layout>
  101. </zj-page-fill>
  102. <view class="quanjuanniu" v-if="!!baoxiandangqianxianxitishi.length">
  103. <u-button text="去购买" shape="circle" type="primary" @click="isShowWebsitDialog = true"> </u-button>
  104. </view>
  105. </zj-page-container>
  106. </view>
  107. </template>
  108. <script>
  109. import zjPageContainer from '@/components/zj-page-container/zj-page-container.vue'
  110. import zjPageFill from '@/components/zj-page-container/zj-page-fill.vue'
  111. import { getStorage } from '@/common/utils/storage.js'
  112. import zjDialogPicker from '@/components/zj-dialog/zj-dialog-picker.vue'
  113. export default {
  114. components: {
  115. zjPageContainer,
  116. zjPageFill,
  117. zjDialogPicker
  118. },
  119. data() {
  120. return {
  121. tab: 0,
  122. dataList: [],
  123. refresherTriggered: false,
  124. loadStatus: 0,
  125. keyword: '',
  126. baoxiandangqianxianxitishi: [],
  127. isShowWebsitDialog: false,
  128. websitCount: {}
  129. }
  130. },
  131. onShow() {
  132. this.refreshLish()
  133. this.$api.get('/user/apply/websitCount').then(res => {
  134. this.websitCount = res.data
  135. })
  136. },
  137. computed: {
  138. userInfo() {
  139. return getStorage('user')
  140. }
  141. },
  142. methods: {
  143. confirmWebsitDialog(e) {
  144. this.isShowWebsitDialog = false
  145. this.$navToPage({
  146. url:
  147. '/packageEnter/pages/insurance/myInsuranceBuy/index?websitId=' +
  148. this?.baoxiandangqianxianxitishi?.[e[0]]?.websitId
  149. })
  150. },
  151. async getList() {
  152. this.loadStatus = 1
  153. var { latitude, longitude } = await this.$getLocation()
  154. this.$api
  155. .get('/user/apply/websit', {
  156. lat: latitude,
  157. lng: longitude,
  158. ...(() => {
  159. if (this.tab > 0) {
  160. return {
  161. examineStatus: [
  162. ['WAIT', 'WAIT_WORKER', 'POLICY_WAIT', 'EXPIRED', 'EXPIRED', 'STOP', 'QUIT', 'FAIL'],
  163. ['OK']
  164. ][this.tab - 1]
  165. }
  166. } else {
  167. return {
  168. isAll: true
  169. }
  170. }
  171. })(),
  172. ...(() => {
  173. if (!!this.keyword) {
  174. return {
  175. websitName: this.keyword
  176. }
  177. } else if (this.tab != 2) {
  178. return {
  179. rice: 50000
  180. }
  181. } else {
  182. return {}
  183. }
  184. })()
  185. })
  186. .then(res => {
  187. this.$api.get('/user/apply/websitCount').then(res2 => {
  188. this.websitCount = res2.data
  189. })
  190. this.loadStatus = 2
  191. this.refresherTriggered = false
  192. this.dataList = res.data
  193. })
  194. },
  195. navToPage(url) {
  196. this.$navToPage({
  197. url
  198. })
  199. },
  200. // 触发下拉刷新
  201. refresherrefresh(e) {
  202. this.refresherTriggered = true
  203. this.refreshLish()
  204. },
  205. refreshLish() {
  206. this.dataList = []
  207. this.getList()
  208. },
  209. goEnter(item) {
  210. this.$navToPage({
  211. url: '/packageMine/pages/workerEnter?websitName=' + item.name + '&websitId=' + item.websitId
  212. })
  213. },
  214. tabQiehuan(index) {
  215. this.tab = index
  216. this.dataList = []
  217. this.getList()
  218. },
  219. // 滚动到底部
  220. scrolltolower(e) {},
  221. // 触发下拉刷新
  222. async refresherrefresh(e) {
  223. this.refresherTriggered = true
  224. this.dataList = []
  225. this.getList()
  226. }
  227. }
  228. }
  229. </script>
  230. <style lang="scss" scoped>
  231. .search-container {
  232. background: #ffffff;
  233. padding: 20rpx;
  234. ::v-deep .u-search {
  235. height: 60rpx;
  236. input {
  237. background: #f7f8ff !important;
  238. }
  239. .u-search__content {
  240. background: #f7f8ff !important;
  241. height: 60rpx;
  242. }
  243. }
  244. }
  245. .quanjuanniu {
  246. width: 100%;
  247. height: auto;
  248. padding: 30rpx;
  249. box-sizing: border-box;
  250. }
  251. .neirongquyu {
  252. width: 100%;
  253. height: auto;
  254. padding: 30rpx 30rpx 15rpx 30rpx;
  255. box-sizing: border-box;
  256. .zhegeshineirong {
  257. width: 100%;
  258. height: auto;
  259. padding: 30rpx;
  260. box-sizing: border-box;
  261. background: #fff;
  262. border-radius: 20rpx;
  263. margin-bottom: 30rpx;
  264. .neirongbiaot {
  265. width: 100%;
  266. height: auto;
  267. display: flex;
  268. align-items: center;
  269. justify-content: space-between;
  270. box-sizing: border-box;
  271. margin-bottom: 40rpx;
  272. text {
  273. font-size: 32rpx;
  274. font-weight: 700;
  275. }
  276. }
  277. .neironglieju {
  278. width: 100%;
  279. height: auto;
  280. display: flex;
  281. align-items: center;
  282. justify-content: flex-start;
  283. box-sizing: border-box;
  284. margin-bottom: 30rpx;
  285. text {
  286. font-size: 28rpx;
  287. }
  288. }
  289. .neironghengxin {
  290. width: 100%;
  291. border-bottom: 1rpx solid #aaa;
  292. margin-bottom: 30rpx;
  293. }
  294. .neironganniuqu {
  295. widows: 100%;
  296. text-align: right;
  297. }
  298. }
  299. }
  300. .toubuyangs {
  301. width: 100%;
  302. height: auto;
  303. box-sizing: border-box;
  304. padding: 30rpx 30rpx 15rpx 30rpx;
  305. .toubuyangsTab {
  306. width: 100%;
  307. height: auto;
  308. padding: 30rpx;
  309. box-sizing: border-box;
  310. background: #fff;
  311. border-radius: 20rpx;
  312. display: flex;
  313. align-items: center;
  314. justify-content: space-around;
  315. .toubuyangsTabItem {
  316. box-sizing: border-box;
  317. font-size: 32rpx;
  318. display: flex;
  319. align-items: center;
  320. justify-content: center;
  321. flex-direction: column;
  322. .hengxian {
  323. margin-top: 20rpx;
  324. width: 100rpx;
  325. }
  326. .xuanzhong {
  327. border-bottom: 4rpx solid #000;
  328. }
  329. }
  330. }
  331. }
  332. .flex {
  333. display: flex;
  334. align-items: center;
  335. }
  336. .flex_asb {
  337. display: flex;
  338. justify-content: space-between;
  339. align-items: center;
  340. }
  341. .flex_end {
  342. display: flex;
  343. align-items: center;
  344. justify-content: flex-end;
  345. margin-top: 30rpx;
  346. }
  347. .flex1 {
  348. flex: 1;
  349. }
  350. .list-container {
  351. box-sizing: border-box;
  352. padding: 0 30rpx;
  353. }
  354. .mode {
  355. @include zj-card;
  356. padding: 30rpx 20rpx;
  357. margin-top: 30rpx;
  358. border-radius: 20rpx;
  359. box-sizing: border-box;
  360. background-color: #ffffff;
  361. .order {
  362. margin-bottom: 20rpx;
  363. }
  364. .content {
  365. width: 450rpx;
  366. .title {
  367. font-weight: bold;
  368. font-size: 30rpx;
  369. }
  370. .text,
  371. .hui {
  372. font-size: 28rpx;
  373. margin-top: 16rpx;
  374. }
  375. .hui {
  376. color: #999999;
  377. margin-right: 20rpx;
  378. }
  379. }
  380. .status {
  381. font-size: 28rpx;
  382. color: #0379ff;
  383. }
  384. .zhihui {
  385. .text,
  386. .hui,
  387. .title,
  388. .status {
  389. color: #999999 !important;
  390. }
  391. }
  392. .img {
  393. width: 100rpx;
  394. height: 100rpx;
  395. margin-right: 30rpx;
  396. }
  397. }
  398. .search-container {
  399. background: #ffffff;
  400. padding: 20rpx;
  401. ::v-deep .u-search {
  402. height: 60rpx;
  403. input {
  404. background: #f7f8ff !important;
  405. }
  406. .u-search__content {
  407. background: #f7f8ff !important;
  408. height: 60rpx;
  409. }
  410. }
  411. }
  412. </style>