myWebsit.vue 10.0 KB

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