Преглед изворни кода

feat(pages) 发票 外卖 自送

clp
clp пре 3 година
родитељ
комит
08cbc28466

+ 4 - 1
app.json

@@ -42,7 +42,10 @@
     "pages/groupmeallist/refund/refund",
     "pages/groupmeallist/test/test",
     "pages/groupmeallist/refundRecord/refundRecord",
-    "pages/groupmeallist/myOrder/myOrder"
+    "pages/groupmeallist/myOrder/myOrder",
+    "pages/groupmeallist/invoicesList/invoicesList",
+    "pages/groupmeallist/addinvoices/addinvoices",
+    "pages/groupmeallist/submitOrder/submitOrder"
 
     
     

+ 8 - 0
app.wxss

@@ -62,6 +62,7 @@
   width: 100%;
   height: 100%;
   background-color: #F7F7F7;
+  overflow-y: auto;
 }
 
 .fontSize-3 {
@@ -83,4 +84,11 @@
   font-weight: 400;
   text-align: left;
   color: #000000;
+}
+.fotSize32{
+  font-size: 32rpx;
+font-family: Segoe UI, Segoe UI-Bold;
+font-weight: 700;
+text-align: left;
+color: #000000;
 }

BIN
images/groupmeallist/edit.png


BIN
images/groupmeallist/invoice_add_icon.png


+ 66 - 0
pages/groupmeallist/addinvoices/addinvoices.js

@@ -0,0 +1,66 @@
+// pages/groupmeallist/addinvoices/addinvoices.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad: function (options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady: function () {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow: function () {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide: function () {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload: function () {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh: function () {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom: function () {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage: function () {
+
+    }
+})

+ 9 - 0
pages/groupmeallist/addinvoices/addinvoices.json

@@ -0,0 +1,9 @@
+{
+  "usingComponents": {
+  },
+  "navigationBarBackgroundColor": "#F7F7F7",
+  "navigationBarTextStyle": "black",
+  "navigationBarTitleText": "新增发票",
+  "backgroundColor": "#F7F7F7",
+  "backgroundTextStyle": "light"
+}

+ 41 - 0
pages/groupmeallist/addinvoices/addinvoices.wxml

@@ -0,0 +1,41 @@
+<view class="page flex-column" style="justify-content: flex-start; align-items: center;background-color: white;">
+    <view class="fill_invoice flex-column">
+        <view style="font-size: 36rpx;font-weight: 700;text-align: left;color: #000000;margin-top: 110rpx;">填写发票信息</view>
+    </view>
+
+    <view class="input_style flex-row">
+        <view class="mar65">名称</view>
+        <input bindinput="listenInput" class="sosoinput" placeholder="抬头名称" bindblur="soso" focus="{{!openFocus}}" value="{{keyword}}" disabled="{{openFocus}}" />
+    </view>
+
+    <view class="input_style flex-row">
+        <view class="mar65">税号</view>
+        <input bindinput="listenInput" class="sosoinput" placeholder="纳税人识别号" bindblur="soso" focus="{{!openFocus}}" value="{{keyword}}" disabled="{{openFocus}}" />
+    </view>
+
+    <view class="input_style flex-row">
+        <view class="mar65">单位地址</view>
+        <input bindinput="listenInput" class="sosoinput" style="margin-left: 75rpx;" placeholder="公司地址(选填)" bindblur="soso" focus="{{!openFocus}}" value="{{keyword}}" disabled="{{openFocus}}" />
+    </view>
+
+    <view class="input_style flex-row">
+        <view class="mar65">电话号码</view>
+        <input bindinput="listenInput" class="sosoinput" style="margin-left: 75rpx;" placeholder="公司电话(选填)" bindblur="soso" focus="{{!openFocus}}" value="{{keyword}}" disabled="{{openFocus}}" />
+    </view>
+
+    <view class="input_style flex-row">
+        <view class="mar65">开户银行</view>
+        <input bindinput="listenInput" class="sosoinput"  style="margin-left: 75rpx;" placeholder="开户银行(选填)" bindblur="soso" focus="{{!openFocus}}" value="{{keyword}}" disabled="{{openFocus}}" />
+    </view>
+
+    <view class="input_style flex-row">
+        <view class="mar65">银行账户</view>
+        <input bindinput="listenInput" class="sosoinput" style="margin-left: 75rpx;" placeholder="银行账户(选填)" bindblur="soso" focus="{{!openFocus}}" value="{{keyword}}" disabled="{{openFocus}}" />
+    </view>
+
+        <view class="submit">
+            保存
+        </view>
+
+
+</view>

+ 51 - 0
pages/groupmeallist/addinvoices/addinvoices.wxss

@@ -0,0 +1,51 @@
+.fill_invoice {
+    width: 93%;
+    height: 250rpx;
+    justify-content: flex-start;
+    align-items: center;
+    margin: auto;
+    border-bottom: 1px #EBEBEB solid;
+}
+
+.input_style {
+    width: 93%;
+    height: 110rpx;
+    border-bottom: 1px #EBEBEB solid;
+    margin-top: auto;
+    line-height: 90rpx;
+
+
+    font-size: 32rpx;
+    font-weight: 400;
+    text-align: left;
+    color: #000000;
+}
+
+.sosoinput {
+    margin-left: 135rpx;
+
+    font-size: 32rpx;
+    font-weight: 400;
+    text-align: left;
+    color: #b7b7b7;
+
+}
+
+.mar65 {
+
+    margin-left: 65rpx;
+}
+
+.submit {
+    width: 367rpx;
+    height: 83rpx;
+    background: #0f996d;
+
+    font-size: 32rpx;
+    font-weight: 400;
+    text-align: center;
+    color: #ffffff;
+    line-height: 83rpx;
+    margin-top: 113rpx;
+
+}

+ 103 - 0
pages/groupmeallist/invoicesList/invoicesList.js

@@ -0,0 +1,103 @@
+// pages/listDel/index.js
+Page({
+ 
+    /**
+    * 页面的初始数据
+    */
+    data: {
+    // x轴方向的偏移
+    x: 0,
+    // 当前x的值
+    currentX: 0
+    },
+    
+    handleMovableChange: function(e) {
+    // this.data.currentX = e.detail.x;
+    this.data.currentX = e.detail.x;
+    },
+    
+    handleTouchend: function(e) {
+    this.isMove = true;
+    if (this.data.currentX < -46) {
+     this.data.x = -112;
+     this.setData({
+     x: this.data.x
+     });
+    } else {
+     this.data.x = 0;
+     this.setData({
+     x: this.data.x
+     });
+    }
+    },
+
+    //添加发票
+    goToAddAinvoice(){
+        wx.navigateTo({
+          url: '../../groupmeallist/addinvoices/addinvoices',
+        })
+
+
+
+
+    },
+    handleTouchestart: function(e) {},
+    /**
+    * 生命周期函数--监听页面加载
+    */
+    onLoad: function(options) {
+    // let _this = this;
+    // wx.createSelectorQuery().selectAll('.delBtn ').boundingClientRect(function(rect) {
+    // _this.data.delWidth = rect[0].width;
+    // }).exec();
+    },
+    
+    /**
+    * 生命周期函数--监听页面初次渲染完成
+    */
+    onReady: function() {
+    
+    },
+    
+    /**
+    * 生命周期函数--监听页面显示
+    */
+    onShow: function() {
+    
+    },
+    
+    /**
+    * 生命周期函数--监听页面隐藏
+    */
+    onHide: function() {
+    
+    },
+    
+    /**
+    * 生命周期函数--监听页面卸载
+    */
+    onUnload: function() {
+    
+    },
+    
+    /**
+    * 页面相关事件处理函数--监听用户下拉动作
+    */
+    onPullDownRefresh: function() {
+    
+    },
+    
+    /**
+    * 页面上拉触底事件的处理函数
+    */
+    onReachBottom: function() {
+    
+    },
+    
+    /**
+    * 用户点击右上角分享
+    */
+    onShareAppMessage: function() {
+    
+    }
+   })

+ 9 - 0
pages/groupmeallist/invoicesList/invoicesList.json

@@ -0,0 +1,9 @@
+{
+  "usingComponents": {
+  },
+  "navigationBarBackgroundColor": "#F7F7F7",
+  "navigationBarTextStyle": "black",
+  "navigationBarTitleText": "发票列表",
+  "backgroundColor": "#F7F7F7",
+  "backgroundTextStyle": "light"
+}

+ 27 - 0
pages/groupmeallist/invoicesList/invoicesList.wxml

@@ -0,0 +1,27 @@
+<view class="container">
+    <view class="main">
+        <view class="main_item">
+            <movable-area>
+                <movable-view damping="100" out-of-bounds="true" direction="horizontal" x="{{x}}" animation="false" bindchange="handleMovableChange" capture-bind:touchstart="handleTouchestart" capture-bind:touchend="handleTouchend">
+                    <view class="main_item_content flex-row">
+                        <view>
+                            <view class="fontSize-3" style="font-size: 32rpx;">某某某某某某某某某某有限公司</view>
+                            <view style="margin-top: 17rpx;color: #919191;" class="fontSize-28">税号:214125625352</view>
+                        </view>
+                        <view>
+                            <image style="width: 30rpx; height:30rpx;margin-right: 53rpx;margin-top: 35rpx;" src="/images/groupmeallist/edit.png"></image>
+                        </view>
+                    </view>
+                </movable-view>
+            </movable-area>
+            <view class="delete_btn " data-productIndex="{{index}} " bindtap="handleDeleteProduct ">删除</view>
+        </view>
+    </view>
+</view>
+<view style="width: 93%; border-bottom: 1px #e2e2e2 solid; margin: auto;margin-top: 0rpx;"></view>
+
+<view class="add_invoice flex-row">
+    <image style="width:30rpx;height:31rpx;margin-left: 57rpx;" src="/images/groupmeallist/invoice_add_icon.png"></image>
+    <view style="margin-left:19rpx" catchtap="goToAddAinvoice">添加发票抬头</view>
+
+</view>

+ 63 - 0
pages/groupmeallist/invoicesList/invoicesList.wxss

@@ -0,0 +1,63 @@
+.container {
+    padding: 0;
+    background-color: #F7F7F7;
+   }
+    
+   page {
+    padding: 0;
+   }
+    
+   .main {
+    display: flex;
+    flex-direction: column;
+    align-items: center;
+   }
+    
+   .main_item {
+    display: flex;
+    flex-direction: row;
+    background: #F7F7F7;
+    overflow: hidden;
+   }
+    
+   movable-area {
+    width: 532rpx;
+    height: 223rpx;
+    background: #F7F7F7;
+   }
+    
+   movable-view {
+    width: 716rpx;
+    height: 223rpx;
+   }
+    
+   .main_item_content {
+   width: 100%;
+    height: 223rpx;
+    /* border-radius: 10rpx; */
+    color: white;
+    padding-left: 16px;
+    padding-top: 78rpx;
+    background: white;
+    align-items: flex-start;
+    justify-content: space-between;
+ 
+   }
+    
+   .delete_btn {
+    width: 184rpx;
+    height: 224rpx;
+    background-color: #E84F3D;
+    /* border-top-right-radius: 10px;
+    border-bottom-right-radius: 10px; */
+    color: #fff;
+    font-size: 28rpx;
+    text-align: center;
+    line-height: 223rpx;
+   }
+   .add_invoice{
+    width: 100%;
+    height: 223rpx;
+    background: #FFFFFF;
+
+   }

+ 4 - 0
pages/groupmeallist/orderDetail/orderDetail.wxml

@@ -97,6 +97,10 @@
 
         </view>
     </view>
+
+
+
+    
     <view class="store_information flex-column" style="  margin-top: 33rpx;">
         <view class="store_information_top">门店信息</view>
         <!-- <view style="width: 93%; border-bottom: 1px #e2e2e2 solid; margin: auto;margin-top: 24rpx;"></view> -->

+ 72 - 0
pages/groupmeallist/submitOrder/submitOrder.js

@@ -0,0 +1,72 @@
+// pages/groupmeallist/submitOrder/submitOrder.js
+Page({
+
+    /**
+     * 页面的初始数据
+     */
+    data: {
+        orderGoodList:[{},{},{},{}],
+        showAllSku:false
+    },
+  //全部显示和收起
+  handleFlodExtend() {
+    this.setData({
+       showAllSku: !this.data.showAllSku
+    })
+},
+    /**
+     * 生命周期函数--监听页面加载
+     */
+    onLoad: function (options) {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面初次渲染完成
+     */
+    onReady: function () {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面显示
+     */
+    onShow: function () {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面隐藏
+     */
+    onHide: function () {
+
+    },
+
+    /**
+     * 生命周期函数--监听页面卸载
+     */
+    onUnload: function () {
+
+    },
+
+    /**
+     * 页面相关事件处理函数--监听用户下拉动作
+     */
+    onPullDownRefresh: function () {
+
+    },
+
+    /**
+     * 页面上拉触底事件的处理函数
+     */
+    onReachBottom: function () {
+
+    },
+
+    /**
+     * 用户点击右上角分享
+     */
+    onShareAppMessage: function () {
+
+    }
+})

+ 9 - 0
pages/groupmeallist/submitOrder/submitOrder.json

@@ -0,0 +1,9 @@
+{
+  "usingComponents": {
+  },
+  "navigationBarBackgroundColor": "#F7F7F7",
+  "navigationBarTextStyle": "black",
+  "navigationBarTitleText": "确认订单",
+  "backgroundColor": "#F7F7F7",
+  "backgroundTextStyle": "light"
+}

+ 122 - 0
pages/groupmeallist/submitOrder/submitOrder.wxml

@@ -0,0 +1,122 @@
+<view class="page flex-column">
+    <view class="submitadress flex-column">
+        <view>
+            <view class="fotSize32" style="margin-left: 25rpx;margin-top: 23rpx;">上海浦东金高路店</view>
+            <view>
+                <image style="width: 18rpx;height: 23rpx;margin-left: 28rpx;margin-top: 17rpx;" src="/images/groupmeallist/distance.png"></image>
+                <span style="margin-left: 10rpx;">距离您1.03km</span>
+            </view>
+            <view class="fontSize24" style="margin-left: 25rpx;margin-top: 16rpx;">高行镇金高路1128号沪上阿姨(上海浦东金高路店)</view>
+        </view>
+
+        <view class="flex-row" style="margin-top: 67rpx;margin-left: 22rpx;justify-content: space-between;">
+            <view class="fontSize-28" style="font-weight: 700;color: #000000;">预留电话</view>
+            <view class="flex-row">
+                <span style="margin-right: 23rpx;color: #000000;" class="fontSize-28"> 18655520192 </span>
+                <view class="autoFill">自动填写</view>
+            </view>
+
+        </view>
+
+        <view style="width: 93%; border-bottom: 1px #e2e2e2 solid; margin:0px auto;margin-top: 55rpx;"></view>
+
+        <view class="flex-row" style="margin-top: 31rpx;margin-left: 22rpx;justify-content: space-between;">
+            <view class="fontSize-28" style="font-weight: 700;color: #000000;">用餐方式</view>
+            <view class="fontSize-28" style="font-weight: 700;color: #000000;margin-right: 24rpx;">门店自取</view>
+        </view>
+    </view>
+
+    <view class="detail_center">
+
+        <!-- 循环订单商品 -->
+        <view class="for_detail_good {{showAllSku ? '': 'fold'}}">
+            <view wx:for="{{orderGoodList}}" wx:for-index="idx" wx:key="idx" wx:for-item="item" style="margin-bottom: 62rpx;">
+
+                <view class="goods_detail flex-row">
+                    <view class="flex-row">
+                        <view class="for_detail_good_title">清爽夏日套餐<span style="color:#AFD250;margin-left:10rpx;font-size:22rpx">x1</span> </view>
+                        <view style="font-size: 24rpx;font-weight: 400;text-align: center;color: #9b9b9b;margin-left: 14rpx;border-bottom: 1rpx #9B9B9B solid;"> {{cartSkuMapData[index].show == true ? '收起' : '详情'}}</view>
+                    </view>
+                    <view class="for_detail_good_price">¥ 58.8</view>
+
+                </view>
+                <!-- 套餐详情 -->
+                <view class="combo_detail">
+                    杨枝甘露清爽版
+                    <span style="font-size: 20rpx;">(大杯/常温/标准糖)</span>
+                    <span style="color:#AFD250;margin-left:10rpx;font-size:22rpx">x1</span>
+                </view>
+
+            </view>
+
+
+
+        </view>
+
+        <view catchtap="handleFlodExtend">
+            <block wx:if="{{showAllSku}}">
+                <view class="exten-flod"> 收起
+                    <image style="width:19rpx;height:10rpx;margin-left: 15rpx;" src="/images/groupmeallist/top_icon.png" />
+                </view>
+            </block>
+            <block wx:else>
+                <view class="exten-flod">查看全部(5)
+                    <image style="width:19rpx;height:10rpx;" src="/images/groupmeallist/bottom_icom.png" />
+                </view>
+            </block>
+        </view>
+
+        <view class="coupon flex-row-between">
+            <view class="flex-row" style="align-items: center;">
+
+                <image style="width: 33rpx;height: 33rpx;margin-left: 31rpx;" src="/images/groupmeallist/coupon.png"></image>
+
+                <view style="font-size: 28rpx;font-weight: 400;text-align: left;color: #000000;margin-left: 13rpx;">可用优惠券</view>
+            </view>
+
+            <view class="flex-row">
+                <view class="coupon_sum">21个可用</view>
+
+                <image style="width: 10rpx;height: 19rpx;margin-right: 35rpx;margin-top: 2rpx;" src="/images/groupmeallist/more_than_the.png"></image>
+            </view>
+        </view>
+
+        <view style="width: 93%; border-bottom: 1px #e2e2e2 solid; margin: auto;margin-top: 13rpx;"></view>
+
+        <view class="all_price flex-row">
+            <view>已优惠 <sapn style="font-size: 28rpx;font-weight: 400;text-align: left;color: #d65065;margin-right: 31rpx;">-¥4</sapn>
+                合计 ¥
+                <sapn style="font-size: 38rpx;font-weight: 400;text-align: left;color: #000000;margin-right: 22rpx;">11</sapn>
+            </view>
+        </view>
+    </view>
+
+
+    <view class="invoice flex-row">
+        <view style="margin-left: 22rpx;color: #000000;" class="fontSize-28">是否开发票</view>
+        <view class="fontSize-28">
+            无
+            <image style="width: 10rpx;height: 19rpx;margin-right: 35rpx;margin-top: 2rpx;" src="/images/groupmeallist/more_than_the.png"></image>
+        </view>
+    </view>
+
+
+    <view class="invoice flex-row">
+        <view style="margin-left: 22rpx;color: #000000;" class="fontSize-28">备注</view>
+        <view class="fontSize-28">
+            无
+            <image style="width: 10rpx;height: 19rpx;margin-right: 35rpx;margin-top: 2rpx;" src="/images/groupmeallist/more_than_the.png"></image>
+        </view>
+    </view>
+
+    <view class="allSum flex-row">
+        <view style="margin-left: 32rpx;color: #000000;" class="fontSize-28">合计:
+            <span style="font-size: 24rpx;font-weight: 400;text-align: left;color: #afd250;">¥</span>
+            <span style="font-size: 32rpx;font-weight: 700;text-align: left;color: #afd250;margin-left: 12rpx;">235.2</span>
+        </view>
+
+        <view class="submit_pay">提交支付</view>
+
+    </view>
+
+</view>

+ 207 - 0
pages/groupmeallist/submitOrder/submitOrder.wxss

@@ -0,0 +1,207 @@
+.submitPage{
+    width: 100%;
+    height: 100%;
+
+
+}
+.submitadress{
+    width: 703rpx;
+    height: 413rpx;
+    background: #ffffff;
+    border-radius: 25rpx;
+    margin: auto;
+    margin-top: 16rpx;
+}
+.autoFill{
+    width: 158rpx;
+    height: 39rpx;
+    border: 2rpx solid #afd250;
+    border-radius: 10rpx;
+    text-align: center;
+    margin-right: 24rpx;
+    color: #AFD250;
+    margin-top: 5rpx;
+}
+
+
+
+
+.detail_center {
+    width: 709rpx;
+    min-height: 620rpx;
+    background: #ffffff;
+    border-radius: 25rpx;
+    margin: auto;
+    margin-top: 19rpx;
+
+}
+.coupon_sum{
+    /* width: 127rpx; */
+    height: 36rpx;
+    background: #ffffff;
+    border: 2rpx solid #d65065;
+    border-radius: 20rpx;
+
+    font-size: 24rpx;
+    font-weight: 400;
+    text-align: center;
+    color: #d65065;
+    padding-left: 10rpx;
+    padding-right: 10rpx;
+
+    margin-right: 16rpx;
+}
+
+.detail_stroe {
+    width: 100%;
+    height: 65rpx;
+    justify-content: space-between;
+    margin-top: 19rpx;
+    align-items: center;
+    text-align: center;
+    line-height: 65rpx;
+    margin-top: 19rpx;
+
+}
+
+.detail_stroe_name {
+    font-size: 32rpx;
+    font-weight: 700;
+    text-align: center;
+    color: #000000;
+    margin-left: 25rpx;
+    margin-top: 26rpx;
+}
+
+.for_detail_good {
+    /* max-height: 325rpx; */
+    max-height: 372rpx;
+    width: 100%;
+    display: flex;
+    flex-flow: column nowrap;
+    justify-content: flex-start;
+    align-items: flex-start;
+    margin-top: 48rpx;
+    margin-left: 25rpx;
+    margin-top: 48rpx;
+    overflow-y: auto;
+
+
+}
+
+/* 滚动条消失术 */
+.for_detail_good::-webkit-scrollbar {
+    display: none;
+}
+
+.for_detail_good.fold {
+    max-height: 325rpx;
+    overflow: hidden;
+}
+
+.for_detail_good_title {
+    /* width: 204px; */
+    height: 37rpx;
+    font-size: 28rpx;
+
+    font-weight: 700;
+    text-align: left;
+    color: #000000;
+}
+
+.goods_detail {
+
+    justify-content: space-between !important;
+    width: 700rpx;
+
+}
+
+.for_detail_good_price {
+
+    font-size: 32rpx;
+
+    font-weight: 700;
+    text-align: left;
+    color: #afd250;
+    margin-right: 61rpx;
+}
+
+.combo_detail {
+    /* width: 168px; */
+    height: 32rpx;
+    font-size: 24rpx;
+    font-weight: 400;
+    text-align: left;
+    color: #9b9b9b;
+    display: inline-block;
+    margin-top: 10rpx;
+}
+
+
+.exten-flod {
+    width: 220rpx;
+    height: 58rpx;
+    background: #ffffff;
+    border: 2rpx solid #d8d8d8;
+    border-radius: 8rpx;
+    margin: auto;
+    text-align: center;
+    line-height: 58rpx;
+    margin-top: 39rpx;
+    display: flex;
+    flex-flow: row nowrap;
+    justify-content: center;
+    align-items: center;
+    font-size: 24rpx;
+    font-weight: 400;
+    color: #6b6b6b;
+}
+
+.coupon{
+    width: 100%;
+    height: 33rpx;
+    margin-top: 30rpx;
+    
+}
+.all_price{
+    width: 100%;
+    height: 41rpx;
+    justify-content: flex-end;
+    align-items: center;
+    margin-top: 23.5rpx;
+    /* margin-bottom: 35rpx; */
+
+}
+
+.invoice{
+    width: 703rpx;
+    height: 86rpx;
+    background: #ffffff;
+    border-radius: 25rpx;
+    margin: auto;
+    margin-top: 18rpx;
+    justify-content: space-between;
+}
+.allSum{
+    width: 100%;
+    height: 141rpx;
+    /* border-radius: 41px; */
+    background: #ffffff;
+
+    justify-content: space-between;
+    position: fixed;
+    bottom: 20rpx;
+    left: 0rpx;
+    z-index: 100;
+}
+
+.submit_pay{
+    width: 207rpx;
+    height: 81rpx;
+    background: #afd250;
+    border-radius: 41rpx;
+    text-align: center;
+    line-height: 81rpx;
+    color: #ffffff;
+    margin-right: 23rpx;
+}

+ 21 - 0
project.private.config.json

@@ -303,6 +303,27 @@
                     "name": "",
                     "pathName": "pages/groupmeallist/myOrder/myOrder",
                     "query": "",
+                    "launchMode": "default",
+                    "scene": null
+                },
+                {
+                    "name": "",
+                    "pathName": "pages/groupmeallist/invoicesList/invoicesList",
+                    "query": "",
+                    "launchMode": "default",
+                    "scene": null
+                },
+                {
+                    "name": "",
+                    "pathName": "pages/groupmeallist/addinvoices/addinvoices",
+                    "query": "",
+                    "launchMode": "default",
+                    "scene": null
+                },
+                {
+                    "name": "",
+                    "pathName": "pages/groupmeallist/submitOrder/submitOrder",
+                    "query": "",
                     "scene": null,
                     "launchMode": "default"
                 }