apply.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527
  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">姓名</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">手机号</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">车牌号</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">上传凭证</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. }
  94. },
  95. onLoad(opt) {
  96. this.shopID=opt.shopID;
  97. this.shopName=opt.shopName;
  98. this.sourceUserID=opt.sourceUserID;
  99. this.sourceName=opt.sourceName;
  100. this.iStatusBarHeight = uni.getSystemInfoSync().statusBarHeight;
  101. },
  102. created() {
  103. },
  104. methods: {
  105. submit(){
  106. uni.showLoading({
  107. title: '加载中'
  108. });
  109. this.isload = false;
  110. this.$http('api/online-apply/add', {
  111. customerName:this.customerName,
  112. mobilePhone:this.mobilePhone,
  113. plateNumber:this.plateNumber,
  114. carmodelType:this.carmodelType,
  115. shopID:this.shopID,
  116. shopName:this.shopName,
  117. sourceUserID:this.sourceUserID,
  118. sourceName:this.sourceName,
  119. imgs:this.imgListArr.join(','),
  120. }, 'POST').then(res => {
  121. uni.hideLoading();
  122. this.isload = true;
  123. if(res.code==0){
  124. uni.navigateTo({
  125. url:'/pages/wyCar/success'
  126. })
  127. }else{
  128. }
  129. })
  130. },
  131. carmodel(num){
  132. this.carmodelType=num
  133. },
  134. delimg(index){
  135. this.imgListArr.splice(index, 1)
  136. },
  137. previewImage(img){
  138. var arr=[]
  139. arr.push(img)
  140. uni.previewImage({
  141. urls: arr,
  142. longPressActions: {
  143. itemList: ['发送给朋友', '保存图片',],
  144. success: function(data) {},
  145. fail: function(err) {}
  146. }
  147. });
  148. },
  149. upimg(){
  150. var that = this;
  151. uni.chooseImage({
  152. sourceType: ['album','camera'],
  153. count:9,
  154. sizeType:['compressed'],
  155. success: (chooseImageRes) => {
  156. const tempFilePaths = chooseImageRes.tempFilePaths;
  157. //console.log(tempFilePaths)
  158. that.file=tempFilePaths
  159. that.$refs.wCompress.start(that.file, {
  160. pixels: 600000, // 最大分辨率,默认二百万
  161. quality: 0.9, // 压缩质量,默认0.8
  162. type: 'png', // 图片类型,默认jpg
  163. base64: true, // 是否返回base64,默认false,非H5有效
  164. }).then(resxx => {
  165. // console.log(resxx)
  166. resxx.forEach(item=>{
  167. uni.uploadFile({
  168. url: that.$request.baseUrl+'api/online-apply/uploadFile', //仅为示例,非真实的接口地址
  169. filePath: item,
  170. name: 'file',
  171. formData: {
  172. 'user': 'test'
  173. },
  174. success: (uploadFileRes) => {
  175. that.imgListArr=that.imgListArr.concat(JSON.parse(uploadFileRes.data).data)
  176. }
  177. });
  178. })
  179. }).catch(e => {
  180. })
  181. }
  182. });
  183. },
  184. goback(){
  185. //app交互
  186. var standalone = window.navigator.standalone
  187. var userAgent = window.navigator.userAgent.toLowerCase()
  188. var safari = /safari/.test(userAgent)
  189. var ios = /iphone|ipod|ipad|mac/.test(userAgent)
  190. var android = /android/.test(userAgent)
  191. if (ios) {
  192. if ( true) {//!standalone&& !safari
  193. window.webkit.messageHandlers.goMyNav.postMessage(null)
  194. }
  195. } else if (android) {
  196. window.android.postMessage()
  197. }
  198. },
  199. }
  200. }
  201. </script>
  202. <style scoped>
  203. .box{
  204. padding: 0 24rpx;
  205. }
  206. .submit{
  207. width: 493rpx;
  208. height: 74rpx;
  209. background: #FF8130;
  210. border-radius: 37rpx;
  211. font-weight: 500;
  212. color: #FFFFFF;
  213. font-size: 30rpx;
  214. line-height: 74rpx;
  215. text-align: center;
  216. margin: 0 auto;
  217. margin-top: 40rpx;
  218. }
  219. .cont{
  220. background: #FFFFFF;border-radius: 10rpx;
  221. padding: 0 20rpx;
  222. }
  223. .cxBox{
  224. display: flex;line-height: 28rpx;
  225. padding-top: 6rpx;
  226. }
  227. .cxBox span{
  228. color: #3C3C3C;padding-left: 8rpx;
  229. }
  230. .cxIcon{
  231. width: 28rpx;
  232. height: 28rpx;
  233. }
  234. .lineImgBOx{
  235. display: flex;
  236. flex-wrap: wrap;
  237. }
  238. .lineimghz{
  239. margin-right: 24rpx;
  240. position: relative;
  241. margin-bottom: 24rpx;
  242. }
  243. .lineimg{
  244. width: 150rpx;
  245. height: 150rpx;
  246. }
  247. .lineimgdel{
  248. width: 37rpx;
  249. height: 37rpx;
  250. position: absolute;
  251. top: -18rpx;
  252. right: -18rpx;
  253. }
  254. .lineRight2{
  255. display: flex;
  256. }
  257. .line{
  258. display: flex;font-size: 28rpx;
  259. color: #666666;padding: 29rpx 0;
  260. border-bottom: 1px solid #EEEEEE;
  261. }
  262. .lineLeft{
  263. width: 130rpx;
  264. }
  265. .lineInput{
  266. font-size: 28rpx;
  267. }
  268. .top{
  269. color: #666666;font-size: 28rpx;
  270. line-height: 40rpx;padding: 20rpx 44rpx;
  271. }
  272. .content{
  273. min-height: 100vh;
  274. background: #F6F6F6;
  275. }
  276. .zdyNavBox {
  277. width: 100vw;
  278. background: #FFFFFF;
  279. position: fixed;
  280. top: 0;
  281. left: 0;
  282. z-index: 99;
  283. }
  284. .zdyNav {
  285. height: 44px;
  286. display: flex;
  287. justify-content: space-between;
  288. align-items: center;
  289. }
  290. .backImg {
  291. width: 44rpx;
  292. height: 44rpx;
  293. margin-left: 10rpx;
  294. margin-right: 20rpx;
  295. }
  296. .homeImg {
  297. width: 44rpx;
  298. height: 44rpx;
  299. }
  300. .zdyNavLeft {
  301. display: flex;
  302. align-items: center;
  303. }
  304. .zdyNavTitle {
  305. height: 44px;
  306. background: #FFFFFF;
  307. text-align: center;
  308. font-size: 34rpx;
  309. line-height: 44px;
  310. }
  311. .tab {
  312. background: #FFFFFF;
  313. display: flex;
  314. justify-content: space-between;
  315. line-height: 92rpx;
  316. /* position: fixed; */
  317. width: calc(100vw - 100rpx);
  318. padding-left: 50rpx;
  319. padding-right: 50rpx;
  320. height: 92rpx;
  321. z-index: 11;
  322. border-top: 1px solid #EEEEEE;
  323. }
  324. .tabLine {
  325. font-size: 28rpx;
  326. color: #333333;
  327. text-align: center;
  328. }
  329. .tabActive {
  330. color: #FF0000;
  331. font-weight: bold;
  332. border-bottom: 4rpx solid #FF0000;
  333. }
  334. .main {
  335. padding-top: 260rpx;
  336. padding-bottom: 20rpx;
  337. background-color: #F4F5F7;
  338. }
  339. .itemBg {
  340. margin: 20rpx 24rpx;
  341. background-color: #FFFFFF;
  342. border-radius: 10rpx;
  343. padding: 20rpx;
  344. }
  345. .itemTop {
  346. display: flex;
  347. justify-content: space-between;
  348. }
  349. .itemType {
  350. color: #999999;
  351. font-size: 24rpx;
  352. }
  353. .itemSheetState {
  354. font-size: 24rpx;
  355. color: #999999
  356. }
  357. .redColor {
  358. color: #FF0000;
  359. }
  360. .orangeColor {
  361. color: #F19D01;
  362. }
  363. .greenColor {
  364. color: #00A040;
  365. }
  366. .itemShopBg {
  367. display: flex;
  368. justify-content: space-between;
  369. margin-top: 20rpx;
  370. }
  371. .shopName {
  372. color: #333333;
  373. font-size: 30rpx;
  374. font-weight: bold;
  375. /* 隐藏文字显示 ...不换行 */
  376. overflow: hidden;
  377. text-overflow: ellipsis;
  378. white-space: nowrap;
  379. }
  380. .price {
  381. color: #333333;
  382. font-weight: bold;
  383. font-size: 32rpx;
  384. }
  385. .itemName {
  386. color: #666666;
  387. font-size: 24rpx;
  388. padding-top: 16rpx;
  389. height: 30rpx;
  390. overflow: hidden;
  391. text-overflow: ellipsis;
  392. white-space: nowrap;
  393. }
  394. .plateBg {
  395. display: flex;
  396. justify-content: space-between;
  397. align-items: center;
  398. }
  399. .plateNumber {
  400. color: #666666;
  401. font-size: 24rpx;
  402. margin-bottom: 20rpx;
  403. display: flex;
  404. }
  405. .itemLineBottom {
  406. display: flex;
  407. justify-content: flex-end;
  408. }
  409. .itemBtn1 {
  410. width: 150rpx;
  411. height: 56rpx;
  412. border-radius: 36rpx;
  413. border: 2rpx solid #DDDDDD;
  414. text-align: center;
  415. line-height: 56rpx;
  416. font-size: 28rpx;
  417. color: #3C3C3C;
  418. margin-left: 40rpx;
  419. }
  420. .itemBtn2 {
  421. width: 150rpx;
  422. height: 56rpx;
  423. border-radius: 36rpx;
  424. border: 2rpx solid #FF4F00;
  425. text-align: center;
  426. line-height: 56rpx;
  427. font-size: 28rpx;
  428. color: #FF4F00;
  429. margin-left: 40rpx;
  430. }
  431. .orderState {
  432. color: #F19D01;
  433. font-size: 24rpx;
  434. padding-left: 20rpx;
  435. }
  436. .renBox{
  437. color: #1A1A1A;
  438. background: #F7F7F7;
  439. border-radius: 10rpx;
  440. display: flex;
  441. padding: 20rpx;font-size: 24rpx;
  442. line-height: 30rpx;
  443. margin-top: 16rpx;
  444. }
  445. .renimg{
  446. width: 30rpx;height: 30rpx;
  447. }
  448. .renMobilePhone{
  449. padding-left: 13rpx;
  450. }
  451. .itemaddress{
  452. font-size: 24rpx;display: flex;
  453. color: #3C3C3C;padding-top: 16rpx;
  454. line-height: 33rpx;
  455. }
  456. .addressDD{
  457. width: 10rpx;
  458. height: 10rpx;
  459. background: #FF0000;
  460. border-radius: 50%;
  461. margin-top: 10rpx;
  462. margin-right: 5rpx;
  463. }
  464. .sschahao{
  465. width: 40rpx;
  466. height: 40rpx;
  467. padding-top: 16rpx;
  468. }
  469. </style>