index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683
  1. <template>
  2. <view class="content">
  3. <!-- 自定义导航 -->
  4. <view class="zdyNavBox">
  5. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  6. <view class="zdyNav">
  7. <view class="zdyNavLeft">
  8. <image src="../../static/img/nav_icon_back.png" mode="aspectFit" class="backImg" @click="goback">
  9. </image>
  10. </view>
  11. <view class="zdyNavTitle">网约车优享</view>
  12. <view style="width: 50px;"></view>
  13. </view>
  14. </view>
  15. <view class="status_bar" :style="{height: iStatusBarHeight + 'px'}"></view>
  16. <view style="height: 44px;"></view>
  17. <view class="top">
  18. <view class="topLeft">
  19. <view class="topMs">网约车优享认证入口</view>
  20. <image src="../../static/img/icon_arrow@2x.png" mode="" class="topImg"></image>
  21. </view>
  22. <view class="topRzBtn" @click="rzBtn">去认证</view>
  23. </view>
  24. <view class="searchBox">
  25. <view class="searchView">
  26. <image src="../../static/img/icon_search.png" class="searchImg"></image>
  27. <input type="text" class="searchInput" v-model="name" @confirm="search" placeholder="请输入电话、姓名搜索"/>
  28. </view>
  29. </view>
  30. <view class="listBox">
  31. <view class="line" v-for="(item,index) in items">
  32. <view class="lineZt lineState1" v-if="item.applyState==1">未审</view>
  33. <view class="lineZt lineState2" v-if="item.applyState==2">通过</view>
  34. <view class="lineZt lineState3" v-if="item.applyState==0">退回</view>
  35. <view class="lineName">
  36. <view >
  37. <view class="lineNameBox">
  38. <span>{{item.customerName}}</span> <span style="padding-left: 10rpx;">{{item.mobilePhone}}</span>
  39. </view>
  40. <view class="plateNumberBox">
  41. <span>{{item.plateNumber}}</span>
  42. <span style="padding-left: 10rpx;" v-if="item.carmodelType==1">丰田网约车</span>
  43. <span style="padding-left: 10rpx;" v-if="item.carmodelType==2">其他网约车</span>
  44. </view>
  45. </view>
  46. <view class="examine" v-if="item.applyState==1" @click="examine(2,item.id)">审核</view>
  47. </view>
  48. <view class="lineBottom">
  49. <view class="lineTime"> {{item.createTime}} </view>
  50. <view class="lineBottomBtnBox">
  51. <view class="returnBtn" v-if="item.applyState==1" @click="examine(0,item.id)">退回</view>
  52. <view class="seeBtn" @click="seeImg(item.imgs)">查看凭证</view>
  53. </view>
  54. </view>
  55. </view>
  56. </view>
  57. <!-- <view class="carBox" @click="goapply">
  58. <image src="../../static/img/wyc.png" mode="" class="wycImg"></image>
  59. <view class="carMs">网约车优享申请</view>
  60. </view>
  61. -->
  62. <!-- 认证 -->
  63. <view class="authentication" @click="rzHide()" v-if="rzShow">
  64. <view class="rzBox" @click.stop="">
  65. <view class="rzTitle">认证</view>
  66. <view class="wxsm">微信扫码填写认证信息</view>
  67. <view class="wxImgBox">
  68. <!-- <canvas canvas-id="qrcode" style="width: 437rpx;height: 437rpx;" /> -->
  69. <canvas canvas-id="qrcode" :style="{width: `${qrcodeSize}px`, height: `${qrcodeSize}px`}" />
  70. </view>
  71. <view class="rzBottom">
  72. <view class="tzBottomBtn" @click="rzHide()">关闭</view>
  73. </view>
  74. </view>
  75. </view>
  76. <!-- <canvas canvas-id="qrcode" :style="{width: `${qrcodeSize}px`, height: `${qrcodeSize}px`}" /> -->
  77. </view>
  78. </template>
  79. <script>
  80. import uQRCode from '@/utils/uqrcode.js'
  81. export default {
  82. data() {
  83. return {
  84. iStatusBarHeight:'',
  85. rzShow:false,
  86. page:1,
  87. name:'',
  88. items:'',
  89. shopID:'86B933FF-3782-4F82-A192-176E7A45AA13',
  90. shopName:'fzh123',
  91. sourceUserID:'00958045-3341-4AF7-9460-801F5B52E3E2',
  92. sourceName:'姜国远',
  93. qrcodeSrc: '',
  94. qrcodeSize:250,
  95. qrcodeText: '',
  96. url:'',
  97. token:'',
  98. uid:'',
  99. }
  100. },
  101. onLoad(opt) {
  102. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  103. this.getList();
  104. console.log(opt)
  105. this.token=opt.token;
  106. this.uid=opt.uid
  107. },
  108. created() {
  109. },
  110. methods: {
  111. make() {
  112. uni.showLoading({
  113. title: '二维码生成中',
  114. mask: true
  115. })
  116. this.qrcodeText=this.url+'/#/pages/wyCar/apply'+'?shopID='+this.shopID+'&shopName='+this.shopName+'&sourceUserID='+this.sourceUserID+'&sourceName='+this.sourceName+'&token='+this.token+'&uid='+this.uid+'&v='+Date.now()
  117. this.qrcodeText=encodeURI(this.qrcodeText)
  118. console.log(this.qrcodeText)
  119. uQRCode.make({
  120. canvasId: 'qrcode',
  121. text: this.qrcodeText,
  122. size: this.qrcodeSize,
  123. margin: 10,
  124. success: res => {
  125. this.qrcodeSrc = res
  126. //console.log('qrcodeSrc = ' + this.qrcodeSrc);
  127. },
  128. complete: () => {
  129. uni.hideLoading()
  130. }
  131. })
  132. },
  133. seeImg(imgs){
  134. if(imgs){
  135. var arr=imgs.split(',')
  136. uni.previewImage({
  137. urls: arr,
  138. longPressActions: {
  139. itemList: ['发送给朋友', '保存图片',],
  140. success: function(data) {},
  141. fail: function(err) {}
  142. }
  143. });
  144. }else{
  145. uni.showToast({
  146. title: '暂无凭证',
  147. icon: 'none',
  148. duration: 3000
  149. });
  150. }
  151. },
  152. examine(num,sheetId){
  153. var that = this;
  154. if(num==2){
  155. var content='确认审核通过?'
  156. }else{
  157. var content='确认退回?'
  158. }
  159. uni.showModal({
  160. title: '提示',
  161. content: content,
  162. success: function(res) {
  163. if (res.confirm) {
  164. uni.showLoading({
  165. title: '加载中'
  166. });
  167. that.$http('api/online-apply/state', {
  168. sheetId: sheetId,
  169. state: num
  170. }, 'POST').then(res => {
  171. uni.showToast({
  172. title: '操作成功',
  173. icon: 'none',
  174. duration: 3000
  175. });
  176. that.page = 1;
  177. that.getList()
  178. })
  179. } else if (res.cancel) {
  180. }
  181. }
  182. });
  183. },
  184. search(){
  185. this.page = 1
  186. this.getList()
  187. },
  188. getList(){
  189. uni.showLoading({
  190. title: '加载中'
  191. });
  192. this.isload = false;
  193. this.$http('api/online-apply/data', {
  194. input:this.name,
  195. page:this.page,
  196. limit:20,
  197. }, 'GET').then(res => {
  198. uni.hideLoading();
  199. this.isload = true;
  200. var list = res.data.data.Items;
  201. this.shopID=res.data.data.shopID;
  202. this.shopName=res.data.data.shopName;
  203. this.sourceName=res.data.data.sourceName;
  204. this.sourceUserID=res.data.data.sourceUserID
  205. this.url=res.data.data.url
  206. if (this.page == 1) {
  207. this.items = list
  208. } else {
  209. this.items = this.items.concat(list)
  210. }
  211. })
  212. },
  213. goapply(){
  214. uni.navigateTo({
  215. url:'/pages/wyCar/apply?shopID='+this.shopID+'&shopName='+this.shopName+'&sourceUserID='+this.sourceUserID+'&sourceName='+this.sourceName+'&token='+this.token+'&uid='+this.uid
  216. })
  217. },
  218. rzHide(){
  219. this.rzShow=false;
  220. },
  221. rzBtn(){
  222. this.rzShow=true;
  223. this.make();
  224. },
  225. goback(){
  226. //app交互
  227. var standalone = window.navigator.standalone
  228. var userAgent = window.navigator.userAgent.toLowerCase()
  229. var safari = /safari/.test(userAgent)
  230. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  231. var android = /android/.test(userAgent)
  232. if (ios) {
  233. if ( true) {//!standalone&& !safari
  234. window.webkit.messageHandlers.goMyNav.postMessage(null)
  235. }
  236. } else if (android) {
  237. window.android.postMessage()
  238. }
  239. },
  240. },
  241. onPullDownRefresh() {
  242. this.page = 1;
  243. this.getList()
  244. setTimeout(function() {
  245. uni.stopPullDownRefresh();
  246. }, 1000);
  247. }
  248. }
  249. </script>
  250. <style scoped>
  251. .authentication{
  252. width: 100vw;height: 100vh;
  253. background: rgba(0,0,0,0.6);
  254. position: fixed;
  255. left: 0;
  256. bottom: 0;
  257. }
  258. .tzBottomBtn{
  259. width: 682rpx;color: #FEFFFE;font-weight: 500;
  260. height: 74rpx;font-size: 28rpx;line-height:74rpx ;
  261. background: #3F90F7;text-align: center;
  262. border-radius: 37rpx;margin-top: 13rpx;
  263. }
  264. .rzBottom{
  265. background: #FFFFFF;
  266. box-shadow: 0rpx -2rpx 20rpx 0rpx rgba(153,153,153,0.2);
  267. height: 100rpx;
  268. width: 100vw;
  269. position: fixed;
  270. left: 0;
  271. bottom: 0;
  272. display: flex;
  273. justify-content: center;
  274. }
  275. .wxsm{
  276. font-weight: 400;font-size: 28rpx;padding-top: 80rpx;
  277. color: #3C3C3C;text-align: center;
  278. }
  279. .wxImgBox{
  280. width: 250px;
  281. height: 250px;
  282. background: #EDEDED;
  283. margin: 0 auto;
  284. margin-top: 30rpx;
  285. }
  286. .rzBox{
  287. width: 100vw;
  288. height: 70vh;
  289. background: #FFFFFF;
  290. margin-top: 30vh;
  291. border-radius: 32rpx 32rpx 0rpx 0rpx;
  292. }
  293. .rzTitle{
  294. font-weight: 600;font-size: 30rpx;padding-left: 24rpx;
  295. color: #3C3C3C;padding-top: 30rpx;
  296. }
  297. .carBox{
  298. position: fixed;left: 50rpx;bottom: 200rpx;text-align: center;
  299. }
  300. .wycImg{
  301. width: 68rpx;height: 68rpx;
  302. }
  303. .carMs{
  304. font-weight: 500;
  305. color: #333333;
  306. line-height: 33rpx;
  307. width: 104rpx;
  308. font-size: 24rpx;
  309. }
  310. .listBox{
  311. padding:0 24rpx;
  312. }
  313. .lineState2{
  314. background: #00A040;
  315. }
  316. .lineState3{
  317. background: #FF3B30;
  318. }
  319. .lineBottom{
  320. display: flex;justify-content: space-between;
  321. padding:16rpx 20rpx ;
  322. }
  323. .lineBottomBtnBox{
  324. display: flex;
  325. }
  326. .lineTime{
  327. color: #999999;
  328. font-size: 24rpx;
  329. line-height: 50rpx;
  330. }
  331. .returnBtn{
  332. width: 96rpx;color: #FF8130;
  333. height: 48rpx;text-align: center;line-height: 48rpx;
  334. border-radius: 6rpx;
  335. border: 1rpx solid #FF8130;
  336. }
  337. .seeBtn{
  338. width: 136rpx;font-size: 24rpx;
  339. height: 48rpx;line-height: 48rpx;
  340. border-radius: 6rpx;text-align: center;
  341. border: 1rpx solid #DDDDDD;
  342. color: #3C3C3C;margin-left: 24rpx;
  343. }
  344. .lineName{
  345. display: flex;justify-content: space-between;
  346. padding: 10rpx 20rpx;
  347. border-bottom: 1px solid #EEEEEE;
  348. padding-bottom: 16rpx;
  349. }
  350. .lineNameBox{
  351. font-weight: 500;font-size: 30rpx;
  352. color: #3C3C3C;line-height: 42rpx;
  353. }
  354. .plateNumberBox{
  355. color: #666666;font-size: 24rpx;
  356. line-height: 33rpx;padding-top: 10rpx;
  357. }
  358. .examine{
  359. width: 96rpx;color: #FFFFFF;
  360. height: 56rpx;font-size: 24rpx;
  361. background: #3F90F7;
  362. border-radius: 6rpx;
  363. line-height: 56rpx;
  364. text-align: center;
  365. margin-top: 18rpx;
  366. }
  367. .line{
  368. background: #FFFFFF;
  369. border-radius: 6rpx;
  370. margin-top: 20rpx;
  371. }
  372. .lineZt{
  373. width: 69rpx;line-height: 32rpx;
  374. height: 32rpx;font-size: 22rpx;
  375. text-align: center;color: #FFFFFF;
  376. border-radius: 10rpx 0rpx 10rpx 0rpx;
  377. }
  378. .lineState1{
  379. background: #FF8130;
  380. }
  381. .top{
  382. width: 750rpx;
  383. height: 72rpx;
  384. background: #FF8130;
  385. display: flex;
  386. justify-content: space-between;
  387. }
  388. .topLeft{
  389. font-size: 26rpx;
  390. display: flex;padding-left: 35rpx;padding-top: 17rpx;color: #FFFFFF;
  391. }
  392. .topImg{
  393. width: 24rpx;height: 24rpx;margin-left: 8rpx;margin-top: 8rpx;
  394. }
  395. .topRzBtn{
  396. width: 110rpx;font-size: 26rpx;
  397. height: 52rpx;line-height: 52rpx;text-align: center;
  398. background: #FFFFFF;
  399. border-radius: 6rpx;
  400. color: #FF8130;
  401. margin-top: 12rpx;
  402. margin-right: 24rpx;
  403. }
  404. .searchBox{
  405. background: #FFFFFF;
  406. padding: 24rpx;
  407. }
  408. .searchView{
  409. width: 702rpx;
  410. height: 36rpx;
  411. background: #F4F5F7;
  412. border-radius: 36rpx;
  413. display: flex;
  414. padding: 18rpx 0;
  415. }
  416. .searchImg{
  417. width: 36rpx;height: 36rpx;margin-left: 24rpx;
  418. }
  419. .searchInput{
  420. line-height: 36rpx;height: 36rpx;font-size: 26rpx;
  421. padding-left: 16rpx;
  422. }
  423. .content{
  424. min-height: 100vh;
  425. background: #F6F6F6;
  426. }
  427. .zdyNavBox {
  428. width: 100vw;
  429. background: #FFFFFF;
  430. position: fixed;
  431. top: 0;
  432. left: 0;
  433. z-index: 99;
  434. }
  435. .zdyNav {
  436. height: 44px;
  437. display: flex;
  438. justify-content: space-between;
  439. align-items: center;
  440. }
  441. .backImg {
  442. width: 44rpx;
  443. height: 44rpx;
  444. margin-left: 10rpx;
  445. margin-right: 20rpx;
  446. }
  447. .homeImg {
  448. width: 44rpx;
  449. height: 44rpx;
  450. }
  451. .zdyNavLeft {
  452. display: flex;
  453. align-items: center;
  454. }
  455. .zdyNavTitle {
  456. height: 44px;
  457. background: #FFFFFF;
  458. text-align: center;
  459. font-size: 34rpx;
  460. line-height: 44px;
  461. }
  462. .tab {
  463. background: #FFFFFF;
  464. display: flex;
  465. justify-content: space-between;
  466. line-height: 92rpx;
  467. /* position: fixed; */
  468. width: calc(100vw - 100rpx);
  469. padding-left: 50rpx;
  470. padding-right: 50rpx;
  471. height: 92rpx;
  472. z-index: 11;
  473. border-top: 1px solid #EEEEEE;
  474. }
  475. .tabLine {
  476. font-size: 28rpx;
  477. color: #333333;
  478. text-align: center;
  479. }
  480. .tabActive {
  481. color: #FF0000;
  482. font-weight: bold;
  483. border-bottom: 4rpx solid #FF0000;
  484. }
  485. .main {
  486. padding-top: 260rpx;
  487. padding-bottom: 20rpx;
  488. background-color: #F4F5F7;
  489. }
  490. .itemBg {
  491. margin: 20rpx 24rpx;
  492. background-color: #FFFFFF;
  493. border-radius: 10rpx;
  494. padding: 20rpx;
  495. }
  496. .itemTop {
  497. display: flex;
  498. justify-content: space-between;
  499. }
  500. .itemType {
  501. color: #999999;
  502. font-size: 24rpx;
  503. }
  504. .itemSheetState {
  505. font-size: 24rpx;
  506. color: #999999
  507. }
  508. .redColor {
  509. color: #FF0000;
  510. }
  511. .orangeColor {
  512. color: #F19D01;
  513. }
  514. .greenColor {
  515. color: #00A040;
  516. }
  517. .itemShopBg {
  518. display: flex;
  519. justify-content: space-between;
  520. margin-top: 20rpx;
  521. }
  522. .shopName {
  523. color: #333333;
  524. font-size: 30rpx;
  525. font-weight: bold;
  526. /* 隐藏文字显示 ...不换行 */
  527. overflow: hidden;
  528. text-overflow: ellipsis;
  529. white-space: nowrap;
  530. }
  531. .price {
  532. color: #333333;
  533. font-weight: bold;
  534. font-size: 32rpx;
  535. }
  536. .itemName {
  537. color: #666666;
  538. font-size: 24rpx;
  539. padding-top: 16rpx;
  540. height: 30rpx;
  541. overflow: hidden;
  542. text-overflow: ellipsis;
  543. white-space: nowrap;
  544. }
  545. .plateBg {
  546. display: flex;
  547. justify-content: space-between;
  548. align-items: center;
  549. }
  550. .plateNumber {
  551. color: #666666;
  552. font-size: 24rpx;
  553. margin-bottom: 20rpx;
  554. display: flex;
  555. }
  556. .itemLineBottom {
  557. display: flex;
  558. justify-content: flex-end;
  559. }
  560. .itemBtn1 {
  561. width: 150rpx;
  562. height: 56rpx;
  563. border-radius: 36rpx;
  564. border: 2rpx solid #DDDDDD;
  565. text-align: center;
  566. line-height: 56rpx;
  567. font-size: 28rpx;
  568. color: #3C3C3C;
  569. margin-left: 40rpx;
  570. }
  571. .itemBtn2 {
  572. width: 150rpx;
  573. height: 56rpx;
  574. border-radius: 36rpx;
  575. border: 2rpx solid #FF4F00;
  576. text-align: center;
  577. line-height: 56rpx;
  578. font-size: 28rpx;
  579. color: #FF4F00;
  580. margin-left: 40rpx;
  581. }
  582. .orderState {
  583. color: #F19D01;
  584. font-size: 24rpx;
  585. padding-left: 20rpx;
  586. }
  587. .renBox{
  588. color: #1A1A1A;
  589. background: #F7F7F7;
  590. border-radius: 10rpx;
  591. display: flex;
  592. padding: 20rpx;font-size: 24rpx;
  593. line-height: 30rpx;
  594. margin-top: 16rpx;
  595. }
  596. .renimg{
  597. width: 30rpx;height: 30rpx;
  598. }
  599. .renMobilePhone{
  600. padding-left: 13rpx;
  601. }
  602. .itemaddress{
  603. font-size: 24rpx;display: flex;
  604. color: #3C3C3C;padding-top: 16rpx;
  605. line-height: 33rpx;
  606. }
  607. .addressDD{
  608. width: 10rpx;
  609. height: 10rpx;
  610. background: #FF0000;
  611. border-radius: 50%;
  612. margin-top: 10rpx;
  613. margin-right: 5rpx;
  614. }
  615. .sschahao{
  616. width: 40rpx;
  617. height: 40rpx;
  618. padding-top: 16rpx;
  619. }
  620. </style>