apply.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529
  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. width: 540rpx;
  238. }
  239. .lineimghz{
  240. margin-right: 24rpx;
  241. position: relative;
  242. margin-bottom: 24rpx;
  243. }
  244. .lineimg{
  245. width: 150rpx;
  246. height: 150rpx;
  247. border-radius: 6rpx;
  248. }
  249. .lineimgdel{
  250. width: 37rpx;
  251. height: 37rpx;
  252. position: absolute;
  253. top: -18rpx;
  254. right: -18rpx;
  255. }
  256. .lineRight2{
  257. display: flex;
  258. }
  259. .line{
  260. display: flex;font-size: 28rpx;
  261. color: #666666;padding: 29rpx 0;
  262. border-bottom: 1px solid #EEEEEE;
  263. }
  264. .lineLeft{
  265. width: 130rpx;
  266. }
  267. .lineInput{
  268. font-size: 28rpx; color: #3c3c3c;
  269. }
  270. .top{
  271. color: #666666;font-size: 28rpx;
  272. line-height: 40rpx;padding: 20rpx 44rpx;
  273. }
  274. .content{
  275. min-height: 100vh;
  276. background: #F6F6F6;
  277. }
  278. .zdyNavBox {
  279. width: 100vw;
  280. background: #FFFFFF;
  281. position: fixed;
  282. top: 0;
  283. left: 0;
  284. z-index: 99;
  285. }
  286. .zdyNav {
  287. height: 44px;
  288. display: flex;
  289. justify-content: space-between;
  290. align-items: center;
  291. }
  292. .backImg {
  293. width: 44rpx;
  294. height: 44rpx;
  295. margin-left: 10rpx;
  296. margin-right: 20rpx;
  297. }
  298. .homeImg {
  299. width: 44rpx;
  300. height: 44rpx;
  301. }
  302. .zdyNavLeft {
  303. display: flex;
  304. align-items: center;
  305. }
  306. .zdyNavTitle {
  307. height: 44px;
  308. background: #FFFFFF;
  309. text-align: center;
  310. font-size: 34rpx;
  311. line-height: 44px;
  312. }
  313. .tab {
  314. background: #FFFFFF;
  315. display: flex;
  316. justify-content: space-between;
  317. line-height: 92rpx;
  318. /* position: fixed; */
  319. width: calc(100vw - 100rpx);
  320. padding-left: 50rpx;
  321. padding-right: 50rpx;
  322. height: 92rpx;
  323. z-index: 11;
  324. border-top: 1px solid #EEEEEE;
  325. }
  326. .tabLine {
  327. font-size: 28rpx;
  328. color: #333333;
  329. text-align: center;
  330. }
  331. .tabActive {
  332. color: #FF0000;
  333. font-weight: bold;
  334. border-bottom: 4rpx solid #FF0000;
  335. }
  336. .main {
  337. padding-top: 260rpx;
  338. padding-bottom: 20rpx;
  339. background-color: #F4F5F7;
  340. }
  341. .itemBg {
  342. margin: 20rpx 24rpx;
  343. background-color: #FFFFFF;
  344. border-radius: 10rpx;
  345. padding: 20rpx;
  346. }
  347. .itemTop {
  348. display: flex;
  349. justify-content: space-between;
  350. }
  351. .itemType {
  352. color: #999999;
  353. font-size: 24rpx;
  354. }
  355. .itemSheetState {
  356. font-size: 24rpx;
  357. color: #999999
  358. }
  359. .redColor {
  360. color: #FF0000;
  361. }
  362. .orangeColor {
  363. color: #F19D01;
  364. }
  365. .greenColor {
  366. color: #00A040;
  367. }
  368. .itemShopBg {
  369. display: flex;
  370. justify-content: space-between;
  371. margin-top: 20rpx;
  372. }
  373. .shopName {
  374. color: #333333;
  375. font-size: 30rpx;
  376. font-weight: bold;
  377. /* 隐藏文字显示 ...不换行 */
  378. overflow: hidden;
  379. text-overflow: ellipsis;
  380. white-space: nowrap;
  381. }
  382. .price {
  383. color: #333333;
  384. font-weight: bold;
  385. font-size: 32rpx;
  386. }
  387. .itemName {
  388. color: #666666;
  389. font-size: 24rpx;
  390. padding-top: 16rpx;
  391. height: 30rpx;
  392. overflow: hidden;
  393. text-overflow: ellipsis;
  394. white-space: nowrap;
  395. }
  396. .plateBg {
  397. display: flex;
  398. justify-content: space-between;
  399. align-items: center;
  400. }
  401. .plateNumber {
  402. color: #666666;
  403. font-size: 24rpx;
  404. margin-bottom: 20rpx;
  405. display: flex;
  406. }
  407. .itemLineBottom {
  408. display: flex;
  409. justify-content: flex-end;
  410. }
  411. .itemBtn1 {
  412. width: 150rpx;
  413. height: 56rpx;
  414. border-radius: 36rpx;
  415. border: 2rpx solid #DDDDDD;
  416. text-align: center;
  417. line-height: 56rpx;
  418. font-size: 28rpx;
  419. color: #3C3C3C;
  420. margin-left: 40rpx;
  421. }
  422. .itemBtn2 {
  423. width: 150rpx;
  424. height: 56rpx;
  425. border-radius: 36rpx;
  426. border: 2rpx solid #FF4F00;
  427. text-align: center;
  428. line-height: 56rpx;
  429. font-size: 28rpx;
  430. color: #FF4F00;
  431. margin-left: 40rpx;
  432. }
  433. .orderState {
  434. color: #F19D01;
  435. font-size: 24rpx;
  436. padding-left: 20rpx;
  437. }
  438. .renBox{
  439. color: #1A1A1A;
  440. background: #F7F7F7;
  441. border-radius: 10rpx;
  442. display: flex;
  443. padding: 20rpx;font-size: 24rpx;
  444. line-height: 30rpx;
  445. margin-top: 16rpx;
  446. }
  447. .renimg{
  448. width: 30rpx;height: 30rpx;
  449. }
  450. .renMobilePhone{
  451. padding-left: 13rpx;
  452. }
  453. .itemaddress{
  454. font-size: 24rpx;display: flex;
  455. color: #3C3C3C;padding-top: 16rpx;
  456. line-height: 33rpx;
  457. }
  458. .addressDD{
  459. width: 10rpx;
  460. height: 10rpx;
  461. background: #FF0000;
  462. border-radius: 50%;
  463. margin-top: 10rpx;
  464. margin-right: 5rpx;
  465. }
  466. .sschahao{
  467. width: 40rpx;
  468. height: 40rpx;
  469. padding-top: 16rpx;
  470. }
  471. </style>