apply.vue 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  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. 填写认证信息
  19. </view>
  20. <view class="box">
  21. <view class="cont">
  22. <view class="line">
  23. <view class="lineLeft"><span class="stars">*</span>姓名</view>
  24. <view class="lineRight">
  25. <input type="text" v-model="customerName" class="lineInput" placeholder="请填写姓名"/>
  26. </view>
  27. </view>
  28. <view class="line">
  29. <view class="lineLeft"><span class="stars">*</span>手机号</view>
  30. <view class="lineRight">
  31. <input type="text" v-model="mobilePhone" class="lineInput" placeholder="请填写手机号"/>
  32. </view>
  33. </view>
  34. <view class="line">
  35. <view class="lineLeft"><span class="stars">*</span>车牌号</view>
  36. <view class="lineRight">
  37. <input type="text" v-model="plateNumber" class="lineInput" placeholder="请填写车牌号"/>
  38. </view>
  39. </view>
  40. <view class="line">
  41. <view class="lineLeft">车型</view>
  42. <view class="lineRight2">
  43. <view class="cxBox" @click="carmodel(1)">
  44. <img src="../../static/img/icon_checked.png" v-if="carmodelType==1" alt="" class="cxIcon"/>
  45. <img src="../../static/img/ckn.png" v-if="carmodelType==2" alt="" class="cxIcon"/>
  46. <span>丰田网约车</span>
  47. </view>
  48. <view class="cxBox" @click="carmodel(2)" style="padding-left: 20rpx;">
  49. <img src="../../static/img/icon_checked.png" v-if="carmodelType==2" alt="" class="cxIcon"/>
  50. <img src="../../static/img/ckn.png" v-if="carmodelType==1" alt="" class="cxIcon"/>
  51. <span>其他网约车</span>
  52. </view>
  53. </view>
  54. </view>
  55. <view class="line">
  56. <view class="lineLeft"><span class="stars">*</span>上传图片</view>
  57. <view class="lineImgBOx">
  58. <view class="lineimghz" v-for="(item,index) in imgListArr">
  59. <img src="../../static/img/del.png" alt="" class="lineimgdel" @click="delimg(index)" >
  60. <img :src="item" alt="" class="lineimg" @click="previewImage(item)">
  61. </view>
  62. <view class="lineimghz" @click="upimg">
  63. <img src="../../static/img/scimg.png" alt="" class="lineimg">
  64. </view>
  65. </view>
  66. </view>
  67. </view>
  68. </view>
  69. <view class="submit" @click="submit">提交</view>
  70. <w-compress ref='wCompress' />
  71. </view>
  72. </template>
  73. <script>
  74. import WCompress from '@/components/w-compress/w-compress.vue'
  75. export default {
  76. components: {
  77. WCompress
  78. },
  79. data() {
  80. return {
  81. iStatusBarHeight:'',
  82. rzShow:false,
  83. imgListArr:[],
  84. file:'',
  85. customerName:'',
  86. mobilePhone:'',
  87. plateNumber:'',
  88. carmodelType:1,
  89. shopID:'86B933FF-3782-4F82-A192-176E7A45AA13',
  90. shopName:'fzh123',
  91. sourceUserID:'00958045-3341-4AF7-9460-801F5B52E3E2',
  92. sourceName:'姜国远',
  93. uid:'',
  94. }
  95. },
  96. onLoad(opt) {
  97. // this.shopID=opt.shopID;
  98. // this.shopName=opt.shopName;
  99. this.uid=opt.uid;
  100. //this.sourceName=opt.sourceName;
  101. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  102. },
  103. created() {
  104. },
  105. methods: {
  106. submit(){
  107. this.plateNumber = this.plateNumber.replace(/\s*/g,"");
  108. var regex = /(^[安京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-Z]{1}(([A-HJ-NP-Z0-9]{5})|([A-HJ-NP-Z0-9]{6}))$)|(^[安京津沪渝冀豫云辽黑湘皖鲁新苏浙赣鄂桂甘晋蒙陕吉闽贵粤青藏川宁琼使领A-Z]{1}[A-HJ-NP-Z0-9]{1}[A-HJ-NP-Z0-9]{4}[A-HJ-NP-Z0-9挂学警港澳]{1}$)/u;
  109. if (regex.test(this.plateNumber)) {
  110. } else {
  111. uni.showToast({
  112. title: '请输入正确车牌号',
  113. icon: 'none',
  114. duration: 3000
  115. });
  116. return false;
  117. }
  118. //this.convertToUpperCase(this.plateNumber)
  119. if(!this.customerName){
  120. uni.showToast({
  121. title: '请输入姓名',
  122. icon: 'none',
  123. duration: 3000
  124. });
  125. return false;
  126. }
  127. this.plateNumber=this.plateNumber.toUpperCase()
  128. console.log(this.plateNumber)
  129. var reg = /^1[3|4|5|7|8][0-9]\d{8}$/;
  130. if(reg.test(this.mobilePhone) == false ){
  131. console.log("手机号码格式不正确");
  132. uni.showToast({
  133. title: '请输入正确的手机号',
  134. icon: 'none',
  135. duration: 3000
  136. });
  137. return false;
  138. }
  139. if(!this.mobilePhone){
  140. uni.showToast({
  141. title: '请输入手机号',
  142. icon: 'none',
  143. duration: 3000
  144. });
  145. return false;
  146. }
  147. if(this.imgListArr.length==0){
  148. uni.showToast({
  149. title: '请上传图片',
  150. icon: 'none',
  151. duration: 3000
  152. });
  153. return false;
  154. }
  155. uni.showLoading({
  156. title: '加载中'
  157. });
  158. this.isload = false;
  159. this.$http('api/online-apply/add', {
  160. customerName:this.customerName,
  161. mobilePhone:this.mobilePhone,
  162. plateNumber:this.plateNumber,
  163. carmodelType:this.carmodelType,
  164. //shopID:this.shopID,
  165. //shopName:this.shopName,
  166. sourceUserID:this.uid,
  167. //sourceName:this.sourceName,
  168. imgs:this.imgListArr.join(','),
  169. }, 'POST').then(res => {
  170. uni.hideLoading();
  171. this.isload = true;
  172. if(res.code==0){
  173. uni.navigateTo({
  174. url:'/pages/wyCar/success'
  175. })
  176. }else{
  177. }
  178. })
  179. },
  180. convertToUpperCase(text) {
  181. return text.replace(/[a-z]/g, function(match) {
  182. return String.fromCharCode(match.charCodeAt(0) - 32);
  183. });
  184. },
  185. carmodel(num){
  186. this.carmodelType=num
  187. },
  188. delimg(index){
  189. this.imgListArr.splice(index, 1)
  190. },
  191. previewImage(img){
  192. var arr=[]
  193. arr.push(img)
  194. uni.previewImage({
  195. urls: arr,
  196. longPressActions: {
  197. itemList: ['发送给朋友', '保存图片',],
  198. success: function(data) {},
  199. fail: function(err) {}
  200. }
  201. });
  202. },
  203. upimg(){
  204. var that = this;
  205. uni.chooseImage({
  206. sourceType: ['album','camera'],
  207. count:9,
  208. sizeType:['compressed'],
  209. success: (chooseImageRes) => {
  210. const tempFilePaths = chooseImageRes.tempFilePaths;
  211. //console.log(tempFilePaths)
  212. that.file=tempFilePaths
  213. that.$refs.wCompress.start(that.file, {
  214. pixels: 600000, // 最大分辨率,默认二百万
  215. quality: 0.9, // 压缩质量,默认0.8
  216. type: 'png', // 图片类型,默认jpg
  217. base64: true, // 是否返回base64,默认false,非H5有效
  218. }).then(resxx => {
  219. // console.log(resxx)
  220. resxx.forEach(item=>{
  221. uni.uploadFile({
  222. url: that.$request.baseUrl+'api/online-apply/uploadFile', //仅为示例,非真实的接口地址
  223. filePath: item,
  224. name: 'file',
  225. formData: {
  226. 'user': 'test'
  227. },
  228. success: (uploadFileRes) => {
  229. that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  230. }
  231. });
  232. })
  233. }).catch(e => {
  234. })
  235. }
  236. });
  237. },
  238. goback(){
  239. //app交互
  240. var standalone = window.navigator.standalone
  241. var userAgent = window.navigator.userAgent.toLowerCase()
  242. var safari = /safari/.test(userAgent)
  243. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  244. var android = /android/.test(userAgent)
  245. if (ios) {
  246. if ( true) {//!standalone&& !safari
  247. window.webkit.messageHandlers.goMyNav.postMessage(null)
  248. }
  249. } else if (android) {
  250. window.android.postMessage()
  251. }
  252. },
  253. }
  254. }
  255. </script>
  256. <style scoped>
  257. .box{
  258. padding: 0 24rpx;
  259. }
  260. .submit{
  261. width: 493rpx;
  262. height: 74rpx;
  263. background: #FF8130;
  264. border-radius: 37rpx;
  265. font-weight: 500;
  266. color: #FFFFFF;
  267. font-size: 30rpx;
  268. line-height: 74rpx;
  269. text-align: center;
  270. margin: 0 auto;
  271. margin-top: 40rpx;
  272. }
  273. .cont{
  274. background: #FFFFFF;border-radius: 10rpx;
  275. padding: 0 20rpx;
  276. }
  277. .cxBox{
  278. display: flex;line-height: 28rpx;
  279. padding-top: 6rpx;
  280. }
  281. .cxBox span{
  282. color: #3C3C3C;padding-left: 8rpx;
  283. }
  284. .cxIcon{
  285. width: 28rpx;
  286. height: 28rpx;
  287. }
  288. .lineImgBOx{
  289. display: flex;
  290. flex-wrap: wrap;
  291. width: 540rpx;
  292. }
  293. .lineimghz{
  294. margin-right: 24rpx;
  295. position: relative;
  296. margin-bottom: 24rpx;
  297. }
  298. .lineimg{
  299. width: 150rpx;
  300. height: 150rpx;
  301. border-radius: 6rpx;
  302. }
  303. .lineimgdel{
  304. width: 37rpx;
  305. height: 37rpx;
  306. position: absolute;
  307. top: -18rpx;
  308. right: -18rpx;
  309. }
  310. .lineRight2{
  311. display: flex;
  312. }
  313. .line{
  314. display: flex;font-size: 28rpx;
  315. color: #666666;padding: 29rpx 0;
  316. border-bottom: 1px solid #EEEEEE;
  317. }
  318. .lineLeft{
  319. width: 130rpx;
  320. }
  321. .lineInput{
  322. font-size: 28rpx; color: #3c3c3c;
  323. }
  324. .top{
  325. color: #666666;font-size: 28rpx;
  326. line-height: 40rpx;padding: 20rpx 44rpx;
  327. }
  328. .content{
  329. min-height: 100vh;
  330. background: #F6F6F6;
  331. }
  332. .zdyNavBox {
  333. width: 100vw;
  334. background: #FFFFFF;
  335. position: fixed;
  336. top: 0;
  337. left: 0;
  338. z-index: 99;
  339. }
  340. .zdyNav {
  341. height: 44px;
  342. display: flex;
  343. justify-content: space-between;
  344. align-items: center;
  345. }
  346. .backImg {
  347. width: 44rpx;
  348. height: 44rpx;
  349. margin-left: 10rpx;
  350. margin-right: 20rpx;
  351. }
  352. .homeImg {
  353. width: 44rpx;
  354. height: 44rpx;
  355. }
  356. .zdyNavLeft {
  357. display: flex;
  358. align-items: center;
  359. }
  360. .zdyNavTitle {
  361. height: 44px;
  362. background: #FFFFFF;
  363. text-align: center;
  364. font-size: 34rpx;
  365. line-height: 44px;
  366. }
  367. .tab {
  368. background: #FFFFFF;
  369. display: flex;
  370. justify-content: space-between;
  371. line-height: 92rpx;
  372. /* position: fixed; */
  373. width: calc(100vw - 100rpx);
  374. padding-left: 50rpx;
  375. padding-right: 50rpx;
  376. height: 92rpx;
  377. z-index: 11;
  378. border-top: 1px solid #EEEEEE;
  379. }
  380. .tabLine {
  381. font-size: 28rpx;
  382. color: #333333;
  383. text-align: center;
  384. }
  385. .tabActive {
  386. color: #FF0000;
  387. font-weight: bold;
  388. border-bottom: 4rpx solid #FF0000;
  389. }
  390. .main {
  391. padding-top: 260rpx;
  392. padding-bottom: 20rpx;
  393. background-color: #F4F5F7;
  394. }
  395. .itemBg {
  396. margin: 20rpx 24rpx;
  397. background-color: #FFFFFF;
  398. border-radius: 10rpx;
  399. padding: 20rpx;
  400. }
  401. .itemTop {
  402. display: flex;
  403. justify-content: space-between;
  404. }
  405. .itemType {
  406. color: #999999;
  407. font-size: 24rpx;
  408. }
  409. .itemSheetState {
  410. font-size: 24rpx;
  411. color: #999999
  412. }
  413. .redColor {
  414. color: #FF0000;
  415. }
  416. .orangeColor {
  417. color: #F19D01;
  418. }
  419. .greenColor {
  420. color: #00A040;
  421. }
  422. .itemShopBg {
  423. display: flex;
  424. justify-content: space-between;
  425. margin-top: 20rpx;
  426. }
  427. .shopName {
  428. color: #333333;
  429. font-size: 30rpx;
  430. font-weight: bold;
  431. /* 隐藏文字显示 ...不换行 */
  432. overflow: hidden;
  433. text-overflow: ellipsis;
  434. white-space: nowrap;
  435. }
  436. .price {
  437. color: #333333;
  438. font-weight: bold;
  439. font-size: 32rpx;
  440. }
  441. .itemName {
  442. color: #666666;
  443. font-size: 24rpx;
  444. padding-top: 16rpx;
  445. height: 30rpx;
  446. overflow: hidden;
  447. text-overflow: ellipsis;
  448. white-space: nowrap;
  449. }
  450. .plateBg {
  451. display: flex;
  452. justify-content: space-between;
  453. align-items: center;
  454. }
  455. .plateNumber {
  456. color: #666666;
  457. font-size: 24rpx;
  458. margin-bottom: 20rpx;
  459. display: flex;
  460. }
  461. .itemLineBottom {
  462. display: flex;
  463. justify-content: flex-end;
  464. }
  465. .itemBtn1 {
  466. width: 150rpx;
  467. height: 56rpx;
  468. border-radius: 36rpx;
  469. border: 2rpx solid #DDDDDD;
  470. text-align: center;
  471. line-height: 56rpx;
  472. font-size: 28rpx;
  473. color: #3C3C3C;
  474. margin-left: 40rpx;
  475. }
  476. .itemBtn2 {
  477. width: 150rpx;
  478. height: 56rpx;
  479. border-radius: 36rpx;
  480. border: 2rpx solid #FF4F00;
  481. text-align: center;
  482. line-height: 56rpx;
  483. font-size: 28rpx;
  484. color: #FF4F00;
  485. margin-left: 40rpx;
  486. }
  487. .orderState {
  488. color: #F19D01;
  489. font-size: 24rpx;
  490. padding-left: 20rpx;
  491. }
  492. .renBox{
  493. color: #1A1A1A;
  494. background: #F7F7F7;
  495. border-radius: 10rpx;
  496. display: flex;
  497. padding: 20rpx;font-size: 24rpx;
  498. line-height: 30rpx;
  499. margin-top: 16rpx;
  500. }
  501. .renimg{
  502. width: 30rpx;height: 30rpx;
  503. }
  504. .renMobilePhone{
  505. padding-left: 13rpx;
  506. }
  507. .itemaddress{
  508. font-size: 24rpx;display: flex;
  509. color: #3C3C3C;padding-top: 16rpx;
  510. line-height: 33rpx;
  511. }
  512. .addressDD{
  513. width: 10rpx;
  514. height: 10rpx;
  515. background: #FF0000;
  516. border-radius: 50%;
  517. margin-top: 10rpx;
  518. margin-right: 5rpx;
  519. }
  520. .sschahao{
  521. width: 40rpx;
  522. height: 40rpx;
  523. padding-top: 16rpx;
  524. }
  525. .stars{
  526. color: #FF2400;
  527. }
  528. </style>