index.vue 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685
  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: 80vh;
  289. background: #FFFFFF;
  290. margin-top: 20vh;
  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. font-size: 24rpx;font-weight: 600;
  337. }
  338. .seeBtn{
  339. width: 136rpx;font-size: 24rpx;
  340. height: 48rpx;line-height: 48rpx;
  341. border-radius: 6rpx;text-align: center;
  342. border: 1rpx solid #DDDDDD;
  343. color: #3C3C3C;margin-left: 24rpx;
  344. }
  345. .lineName{
  346. display: flex;justify-content: space-between;
  347. padding: 10rpx 20rpx;
  348. border-bottom: 1px solid #EEEEEE;
  349. padding-bottom: 16rpx;
  350. }
  351. .lineNameBox{
  352. font-weight: 600;font-size: 30rpx;
  353. color: #3C3C3C;line-height: 42rpx;
  354. }
  355. .plateNumberBox{
  356. color: #666666;font-size: 24rpx;
  357. line-height: 33rpx;padding-top: 10rpx;
  358. }
  359. .examine{
  360. width: 96rpx;color: #FFFFFF;
  361. height: 56rpx;font-size: 24rpx;
  362. background: #3F90F7;
  363. border-radius: 6rpx;
  364. line-height: 56rpx;
  365. text-align: center;
  366. margin-top: 18rpx;
  367. }
  368. .line{
  369. background: #FFFFFF;
  370. border-radius: 6rpx;
  371. margin-top: 20rpx;
  372. }
  373. .lineZt{
  374. width: 69rpx;line-height: 32rpx;
  375. height: 32rpx;font-size: 22rpx;
  376. text-align: center;color: #FFFFFF;
  377. border-radius: 10rpx 0rpx 10rpx 0rpx;
  378. }
  379. .lineState1{
  380. background: #FF8130;
  381. }
  382. .top{
  383. width: 750rpx;
  384. height: 72rpx;
  385. background: #FF8130;
  386. display: flex;
  387. justify-content: space-between;
  388. }
  389. .topLeft{
  390. font-size: 26rpx;
  391. display: flex;padding-left: 35rpx;padding-top: 17rpx;color: #FFFFFF;
  392. line-height: 38rpx;
  393. }
  394. .topImg{
  395. width: 24rpx;height: 24rpx;margin-left: 8rpx;margin-top: 9rpx;
  396. }
  397. .topRzBtn{
  398. width: 110rpx;font-size: 26rpx;
  399. height: 52rpx;line-height: 52rpx;text-align: center;
  400. background: #FFFFFF;
  401. border-radius: 6rpx;
  402. color: #FF8130;
  403. margin-top: 12rpx;
  404. margin-right: 24rpx;
  405. }
  406. .searchBox{
  407. background: #FFFFFF;
  408. padding: 24rpx;
  409. }
  410. .searchView{
  411. width: 702rpx;
  412. height: 36rpx;
  413. background: #F4F5F7;
  414. border-radius: 36rpx;
  415. display: flex;
  416. padding: 18rpx 0;
  417. }
  418. .searchImg{
  419. width: 36rpx;height: 36rpx;margin-left: 24rpx;
  420. }
  421. .searchInput{
  422. line-height: 36rpx;height: 36rpx;font-size: 26rpx;
  423. padding-left: 16rpx;
  424. }
  425. .content{
  426. min-height: 100vh;
  427. background: #F6F6F6;
  428. }
  429. .zdyNavBox {
  430. width: 100vw;
  431. background: #FFFFFF;
  432. position: fixed;
  433. top: 0;
  434. left: 0;
  435. z-index: 99;
  436. }
  437. .zdyNav {
  438. height: 44px;
  439. display: flex;
  440. justify-content: space-between;
  441. align-items: center;
  442. }
  443. .backImg {
  444. width: 44rpx;
  445. height: 44rpx;
  446. margin-left: 10rpx;
  447. margin-right: 20rpx;
  448. }
  449. .homeImg {
  450. width: 44rpx;
  451. height: 44rpx;
  452. }
  453. .zdyNavLeft {
  454. display: flex;
  455. align-items: center;
  456. }
  457. .zdyNavTitle {
  458. height: 44px;
  459. background: #FFFFFF;
  460. text-align: center;
  461. font-size: 34rpx;
  462. line-height: 44px;
  463. }
  464. .tab {
  465. background: #FFFFFF;
  466. display: flex;
  467. justify-content: space-between;
  468. line-height: 92rpx;
  469. /* position: fixed; */
  470. width: calc(100vw - 100rpx);
  471. padding-left: 50rpx;
  472. padding-right: 50rpx;
  473. height: 92rpx;
  474. z-index: 11;
  475. border-top: 1px solid #EEEEEE;
  476. }
  477. .tabLine {
  478. font-size: 28rpx;
  479. color: #333333;
  480. text-align: center;
  481. }
  482. .tabActive {
  483. color: #FF0000;
  484. font-weight: bold;
  485. border-bottom: 4rpx solid #FF0000;
  486. }
  487. .main {
  488. padding-top: 260rpx;
  489. padding-bottom: 20rpx;
  490. background-color: #F4F5F7;
  491. }
  492. .itemBg {
  493. margin: 20rpx 24rpx;
  494. background-color: #FFFFFF;
  495. border-radius: 10rpx;
  496. padding: 20rpx;
  497. }
  498. .itemTop {
  499. display: flex;
  500. justify-content: space-between;
  501. }
  502. .itemType {
  503. color: #999999;
  504. font-size: 24rpx;
  505. }
  506. .itemSheetState {
  507. font-size: 24rpx;
  508. color: #999999
  509. }
  510. .redColor {
  511. color: #FF0000;
  512. }
  513. .orangeColor {
  514. color: #F19D01;
  515. }
  516. .greenColor {
  517. color: #00A040;
  518. }
  519. .itemShopBg {
  520. display: flex;
  521. justify-content: space-between;
  522. margin-top: 20rpx;
  523. }
  524. .shopName {
  525. color: #333333;
  526. font-size: 30rpx;
  527. font-weight: bold;
  528. /* 隐藏文字显示 ...不换行 */
  529. overflow: hidden;
  530. text-overflow: ellipsis;
  531. white-space: nowrap;
  532. }
  533. .price {
  534. color: #333333;
  535. font-weight: bold;
  536. font-size: 32rpx;
  537. }
  538. .itemName {
  539. color: #666666;
  540. font-size: 24rpx;
  541. padding-top: 16rpx;
  542. height: 30rpx;
  543. overflow: hidden;
  544. text-overflow: ellipsis;
  545. white-space: nowrap;
  546. }
  547. .plateBg {
  548. display: flex;
  549. justify-content: space-between;
  550. align-items: center;
  551. }
  552. .plateNumber {
  553. color: #666666;
  554. font-size: 24rpx;
  555. margin-bottom: 20rpx;
  556. display: flex;
  557. }
  558. .itemLineBottom {
  559. display: flex;
  560. justify-content: flex-end;
  561. }
  562. .itemBtn1 {
  563. width: 150rpx;
  564. height: 56rpx;
  565. border-radius: 36rpx;
  566. border: 2rpx solid #DDDDDD;
  567. text-align: center;
  568. line-height: 56rpx;
  569. font-size: 28rpx;
  570. color: #3C3C3C;
  571. margin-left: 40rpx;
  572. }
  573. .itemBtn2 {
  574. width: 150rpx;
  575. height: 56rpx;
  576. border-radius: 36rpx;
  577. border: 2rpx solid #FF4F00;
  578. text-align: center;
  579. line-height: 56rpx;
  580. font-size: 28rpx;
  581. color: #FF4F00;
  582. margin-left: 40rpx;
  583. }
  584. .orderState {
  585. color: #F19D01;
  586. font-size: 24rpx;
  587. padding-left: 20rpx;
  588. }
  589. .renBox{
  590. color: #1A1A1A;
  591. background: #F7F7F7;
  592. border-radius: 10rpx;
  593. display: flex;
  594. padding: 20rpx;font-size: 24rpx;
  595. line-height: 30rpx;
  596. margin-top: 16rpx;
  597. }
  598. .renimg{
  599. width: 30rpx;height: 30rpx;
  600. }
  601. .renMobilePhone{
  602. padding-left: 13rpx;
  603. }
  604. .itemaddress{
  605. font-size: 24rpx;display: flex;
  606. color: #3C3C3C;padding-top: 16rpx;
  607. line-height: 33rpx;
  608. }
  609. .addressDD{
  610. width: 10rpx;
  611. height: 10rpx;
  612. background: #FF0000;
  613. border-radius: 50%;
  614. margin-top: 10rpx;
  615. margin-right: 5rpx;
  616. }
  617. .sschahao{
  618. width: 40rpx;
  619. height: 40rpx;
  620. padding-top: 16rpx;
  621. }
  622. </style>