index.vue 15 KB

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