支付之前

This commit is contained in:
asd
2019-12-24 11:24:38 +08:00
parent 14cdb06c0d
commit dd9f604dd3
4 changed files with 226 additions and 9 deletions

View File

@@ -1,6 +1,6 @@
<template> <template>
<view> <view>
<view class="orderItem" v-for="(item,index) in shops" :key="index"> <view class="orderItem" v-for="(item,index) in shops" :key="index" @click="todetail(item.id)">
<view class="title"> <view class="title">
<view class="orderno">订单编号{{item.order_no}}</view> <view class="orderno">订单编号{{item.order_no}}</view>
<view class="state">{{item.state}}</view> <view class="state">{{item.state}}</view>
@@ -54,6 +54,12 @@ export default {
url:"/pages/comment/comment?orderid="+e url:"/pages/comment/comment?orderid="+e
}) })
}, },
todetail(e){
console.log("去详情",e)
uni.navigateTo({
url:"/pages/order-detail/order-detail?id="+e
})
},
shouhuo(e){ shouhuo(e){
console.log(e) console.log(e)
requestP.requestP({ requestP.requestP({

View File

@@ -1,17 +1,228 @@
{ {
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages "pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{ {
"path": "pages/index/index", "path": "pages/index/index",
"style": { "style": {
"navigationBarTitleText": "uni-app" "navigationBarTitleText": "uni-app"
} }
}, },
{
"path": "pages/login/login",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{ {
"path": "pages/addr-add/addr-add", "path": "pages/addr-add/addr-add",
"style": { "style": {
"navigationBarTitleText": "uni-app" "navigationBarTitleText": "uni-app"
} }
},
{
"path": "pages/assess/assess",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/assess-detail/assess-detail",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/ceshi/ceshi",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/changecar/changecar",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/chooseaddr/chooseaddr",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/choosebaoyang/choosebaoyang",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/choosechexing/choosechexing",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/choosefdj/choosefdj",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/choosesize/choosesize",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/comment/comment",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/mine/mine",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/mygarage/mygarage",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/offer-list/offer-list",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/order-detail/order-detail",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/order-sub/order-sub",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/orderlist/orderlist",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/pintuanorder/pintuanorder",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/pintuanshop/pintuanshop",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/pintuanshopdetail/pintuanshopdetail",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/proyear/proyear",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/search/search",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/seckill/seckill",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/seckilldetail/seckilldetail",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/serchshaixuan/serchshaixuan",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/shaixuan/shaixuan",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/shopdetail/shopdetail",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/shopping/shopping",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/shopservice/shopservice",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/suggest/suggest",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/suggestion/suggestion",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/type/type",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/xzcx/xzcx",
"style": {
"navigationBarTitleText": "uni-app"
}
},
{
"path": "pages/xzcxlist/xzcxlist",
"style": {
"navigationBarTitleText": "uni-app"
}
} }
], ],
"globalStyle": { "globalStyle": {
"navigationBarTextStyle": "black", "navigationBarTextStyle": "black",

View File

@@ -18,6 +18,6 @@ export default {
<style lang="scss"> <style lang="scss">
.pinpai{ .pinpai{
background-color: white
} }
</style> </style>

View File

@@ -160,13 +160,13 @@ export default {
} }
}).then(res => { }).then(res => {
console.log(res); console.log(res);
if (res.data.code) { // if (res.data.code) {
uni.showToast({ // uni.showToast({
title: "支付成功", // title: "支付成功",
icon: "success", // icon: "success",
duration: 2000 // duration: 2000
}); // });
} // }
}); });
console.log("asd"); console.log("asd");
} else if (this.canshu.shoptype == 1) { } else if (this.canshu.shoptype == 1) {