第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時綁定郵箱和手機立即綁定

【九月打卡】第20天 多端全棧項目實戰(zhàn)

標(biāo)簽:
SpringBoot

课程名称:多端全栈项目实战:商业级代驾全流程落地


课程章节:  华夏代驾全栈小程序实战


课程讲师: 神思者


课程内容:


        前端实时上传gps定位 前端页面


课程收获:


        因为创建订单得时候我们要上传车型和车牌。所以选择好车型和车牌后,页面跳转得时候 可以将数据传到后端

<view v-if="list.length > 0" v-for="one in list" class="row" 
      @tap="choseOneHandle(one.id, one.carPlate, one.carType)" 
      @longpress="removeHandle(one.id)">
	  <view>
	  	  <u-icon name="info-circle-fill" color="#2979ff" size="35" class="icon"></u-icon>
	  	  <text class="car-type">{{ one.carType }}</text>
	  </view>
	  <text class="car-plate">{{ one.carPlate }}</text></view>

        

使用得是uni.navigateTo

choseOneHandle: function(id, carPlate, carType) {
	uni.navigateTo({
	  url: `../create_order/create_order?showCar=true&carId=${id}&carPlate=${carPlate}&carType=${carType}`
	});}


 create_order页面需要对showCar 数据进行报错

onLoad: function(options) {
   if (options.hasOwnProperty('showCar')) {
        that.showCar = options.showCar;
        that.carId = options.carId;
        that.carPlate = options.carPlate;
	that.carType = options.carType   
   }}


接下来需要在页面编写一个组件

https://img1.sycdn.imooc.com//632ea0de0001d73b03440202.jpg


进行弹窗


然后是 确定下单得 click事件

<button class="btn" @tap="createOrderHandle">确定下单</button>


createOrderHandle: function() {
    let that = this;
    if (that.carType == null || that.carPlate == null) {
        uni.showToast({
            icon: 'error',
            title: '没有设置代驾车辆'
        });
        return;
    }

    uni.showLoading({
        title: '下单中请稍后'
    });
    setTimeout(function() {
        uni.hideLoading();
    }, 60000);

    let data = {
        startPlace: that.from.address,
        startPlaceLatitude: that.from.latitude,
        startPlaceLongitude: that.from.longitude,
        endPlace: that.from.address,
        endPlaceLatitude: that.to.latitude,
        endPlaceLongitude: that.to.longitude,
        favourFee: '0.0',
        carPlate: that.carPlate,
        carType: that.carType    };
    that.ajax(that.url.createNewOrder, 'POST', data, function(resp) {
        uni.hideLoading();
        if (resp.data.result.count > 0) {
            uni.showToast({
                icon: 'success',
                title: '订单创建成功'
            });
            setTimeout(function() {
                that.orderId = resp.data.result.orderId;
                //显示等待接单的弹窗
                that.showPopup = true;
            }, 2000);
        } else {
            uni.showToast({
                icon: 'none',
                title: '没有适合接单的司机'
            });
        }
    });},






https://img1.sycdn.imooc.com//632e9fd30001763209570765.jpg







點擊查看更多內(nèi)容
TA 點贊

若覺得本文不錯,就分享一下吧!

評論

作者其他優(yōu)質(zhì)文章

正在加載中
  • 推薦
  • 評論
  • 收藏
  • 共同學(xué)習(xí),寫下你的評論
感謝您的支持,我會繼續(xù)努力的~
掃碼打賞,你說多少就多少
贊賞金額會直接到老師賬戶
支付方式
打開微信掃一掃,即可進行掃碼打賞哦
今天注冊有機會得

100積分直接送

付費專欄免費學(xué)

大額優(yōu)惠券免費領(lǐng)

立即參與 放棄機會
微信客服

購課補貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號

舉報

0/150
提交
取消