Merge branch 'youmengting-dev' of http://gitea.dctpay.com/yangjie/high-mini into new-dev

master
杨杰 2 years ago
commit 31d9537ce6
  1. 9
      Utils/js/date.js
  2. 12
      components/cart-choose/cart-choose.vue
  3. 8
      components/goods-list/goods-list.vue
  4. 0
      components/no-more/no-more.vue
  5. 90
      components/wuliuPupup/data.json
  6. 228
      components/wuliuPupup/wuliuPupup.vue
  7. 273
      pages.json
  8. 514
      pages/classify/order/orderDetail.vue
  9. 6
      pages/tabBar/classify/classify.vue
  10. 9
      pages/tabBar/user/user.vue
  11. 7
      pages/user/news/news.vue
  12. 214
      pages/user/order_list/order_list.vue
  13. 0
      physical-merchants/address/addNewAddress/addNewAddress.vue
  14. 2
      physical-merchants/address/address.vue
  15. 121
      physical-merchants/classify/cart/cart.vue
  16. 0
      physical-merchants/classify/goods-comment-child/goods-comment-child.vue
  17. 0
      physical-merchants/classify/goods-comment/data.json
  18. 0
      physical-merchants/classify/goods-comment/goods-comment.vue
  19. 2
      physical-merchants/classify/goods-search/goods-search.vue
  20. 16
      physical-merchants/classify/goodsDetail/goodsDetail.vue
  21. 2
      physical-merchants/classify/order/editOrder.vue
  22. 4
      physical-merchants/classify/order/order.vue
  23. 691
      physical-merchants/classify/order/orderDetail.vue
  24. 0
      physical-merchants/classify/order/orderList.vue
  25. 23
      physical-merchants/classify/order/pay.vue
  26. 0
      physical-merchants/classify/order/paymentResult.vue
  27. 10
      physical-merchants/classify/order/trackNode/trackNode.vue
  28. 261
      physical-merchants/classify/order/wuliuPupup/wuliuPupup.vue
  29. 19
      physical-merchants/settleAccounts/detail-popup/detail-popup.vue
  30. 97
      physical-merchants/settleAccounts/settleAccounts.vue
  31. BIN
      physical-merchants/static/img/unioncard.png
  32. BIN
      physical-merchants/static/img/wechat.png
  33. 0
      physical-merchants/static/img/wuliu/ic-delivering-G.png
  34. 0
      physical-merchants/static/img/wuliu/ic-delivering.png
  35. 0
      physical-merchants/static/img/wuliu/ic-order-commit-G.png
  36. 0
      physical-merchants/static/img/wuliu/ic-order-commit.png
  37. 0
      physical-merchants/static/img/wuliu/ic-pacakaging-G.png
  38. 0
      physical-merchants/static/img/wuliu/ic-pacakaging.png
  39. 0
      physical-merchants/static/img/wuliu/ic-package-failed-G.png
  40. 0
      physical-merchants/static/img/wuliu/ic-package-failed.png
  41. 0
      physical-merchants/static/img/wuliu/ic-paied-G.png
  42. 0
      physical-merchants/static/img/wuliu/ic-paied.png
  43. 0
      physical-merchants/static/img/wuliu/ic-sending-G.png
  44. 0
      physical-merchants/static/img/wuliu/ic-sending.png
  45. BIN
      physical-merchants/static/img/yl.png
  46. 0
      physical-merchants/wuliu/wuliu.vue
  47. BIN
      static/img/zfb.png
  48. 7
      uni.scss

@ -5,7 +5,11 @@ const isNullOrEmpty = function(val) {
return false;
}
}
const numFormat = (money) =>{
return parseFloat(money).toFixed(2)
}
const timeFormat = (value, format) => {
let date = new Date(value);
let y = date.getFullYear();
@ -54,5 +58,6 @@ const timeFormat = (value, format) => {
export {
isNullOrEmpty,
timeFormat
timeFormat,
numFormat
}

@ -37,7 +37,7 @@
</view> -->
<!-- 选分类 -->
<view class="choose-bottom">
<view class="choose-bottom marb10">
<!-- 类型分类 -->
<view class="choose-bottom-title fontwig6 font13 mart10">
选择规格
@ -54,9 +54,9 @@
</view>
<!-- 数量分类 -->
<view class="choose-bottom-title fontwig6 font13 mart20 choose-num">
<view class="choose-bottom-title paddbotm10 fontwig6 font13 mart10 choose-num">
<view class="">购买数量</view>
<uni-number-box style="transform: scale(0.9);" v-model="chooseNumber" :min="1" :max="specificationList[chooseIndex].stock" @noMoreLess="noMoreLess" @change="changeNumValue" />
<uni-number-box style="transform: scale(0.9);" v-model="chooseNumber" :min="1" :max="specificationList[chooseIndex].stock || 9999999" @noMoreLess="noMoreLess" @change="changeNumValue" />
</view>
</view>
@ -212,7 +212,7 @@
obj = JSON.stringify(obj)
uni.navigateTo({
url: '/pages/settleAccounts/settleAccounts?goodsList='+obj
url: '/physical-merchants/settleAccounts/settleAccounts?goodsList='+obj
})
// this.$emit("close")
@ -225,7 +225,7 @@
//
goAddress(){
uni.navigateTo({
url:"/pages/address/address"
url:"/physical-merchants/address/address"
})
},
@ -266,7 +266,7 @@
.choose-detail {
position: relative;
padding: 20rpx;
padding: 20rpx 20rpx 80rpx 20rpx;
//
.choose-top {
display: flex;

@ -142,9 +142,9 @@
</template>
<script>
import noMore from '@/pages/classify/no-more/no-more.vue'
import noMore from '@/components/no-more/no-more.vue'
import wybPopup from '@/components/wyb-popup/wyb-popup.vue'
import cartChoose from '@/pages/classify/cart-choose/cart-choose.vue'
import cartChoose from '@/components/cart-choose/cart-choose.vue'
import { findGoodsSkuByGoodsId,getShoppingCartList } from '@/Utils/physicalObject.js'
import uniBadge from '@/components/uni-badge/components/uni-badge/uni-badge.vue'
const app = getApp();
@ -269,7 +269,7 @@
methods:{
goCart(){
uni.navigateTo({
url:"/pages/classify/cart/cart"
url:"/physical-merchants/classify/cart/cart"
})
},
//
@ -290,7 +290,7 @@
//
goGoodsDetail(id) {
uni.navigateTo({
url: '../../classify/goodsDetail/goodsDetail?goodsId=' + id
url: '/physical-merchants/classify/goodsDetail/goodsDetail?goodsId=' + id
})
},

@ -1,90 +0,0 @@
{
"data": {
"expressCode": "ZTO",
"expressCompanyName": "中通快递",
"number": "78672864399912",
"logisticsStatus": "DELIVERING",
"logisticsStatusDesc": "派件中",
"theLastMessage": "【重庆市】 快件已被【菜鸟】的【重庆九龙坡西城大院店】代收,请及时取件,如有疑问请联系(18598776063)。感谢使用中通快递,期待再次为您服务!",
"theLastTime": "2023-04-06 10:21:00",
"takeTime": "1天14小时43分",
"logisticsTraceDetails": [
{
"areaCode": "CN330700000000",
"areaName": "浙江省,金华市",
"subLogisticsStatus": "ACCEPT",
"time": 1680608263000,
"logisticsStatus": "ACCEPT",
"desc": "【金华市】 【义乌青口】(0579-85319001) 的 下骆宅仓(13335991154) 已揽收"
},
{
"areaCode": "CN330700000000",
"areaName": "浙江省,金华市",
"subLogisticsStatus": "TRANSPORT",
"time": 1680608415000,
"logisticsStatus": "TRANSPORT",
"desc": "【金华市】 快件离开 【义乌青口】 已发往 【重庆巴南转运中心】"
},
{
"areaCode": "CN330782000000",
"areaName": "浙江省,金华市,义乌市",
"subLogisticsStatus": "TRANSPORT",
"time": 1680616875000,
"logisticsStatus": "TRANSPORT",
"desc": "【金华市】 快件已经到达 【义乌中转部】"
},
{
"areaCode": "CN330782000000",
"areaName": "浙江省,金华市,义乌市",
"subLogisticsStatus": "TRANSPORT",
"time": 1680617054000,
"logisticsStatus": "TRANSPORT",
"desc": "【金华市】 快件离开 【义乌中转部】 已发往 【重庆巴南转运中心】"
},
{
"areaCode": "CN500113000000",
"areaName": "重庆,重庆市,巴南区",
"subLogisticsStatus": "TRANSPORT",
"time": 1680715359000,
"logisticsStatus": "TRANSPORT",
"desc": "【重庆市】 快件已经到达 【重庆巴南转运中心】"
},
{
"areaCode": "CN500113000000",
"areaName": "重庆,重庆市,巴南区",
"subLogisticsStatus": "TRANSPORT",
"time": 1680720424000,
"logisticsStatus": "TRANSPORT",
"desc": "【重庆市】 快件离开 【重庆巴南转运中心】 已发往 【九龙坡区】"
},
{
"areaCode": "CN500107000000",
"areaName": "重庆,重庆市,九龙坡区",
"subLogisticsStatus": "TRANSPORT",
"time": 1680730809000,
"logisticsStatus": "TRANSPORT",
"desc": "【重庆市】 快件已经到达 【九龙坡区】"
},
{
"areaCode": "CN500107000000",
"areaName": "重庆,重庆市,九龙坡区",
"subLogisticsStatus": "DELIVERING",
"time": 1680737638000,
"logisticsStatus": "DELIVERING",
"desc": "【重庆市】 【九龙坡区】 的王曾真(17783049582) 正在第1次派件, 请保持电话畅通,并耐心等待(95720为中通快递员外呼专属号码,请放心接听)"
},
{
"areaCode": "CN500107000000",
"areaName": "重庆,重庆市,九龙坡区",
"subLogisticsStatus": "STA_INBOUND",
"time": 1680747660000,
"logisticsStatus": "DELIVERING",
"desc": "【重庆市】 快件已被【菜鸟】的【重庆九龙坡西城大院店】代收,请及时取件,如有疑问请联系(18598776063)。感谢使用中通快递,期待再次为您服务!"
}
]
},
"msg": "成功",
"success": true,
"code": 200,
"taskNo": "756902251154716910060287"
}

@ -1,228 +0,0 @@
<template>
<wybPopup ref="popup" type="bottom" width="500" scrollY="true" radius="0" :showCloseIcon="true">
<view class="pd-main wuliupop backcor9">
<view class="pop-title fontwig6"><text>详细信息</text></view>
<view class="pd-main backcolorfff border-8r font14">
<view class="dis-flex flex-sp mart10 marb10 paddbotm10 border-b">
<view class="dis-flex">
<!-- <image class="wuliu-img" src="https://pic.616pic.com/ys_bnew_img/00/07/04/1ZtrvD1AMY.jpg" mode="aspectFill"></image> -->
<text class="paddleft5">{{tracesData.expressCompanyName}}</text>
<text class="paddleft5">{{tracesData.number}}</text>
</view>
<view class="dis-flex ">
<text @click="copyText(tracesData.number)">复制</text>
<text class="paddleft5 paddtright5 fcor666">|</text>
<text @click="callPhone">打电话</text>
</view>
</view>
<block v-for="(item, index) in tracesData.logisticsTraceDetails" >
<trackNode :key="index" :is-first="index===tracesData.length-1" :is-newest="index===0" :is-main-node="item.logisticsStatus!='TRANSPORT'" :node-data="item"></trackNode>
</block>
</view>
</view>
</wybPopup>
</template>
<script>
import wybPopup from '@/components/wyb-popup/wyb-popup.vue'
import trackNode from '@/components/trackNode/trackNode.vue'
let dataList = require('./data.json')
export default {
data () {
return {
tracesData:null,
// [
// {
// acceptStation: '', //
// createTime: '2019-10-24 15: 27: 16',
// status: 'COMPLETE', //
// phone: '', //
// statusName: '', //
// isMainNode: true // icon
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 26: 41',
// status: 'DELIVERING',
// phone: '16677778888',
// statusName: '',
// isMainNode: true
// },
// {
// acceptStation: 'XXX',
// createTime: '2019-10-24 15: 26: 41',
// status: 'DELIVERING',
// phone: '',
// statusName: '',
// isMainNode: false
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 26: 18',
// status: 'DELIVERING',
// phone: '',
// statusName: '',
// isMainNode: false
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 26: 07',
// status: 'DELIVERING',
// phone: '',
// statusName: '',
// isMainNode: false
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 25: 54',
// status: 'DELIVERING',
// phone: '',
// statusName: '',
// isMainNode: false
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 25: 17',
// status: 'DELIVERING',
// phone: '',
// statusName: '',
// isMainNode: false
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 25: 00',
// status: 'WATTING_DELIVER',
// phone: '',
// statusName: '',
// isMainNode: true
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 24: 00',
// status: 'WATTING_DELIVER',
// phone: '',
// statusName: '',
// isMainNode: false
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 22: 30',
// status: 'PAYED',
// statusName: '',
// isMainNode: true
// },
// {
// acceptStation: '',
// createTime: '2019-10-24 15: 22: 00',
// status: 'WATTING_PAY',
// statusName: '',
// isMainNode: true
// }
// ]
}
},
components:{
wybPopup,
trackNode
},
created(){
this.tracesData=dataList.data;
this.tracesData.logisticsTraceDetails=this.tracesData.logisticsTraceDetails.sort((item,item2)=>{
if(item.logisticsStatus == 'TRANSPORT'){
item.isMainNode=false;
}else{
item.isMainNode=true;
}
return item2.time - item.time;
})
},
methods:{
show(){
this.$refs.popup.show();
},
//
copyText(text){
// #ifdef H5
this.$copyText(text).then(
res => {
uni.showToast({
title: '复制成功'
})
}
)
// #endif
// #ifndef H5
uni.setClipboardData({
data: text,
success: () => {
uni.showToast({
title: '复制成功'
})
}
})
// #endif
},
//
callPhone(){
// uni.showModal({
// title: '',
// content: '85655525652',
// success: function(res) {
// if (res.confirm) {
// uni.makePhoneCall({
// phoneNumber: '85655525652', //
// success: function(e) {
// console.log(e);
// },
// fail: function(e) {
// console.log(e);
// }
// })
// }
// }
// })
},
}
}
</script>
<style lang="scss" scoped>
.wuliu-img{
width: 30px;
height: 30px;
border-radius: 50%;
}
.border-b{
border-bottom: 2px solid #f6f6f6;
}
.wuliupop{
padding: 50px 10px 10px;
}
.pop-title{
text-align: center;
height: 50px;
line-height: 50px;
font-size: 18px;
position: fixed;
top:0;
left: 0;
right: 0;
background-color: #f6f6f6;
}
</style>

@ -27,7 +27,8 @@
"softinputNavBar": "none"
}
}
},{
},
{
"path": "pages/tabBar/classify/classify",
"style": {
"navigationBarTextStyle": "white",
@ -40,97 +41,98 @@
"softinputNavBar": "none"
}
}
},{
"path": "pages/classify/goodsDetail/goodsDetail",
"style": {
"navigationBarTitleText": "商品详情",
"enablePullDownRefresh": false
}
},
{
"path": "pages/classify/goods-search/goods-search",
"style": {
"navigationBarTitleText": "搜索",
"enablePullDownRefresh": false
}
},
{
"path": "pages/classify/cart/cart",
"style": {
"navigationBarTitleText": "购物车",
"enablePullDownRefresh": false
}
},
{
"path": "pages/classify/goods-comment/goods-comment",
"style": {
"navigationBarTitleText": "查看评论",
"enablePullDownRefresh": false
}
},
{
"path": "pages/address/address",
"style": {
"navigationBarTitleText": "我的地址",
"enablePullDownRefresh": false
}
},
{
"path": "pages/address/addNewAddress/addNewAddress",
"style": {
"navigationBarTitleText": "新增地址",
"enablePullDownRefresh": false
}
},
{
"path": "pages/settleAccounts/settleAccounts",
"style": {
"navigationBarTitleText": "订单确认",
"enablePullDownRefresh": false
}
},
{
"path": "pages/classify/order/order",
"style": {
"navigationBarTitleText": "订单列表",
"enablePullDownRefresh": false
}
},
{
"path": "pages/classify/order/orderDetail",
"style": {
"navigationBarTitleText": "订单详情",
"enablePullDownRefresh": false
}
},
{
"path": "pages/classify/order/editOrder",
"style": {
"navigationBarTitleText": "修改订单",
"enablePullDownRefresh": false
}
},
// {
// "path": "pages/wuliu/wuliu",
// "path": "pages/classify/goodsDetail/goodsDetail",
// "style": {
// "navigationBarTitleText": "物流信息",
// "navigationBarTitleText": "商品详情",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/classify/goods-search/goods-search",
// "style": {
// "navigationBarTitleText": "搜索",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/classify/cart/cart",
// "style": {
// "navigationBarTitleText": "购物车",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/classify/goods-comment/goods-comment",
// "style": {
// "navigationBarTitleText": "查看评论",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/address/address",
// "style": {
// "navigationBarTitleText": "我的地址",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/address/addNewAddress/addNewAddress",
// "style": {
// "navigationBarTitleText": "新增地址",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/settleAccounts/settleAccounts",
// "style": {
// "navigationBarTitleText": "订单确认",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/classify/order/order",
// "style": {
// "navigationBarTitleText": "订单列表",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/classify/order/orderDetail",
// "style": {
// "navigationBarTitleText": "订单详情",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/classify/order/editOrder",
// "style": {
// "navigationBarTitleText": "修改订单",
// "enablePullDownRefresh": false
// }
// },
// // {
// // "path": "pages/wuliu/wuliu",
// // "style": {
// // "navigationBarTitleText": "物流信息",
// // "enablePullDownRefresh": false
// // }
// // },
// {
// "path": "pages/classify/order/pay",
// "style": {
// "navigationBarTitleText": "收银台页",
// "enablePullDownRefresh": false
// }
// },
// {
// "path": "pages/classify/order/paymentResult",
// "style": {
// "navigationBarTitleText": "支付结果",
// "enablePullDownRefresh": false
// }
// },
{
"path": "pages/classify/order/pay",
"style": {
"navigationBarTitleText": "收银台页",
"enablePullDownRefresh": false
}
},
{
"path": "pages/classify/order/paymentResult",
"style": {
"navigationBarTitleText": "支付结果",
"enablePullDownRefresh": false
}
},
{
"path": "pages/qianZhuPay/union-pay/union-pay",
"style": {
@ -1077,7 +1079,104 @@
}
}]
}],
},{
"root":"physical-merchants",
"pages":[
{
"path": "classify/goodsDetail/goodsDetail",
"style": {
"navigationBarTitleText": "商品详情",
"enablePullDownRefresh": false
}
},
{
"path": "classify/goods-search/goods-search",
"style": {
"navigationBarTitleText": "搜索",
"enablePullDownRefresh": false
}
},
{
"path": "classify/cart/cart",
"style": {
"navigationBarTitleText": "购物车",
"enablePullDownRefresh": false
}
},
{
"path": "classify/goods-comment/goods-comment",
"style": {
"navigationBarTitleText": "查看评论",
"enablePullDownRefresh": false
}
},
{
"path": "address/address",
"style": {
"navigationBarTitleText": "我的地址",
"enablePullDownRefresh": false
}
},
{
"path": "address/addNewAddress/addNewAddress",
"style": {
"navigationBarTitleText": "新增地址",
"enablePullDownRefresh": false
}
},
{
"path": "settleAccounts/settleAccounts",
"style": {
"navigationBarTitleText": "订单确认",
"enablePullDownRefresh": false
}
},
{
"path": "classify/order/order",
"style": {
"navigationBarTitleText": "订单列表",
"enablePullDownRefresh": false
}
},
{
"path": "classify/order/orderDetail",
"style": {
"navigationBarTitleText": "订单详情",
"enablePullDownRefresh": false
}
},
{
"path": "classify/order/editOrder",
"style": {
"navigationBarTitleText": "修改订单",
"enablePullDownRefresh": false
}
},
// {
// "path": "wuliu/wuliu",
// "style": {
// "navigationBarTitleText": "物流信息",
// "enablePullDownRefresh": false
// }
// },
{
"path": "classify/order/pay",
"style": {
"navigationBarTitleText": "收银台页",
"enablePullDownRefresh": false
}
},
{
"path": "classify/order/paymentResult",
"style": {
"navigationBarTitleText": "支付结果",
"enablePullDownRefresh": false
}
}
]
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "",

@ -1,514 +0,0 @@
<template>
<view class="backcor9 pd-main pdb50">
<!-- 已送达 -->
<view v-if="status == 1" class="order-de-title pd-main">
<view class="font22 fcor333">
已送达
</view>
<view class="font16 fcor666 mart10">
感谢您的支持如有问题可以联系我们
</view>
</view>
<!-- 待支付 -->
<view v-if="status == 0" class="order-de-title pd-main">
<view class="font22 fcor333">
待支付
</view>
<view class="font16 fcor666 mart10">
<text class="fcorred paddtright10" >{{countdownm}}:{{countdowns}}</text>后订单自动取消
</view>
</view>
<view v-if="status == 2" class="order-de-title pd-main">
<view class="font22 fcor333">
订单已取消
</view>
<view class="font16 fcor666 mart10">
您的订单已取消
</view>
</view>
<!-- 待支付时支持修改地址 -->
<view v-if="status == 0" class="marb20 pd-main backcolorfff border-8r">
<view class="flex-center-sp pd-tb10">
<view class="">
<view class="fontwig6 font18">金科才能收到你看得出纳思达</view>
<view class="mart5 fcor666"><text class="paddleft10">15652365478</text></view>
</view>
<view class="align-fs edit-msg " @click="editOrder">
修改
</view>
</view>
</view>
<view class="marb20 pd-main backcolorfff border-8r">
<!-- 商品信息 -->
<view v-for="(item,index) in [1,2,3]" :key="index" class="marb10 flex-center-sp">
<view class="">
<image class="st-img" :src="images[0]" mode="aspectFill"></image>
</view>
<view class="flex-1 flex-center-sp">
<view class="width60 paddleft10">
<view class="marb10">单只甜玉米 单只/250-300g</view>
<view class="marb5">单价: ¥ 3.99/</view>
<view class="fcor666">数量: 1</view>
</view>
<view class="font16 tr align-fs">
<view class="fontwig6">实付: ¥ 3.42</view>
<view class="fcor666">¥ 3.99</view>
</view>
</view>
</view>
<!-- 当商品超过3个的时候 -->
<view v-if="!moreThanThree" class="goodsMore flex-center" @click="checkMore">
还有{{3}}种商品<text class="icon-ymt to-down"></text>
</view>
<block v-if="moreThanThree">
<view v-for="(item,index) in [1,2,3]" :key="index" class="marb10 flex-center-sp">
<view class="">
<image class="st-img" :src="images[0]" mode="aspectFill"></image>
</view>
<view class="flex-1 flex-center-sp">
<view class="width60 paddleft10">
<view class="marb10">单只甜玉米 单只/250-300g</view>
<view class="marb5">单价: ¥ 3.99/</view>
<view class="fcor666">数量: 1</view>
</view>
<view class="font16 tr align-fs">
<view class="fontwig6">实付: ¥ 3.42</view>
<view class="fcor666">¥ 3.99</view>
</view>
</view>
</view>
</block>
<view v-if="moreThanThree" class="goodsMore flex-center" @click="checkMore">
{{6}}种商品<text class="icon-ymt to-up"></text>
</view>
<!-- 商品金额 -->
<view class="flex-center-sp pd-tb10">
<view class="">商品金额</view>
<view class="fontwig6"><text class="paddtright5">¥</text>69.89</view>
</view>
<!-- 优惠券 -->
<view class="flex-center-sp pd-tb10">
<view class="">优惠券</view>
<view class="fontwig6 fcorred">-<text class="paddtright5">¥</text>10</view>
</view>
<!-- 运费 -->
<view class="flex-center-sp pd-tb10">
<view class="">运费
<!-- <text class="icon-ymt question fcor666 font16 paddleft5"></text> -->
</view>
<view class="fontwig6">
<text class="fcor666 td-lt">¥6</text>
<text class="paddleft10"><text class="paddtright5">¥</text>0</text>
</view>
</view>
<!-- 积分 -->
<view class="flex-center-sp pd-tb10">
<view class="">积分</view>
<view class="fontwig6 fcorred">-<text class="paddtright5">¥</text>2</view>
</view>
<!--支付优惠 -->
<view class="flex-center-sp pd-tb10">
<view class="">支付优惠</view>
<view class="fontwig6 fcorred">-<text class="paddtright5">¥</text>0.01</view>
</view>
<!-- 价格总额 -->
<view class="tr fontwig6 pd-tb10">
<text class="paddtright10">已优惠<text class="fcorred">¥ 12.01</text></text>
<text>实付¥<text class="font20 paddleft5">58.88</text></text>
</view>
<!-- 待支付时开始 -->
<!-- 订单编号 -->
<block v-if="status == 0">
<view class="flex-center-sp pd-tb10 bordert">
<view class="fcor666">订单编号</view>
<view class=" flex-center-sp">
<text class="tr flex-1">1209 2418 0001 0039</text>
<text class=" margle10 font12 copy-num fcor666" @click="copyText('1209 2418 0001 0039')">复制</text>
</view>
</view>
<!-- 下单时间 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666">下单时间</view>
<view class=" ">
2023-03-04 17:05:27
</view>
</view>
<!-- 待支付时结束 -->
</block>
</view>
<!-- 物流信息 -->
<view v-if="status == 1 ||status == 2" class=" pd-main backcolorfff border-8r">
<!-- 预约时间 -->
<!-- <view class="flex-center-sp pd-tb10">
<view class="fcor666">预约时间</view>
<view class=" ">尽快送达(预计18:10)</view>
</view> -->
<!-- 收货信息 -->
<view class="flex-center-sp pd-tb10">
<view class="fcor666 align-fs">收货信息</view>
<view class=" tr">
<view class=" ">重庆市出厂时都曾经常吃的后面2楼</view>
<view class=" ">陈女士 175896546526</view>
</view>
</view>
<!-- 物流信息 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666">物流信息</view>
<view class=" " @click="checkWuliu">
查看物流信息<text class="icon-ymt to-right fcor666 font16 paddleft5"></text>
</view>
</view>
<!-- 订单编号 -->
<view class="flex-center-sp pd-tb10 bordert">
<view class="fcor666">订单编号</view>
<view class=" flex-center-sp">
<text class="tr flex-1">{{orderID}}</text>
<text class=" margle10 font12 copy-num fcor666"
@click="copyText(orderID)"
>复制</text>
</view>
</view>
<!-- 下单时间 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666">下单时间</view>
<view class=" ">
2023-03-04 17:05:27
</view>
</view>
<!-- 支付方式 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666">支付方式</view>
<view class=" ">
微信支付
</view>
</view>
</view>
<!-- 待支付时底部的按钮 -->
<view v-if="status == 0" class="toPay font14 backcolorfff">
<view class="btn" @click="cancelOrder">取消订单</view>
<view class="btn" @click="editOrder">修改订单</view>
<view class="btn bgred" @click="payOrder">立即支付{{countdownm}}:{{countdowns}}</view>
</view>
<!-- 订单取消时 -->
<view v-if="status == 2" class="toPay font14 backcolorfff">
<view class="btn oneMore" @click="oneMoreOrder">再来一单</view>
<view class="btn" @click="deleteOrder">删除订单</view>
</view>
<wuliuPopup ref="wuliu"></wuliuPopup>
</view>
</template>
<script>
import wuliuPopup from '@/components/wuliuPupup/wuliuPupup.vue'
const app =getApp()
import {getDetailByOrderNo} from '@/Utils/Api.js'
export default {
data(){
return{
// 0:1,2
status:0,
orderID:'1209 2418 0001 0039',
moreThanThree:false,
images: ["https://d1.shopxo.vip/static/upload/images/goods/2019/01/14/1547451274847894.jpg","https://d1.shopxo.vip/static/upload/images/goods/2019/01/14/1547451274847894.jpg","https://d1.shopxo.vip/static/upload/images/goods/2019/01/14/1547451274847894.jpg","https://d1.shopxo.vip/static/upload/images/goods/2019/01/14/1547451274847894.jpg","https://d1.shopxo.vip/static/upload/images/goods/2019/01/14/1547451274847894.jpg"],
countdownh: '', //
countdownm: '', //
countdowns:'',//
timers:null,
// recinfo:{
// createTime:1680744355375,
// },
//
orderId:'',//id
recinfo: [],
}
},
components:{
wuliuPopup
},
onLoad(option) {
this.orderId = option.id
},
onUnload() {
clearInterval(this.timers);
},
onShow(){
//
// if(this.status == 0){
// this.timers = setInterval(() => {
// this.showtime()
// }, 1000)
// }
//
this.getDetailByOrderNo();
},
methods:{
//
getDetailByOrderNo() {
uni.showLoading({
title: '加载中...'
})
let params = {
orderNo: this.orderId,
}
getDetailByOrderNo(params).then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
this.recinfo = res.return_data;
// if (res.return_data.productType == 6) {
// this.getOrderByOrderNo();
// }
if (res.return_data.orderStatus == 1) {
this.timers = setInterval(() => {
this.showtime()
}, 1000)
}
}
})
},
showtime() {
var nowtime = (new Date()).getTime();//
var endtime = this.recinfo.createTime + 600000; // 60000010
var lefttime = endtime - nowtime; //
var leftd = Math.floor(lefttime / (1000 * 60 * 60 * 24)); //
var lefth = Math.floor((lefttime / (1000 * 60 * 60) % 24) + leftd * 24) < 10 ? "0" + Math.floor((lefttime /
(1000 * 60 * 60) % 24) + leftd * 24) : Math.floor((lefttime / (1000 * 60 * 60) % 24) + leftd *
24); //
var leftm = Math.floor(lefttime / (1000 * 60) % 60) < 10 ? "0" + Math.floor(lefttime / (1000 * 60) % 60) :
Math.floor(lefttime / (1000 * 60) % 60); //
var lefts = Math.floor(lefttime / 1000 % 60) < 10 ? "0" + Math.floor(lefttime / 1000 % 60) : Math.floor(
lefttime / 1000 % 60); //
this.countdownh = lefth; //
this.countdownm = leftm; //
this.countdowns = lefts; //
// 00:00:00
if (lefttime < 0) {
clearInterval(this.timers);
// this.getDetailByOrderNo();
this.countdownh = this.countdownm = this.countdowns = "00";
}
},
//
checkMore(){
this.moreThanThree = !this.moreThanThree
},
//
checkWuliu(){
this.$refs.wuliu.$refs.popup.show()
},
//
editOrder(){
uni.navigateTo({
url:'/pages/classify/order/editOrder'
})
},
//
cancelOrder(){
let that = this;
uni.showModal({
title: '取消订单',
content: '确定取消此订单?',
success: (res) => {
// if (res.confirm) {
// uni.showLoading({
// title: '...'
// })
// let params = {
// orderNo: this.recinfo.orderNo
// }
// cancel(params).then(res => {
// if (res.return_code == '000000') {
// uni.hideLoading();
// uni.showToast({
// title: res.return_data,
// icon: 'none',
// duration: 2000
// })
// let pages = getCurrentPages() //
// let prePage = pages[pages.length - 2] //
// prePage.$vm.reFresh = Math.random() //
// uni.navigateBack() //
// } else {
// uni.showToast({
// title: res.return_msg,
// icon: 'none',
// duration: 2000
// })
// uni.hideLoading()
// }
// })
// } else if (res.cancel) {
// console.log('');
// }
}
});
},
//
payOrder(){
},
//
oneMoreOrder(){
},
//
deleteOrder(){
},
//
copyText(text){
// #ifdef H5
this.$copyText(text).then(
res => {
uni.showToast({
title: '复制成功'
})
}
)
// #endif
// #ifndef H5
uni.setClipboardData({
data: text,
success: () => {
uni.showToast({
title: '复制成功'
})
}
})
// #endif
}
}
}
</script>
<style lang="scss" scoped>
.flex-center-sp{
display: flex;
justify-content: space-between;
align-items: center;
}
.flex-center{
display: flex;
justify-content: center;
align-items: center;
}
.align-fs{
align-self: flex-start;
}
.tr{
text-align: right;
}
.flex-1{
flex:1;
}
.st-img{
width: 82px;
height: 82px;
}
.goodsMore{
padding: 10px 0;
text-align: center;
border-top: 1px solid #f6f6f6;
border-bottom:1px solid #f6f6f6;
}
//
.pd-tb10{
padding: 10px 0;
}
.td-lt{
text-decoration: line-through;
}
.bordert{
border-top: 2px solid #f6f6f6;
}
//
.copy-num{
padding: 0 5px;
border: 1px solid #666666;
border-radius: 5px;
display: inline-block;
vertical-align: middle;
}
//
.edit-msg{
border: 1px solid #D7D3D0;
width: 50px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 15px;
}
.pdb50{
padding-bottom: 50px;
}
//
.toPay{
height: 40px;
padding: 0 15px;
display: flex;
justify-content: flex-end;
align-items: center;
border-top: 1px solid #f6f6f6;
position: fixed;
bottom: 0;
right: 0;
left: 0;
.btn{
// height: 20px;
padding:1px 5px;
border-radius: 10px;
margin-left: 15px;
border:1px solid #666666;
color: #666666;
&.bgred{
color: #ffffff;
background-color: #FF2342;
border:1px solid #FF2342;
}
&.oneMore{
color: #FF2342;
border:1px solid #FF2342;
}
}
}
</style>

@ -77,8 +77,8 @@
import uniBadge from '@/components/uni-badge/components/uni-badge/uni-badge.vue'
import componentSearch from "@/components/search/search.vue";
import goodsList from '@/pages/classify/goods-list/goods-list.vue'
import goodsList from '@/components/goods-list/goods-list.vue'
import {getGoodsTypeTree,getListGoodsDetail,getShoppingCartList} from '@/Utils/physicalObject.js'
const app = getApp();
@ -130,7 +130,7 @@
},
onShow(){
console.log("121212")
this.hackReset = false;
this.$nextTick(() => {
this.hackReset = true;
@ -184,7 +184,7 @@
//
toSearch() {
uni.navigateTo({
url:"/pages/classify/goods-search/goods-search"
url:"/physical-merchants/classify/goods-search/goods-search"
})
},
//

@ -444,6 +444,15 @@
},
//
jumpDetails(e, item) {
//
if(item == 12){
uni.navigateTo({
url:'/physical-merchants/classify/order/orderDetail?id='+e
})
return;
}
this.orderCheck(e);
if (item == 1 || item == 2 || item == 3) {
uni.navigateTo({

@ -146,7 +146,12 @@
uni.navigateTo({
url: '/qianzhu-KFC/order-details/order-details?id=' + lists.orderNo
})
} else {
}else if(lists.productType == 12){
uni.navigateTo({
url:'/physical-merchants/classify/order/orderDetail?id='+lists.orderNo
})
}
else {
uni.navigateTo({
url: '/pages/user/order_details/order_details?id=' + lists.orderNo
})

@ -43,7 +43,7 @@
</view>
</view>
<view class="width96 height22 mart10">
<view v-if="row.productType !=12" class="width96 height22 mart10">
<view class="width70 flleft fotlt ">
<view class="font16 fontwig6 fcor333 alijusstart">
<image mode="widthFix" src="../../../static/img/order2.png" v-if="row.productType == 4"
@ -64,18 +64,66 @@
class="marglerig" style="width: 50rpx;height: 50rpx;"></image>
<image mode="widthFix" src="../../../static/img/order9.png" v-if="row.productType == 2"
class="marglerig" style="width: 50rpx;height: 50rpx;"></image>
<image mode="widthFix" :src="imageUrl+'orderLogo/goods.png'" v-if="row.productType == 12"
class="marglerig" style="width: 50rpx;height: 50rpx;"></image>
<view class="width100 text1">{{row.title}}</view>
</view>
</view>
<view v-if="row.productType != 12" class="width30 flright fotrt fcor666 font15 fotrt">
<view class="width30 flright fotrt fcor666 font15 fotrt">
<view class="font14 fcor333">
x1
</view>
</view>
</view>
<!--实物start -->
<view v-if="row.productType ==12" class="width96 mart10">
<view v-if ="row.ext6.length>1" class="">
<view class=" fotlt ">
<view class="font16 fontwig6 fcor333 alijusstart">
<image mode="widthFix" :src="imageUrl+'orderLogo/goods.png'" v-if="row.productType == 12"
class="marglerig" style="width: 50rpx;height: 50rpx;"></image>
<view class="width100 text1">{{row.title}}</view>
</view>
</view>
<view class="po-ra mart10">
<scroll-view class="settle-goods" scroll-x="true" >
<view class="settle-con">
<view class="settle-img" v-for="(item,index) in row.ext6" :key="index">
<image class="st-img" :src="imageUrl+item" mode="aspectFill"></image>
</view>
</view>
</scroll-view>
<view class="fix-soon fcor666">
<view class="fix-price">
<!-- <text class="fontwig6 fcor333 marb5"> ¥215</text>
<text>{{goodsData.images.length}}
</text> -->
<text class="icon-ymt to-right font14 fcor666"></text>
</view>
</view>
</view>
</view>
<view v-if ="row.ext6.length<=1" class="mart10 fotlt dis-flex flex-sp">
<view class="font16 fontwig6 fcor333 alijusstart">
<image mode="widthFix" :src="imageUrl+'orderLogo/goods.png'" v-if="row.productType == 12"
class="marglerig" style="width: 50rpx;height: 50rpx;"></image>
<view class="width100 text1">{{row.title}}</view>
</view>
<view class="settle-img" >
<image class="st-img" v-if="row.ext6[0]" :src="imageUrl+row.ext6[0]" mode="aspectFill"></image>
</view>
</view>
</view>
<!-- 实物end -->
<view class="width96 mart10 font12 fcor999">
订单编号:{{row.orderNo}}
</view>
@ -122,7 +170,7 @@
getDictionaryByCodeType
} from '../../../Utils/Api.js';
import orderList from '@/pages/classify/order/orderList.vue'
let app = getApp()
export default {
@ -165,7 +213,7 @@
}
},
components:{
orderList
},
onLoad(option) {
// #ifdef H5
@ -180,6 +228,10 @@
}
this.list = this.orderList[this.typeId];
this.tabbarIndex = tbIndex;
// this.getUserOrderList();
// this.getDictionaryByCodeType();
},
onShow(){
this.getUserOrderList();
this.getDictionaryByCodeType();
},
@ -253,6 +305,16 @@
if (res.return_data.total == (this.pageNum * this.pageSize)) {
this.isNoMoreData = true;
}
if(res.return_data.list.length>0){
res.return_data.list.map(item=>{
if(item.ext6){
item.ext6 = item.ext6.split(',')
}
})
}
this.orderList = this.orderList.concat(res.return_data.list);
this.pageNum = res.return_data.list.length == this.pageSize ? ++pagenum : pagenum;
} else {
@ -276,21 +338,26 @@
},
//
jumpDetails(e, item) {
this.orderCheck(e);
if (item == 1 || item == 2 || item == 3) {
//
if(item == 12){
uni.navigateTo({
url: '/qianzhu-KFC/order-details/order-details?id=' + e
url:'/physical-merchants/classify/order/orderDetail?id='+e
})
return;
}
//
if(item == 12){
this.orderCheck(e);
if (item == 1 || item == 2 || item == 3) {
uni.navigateTo({
url: '/pages/classify/order/orderDetail?id='+e
url: '/qianzhu-KFC/order-details/order-details?id=' + e
})
return;
}
uni.navigateTo({
url: '../order_details/order_details?id=' + e
})
@ -376,6 +443,23 @@
},
//
toPayment(row) {
//
if(row.productType == 12){
let obj = {
orderNo : row.orderNo,
createTime:row.createTime,
payPrice:row.payablePrice
}
obj = JSON.stringify(obj)
uni.navigateTo({
url: '/physical-merchants/classify/order/pay?obj=' + obj
})
return
}
let payTypes;
if (row.payType == 1 || row.payType == null) {
payTypes = 3;
@ -394,6 +478,110 @@
</script>
<style lang="scss">
//
.po-ra{
position: relative;
}
.settle-goods{
width: auto;
}
.pd10{
padding: 0 10px;
}
.order-top-title{
height: 30px;
line-height: 30px;
}
//
.oneMoreTime {
text-align: right;
.btn{
margin: 10px 10px 10px 0;
display: inline-block;
width: 100px;
height: 30px;
line-height: 30px;
border-radius: 15px;
text-align: center;
}
//
.oneMore {
color: #FA253D;
border:1px solid #FA253D;
}
//
.nowPay{
color: #ffffff;
background-color:#FA253D;
}
//
.deleOrder{
color: #666666;
border:1px solid #666666;
}
}
.settle-img{
font-size: 0;
margin-left: 10px;
.st-img{
width: 82px;
height: 82px;
}
}
.settle-con{
display: flex;
justify-content: flex-start;
align-items: center;
.settle-msg{
flex: 1;
padding: 0 10px;
.settle-title{
display: flex;
justify-content: space-between;
align-items: center;
}
}
}
.fix-soon{
position: absolute;
right: 0;
top:0;
width: 82px ;
height: 82px;
// line-height: 82px;
opacity: 0.8;
background-color: #ffffff;
text-align: center;
}
//
.fix-price{
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
&>text{
width: 100%;
}
}
page {
background-color: #f3f3f3;
}

@ -45,7 +45,7 @@
</template>
<script>
import noMore from '@/pages/classify/no-more/no-more.vue'
import noMore from '@/components/no-more/no-more.vue'
import {
getDeliveryAddressList,
deleteAddress,

@ -21,7 +21,7 @@
<checkbox class="mycheck" :disabled="!isEdit&&item.loseEfficacy" color="#FFC71E"
:value="item.id" :checked="item.whetherCheck" />
</checkbox-group>
<view class="cart-detail" >
<view class="cart-detail">
<view class="cart-img">
<image :src="imageUrl+item.img" class="img border-8r" mode="aspectFill"></image>
</view>
@ -42,7 +42,7 @@
¥{{item.originalPrice}}
</view> -->
</view>
<view :class="'cart-num'+(item.loseEfficacy?' pont-event ':' ')">
<uni-number-box v-model="item.num" :min="1"
@ -82,11 +82,11 @@
<text v-if="isEdit" class="tool-right paddleft5 fcorred" @click="editDelete">退出编辑</text>
<view v-if="!isEdit" class="tool-right">
<view class="tool-jiesuan marRight10 ">
<!-- <text v-if="priceOrigin > 0" class="fcor666 margle10 marRight10 font14 text-lt">¥{{priceOrigin}}</text> -->
合计:<text class="fcorred">¥{{priceAll}}</text>
<!-- <text v-if="priceOrigin > 0" class="fcor666 margle10 marRight10 font14 text-lt">¥{{priceOrigin}}</text> -->
合计:<text v-if="priceAll>0" class="fcorred">¥{{priceAll | numFormat}}</text>
<text v-else class="fcorred">¥{{priceAll}}</text>
</view>
<view class="jiesuan-btn fcorfff " @click="settleAccount">
结算
@ -110,7 +110,7 @@
<script>
// import cartList from '@/pages/classify/cart-list/cart-list.vue'
import noMore from '@/pages/classify/no-more/no-more.vue'
import noMore from '@/components/no-more/no-more.vue'
import uniNumberBox from '@/uni_modules/uni-number-box/components/uni-number-box/uni-number-box.vue'
import {
getShoppingCartList,
@ -134,8 +134,7 @@
},
//
swipe_options: [
{
swipe_options: [{
text: '删除',
icon: ' delete ',
style: {
@ -150,7 +149,7 @@
// backgroundColor: '#f6c133'
// }
// },
],
swipe_item_index: null,
numberValue: 0,
@ -171,40 +170,62 @@
computed: {
//
priceAll() {
var str = 0;
for (var i = 0; i < this.cartList.length; i++) {
if (this.cartList[i].whetherCheck) {
str += this.cartList[i].num * this.cartList[i].price;
}
let str = 0;
// for (var i = 0; i < this.cartList.length; i++) {
// if (this.cartList[i].whetherCheck) {
// str += this.cartList[i].num * this.cartList[i].price;
// }
// }
if (this.cartList.length > 0) {
this.cartList.map(item => {
if (item.whetherCheck) {
str =parseFloat((str + (item.num*item.price)).toFixed(2))
}
})
return str;
} else {
return 0;
}
return str;
},
//
priceOrigin(){
var str = 0;
for (var i = 0; i < this.cartList.length; i++) {
if (this.cartList[i].whetherCheck) {
str += this.cartList[i].num * this.cartList[i].originalPrice;
}
}
return str;
}
// priceOrigin(){
// var str = 0;
// for (var i = 0; i < this.cartList.length; i++) {
// if (this.cartList[i].whetherCheck) {
// str += this.cartList[i].num * this.cartList[i].originalPrice;
// }
// }
// return str;
// }
},
onLoad() {
// this.cartList.map(item=>{
// this.$set(item, 'checked', false);
// })
this.initData();
// this.initData();
},
onShow(){
this.initData();
},
methods: {
initData() {
uni.showLoading({
title: '加载中',
mask:true,
});
getShoppingCartList().then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
console.log(res.return_data)
this.cartList = res.return_data;
@ -261,7 +282,7 @@
//
checkClick(item) {
item.whetherCheck = !item.whetherCheck;
if (!item.whetherCheck) {
if (!this.isEdit && !item.loseEfficacy) { //
this.allCheck.whetherCheck = false;
@ -311,7 +332,7 @@
} else {
this.allCheck.whetherCheck = false
}
},
//
@ -357,12 +378,12 @@
if (!this.isHaveGoods()) return;
if (this.priceAll > 0) {
let selestArr = this.cartList.filter(item=>item.whetherCheck == true)
let selestArr = this.cartList.filter(item => item.whetherCheck == true)
selestArr = JSON.stringify(selestArr)
// console.log(selestArr)
uni.navigateTo({
url: '/pages/settleAccounts/settleAccounts?goodsList='+selestArr
url: '/physical-merchants/settleAccounts/settleAccounts?goodsList=' + selestArr
})
} else {
uni.showToast({
@ -441,13 +462,13 @@
},
changeNumValue(v, id) {
console.log(v,id)
console.log(v, id)
// console.log(this.cartList)
let params = {
id: id,
num:v
num: v
}
goodsEditNum(params).then(res => {
if (res.return_code == '000000') {
uni.showToast({
@ -462,20 +483,20 @@
// item.num = 1;
// }
// })
//
this.initData();
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
})
}
})
}
@ -554,13 +575,13 @@
}
.pont-event{
pointer-events: none;
}
.pont-event {
pointer-events: none;
}
//
.loseEfficacy {
.cart-img {
position: relative;

@ -22,7 +22,7 @@
<script>
import componentSearch from "@/components/search/search.vue";
import goodsList from '@/pages/classify/goods-list/goods-list.vue'
import goodsList from '@/components/goods-list/goods-list.vue';
import {
getListGoodsDetail
} from '@/Utils/physicalObject.js'

@ -143,10 +143,10 @@
</template>
<script>
import noMore from '@/pages/classify/no-more/no-more.vue'
import wybPopup from '../../../components/wyb-popup/wyb-popup.vue'
import noMore from '@/components/no-more/no-more.vue'
import wybPopup from '@/components/wyb-popup/wyb-popup.vue'
import cartChoose from '@/pages/classify/cart-choose/cart-choose.vue'
import cartChoose from '@/components/cart-choose/cart-choose.vue'
import uniGoodsNav from '@/components/uni-goods-nav/components/uni-goods-nav/uni-goods-nav.vue'
@ -339,9 +339,9 @@
goComment() {
//
uni.navigateTo({
url: "../goods-comment/goods-comment?gid=" + 1598348
})
// uni.navigateTo({
// url: "../goods-comment/goods-comment?gid=" + 1598348
// })
},
@ -353,7 +353,7 @@
if (e.index == 0) {
// console.log("")
uni.navigateTo({
url: "/pages/classify/cart/cart"
url: "/physical-merchants/classify/cart/cart"
})
return
@ -369,7 +369,7 @@
// if(e.index == 2){
// console.log("")
// uni.navigateTo({
// url:"/pages/classify/cart/cart"
// url:"/physical-merchants/classify/cart/cart"
// })
// return

@ -50,7 +50,7 @@
//
goEditAddress(){
uni.navigateTo({
url:'/pages/address/address'
url:'/physical-merchants/address/address'
})
}

@ -104,7 +104,7 @@
</template>
<script>
// import detailPopup from '@/pages/settleAccounts/detail-popup/detail-popup.vue'
// import detailPopup from '@/physical-merchants/settleAccounts/detail-popup/detail-popup.vue'
export default {
data(){
return{
@ -119,7 +119,7 @@ export default {
methods:{
goOrderDetail(){
uni.navigateTo({
// url:"@/pages/classify/order/orderDetail"
// url:"@/physical-merchants/classify/order/orderDetail"
})
}
}

@ -0,0 +1,691 @@
<template>
<view class="backcor9 pd-main pdb50 headsbg">
<!-- 待支付 -->
<view v-if="recinfo.orderStatus == 1" class="order-de-title pd-main">
<view class="font22 fcor333">
待支付
</view>
<view class="font16 fcor666 mart10">
<text class="fcorred paddtright10">{{countdownm}}:{{countdowns}}</text>后订单自动取消
</view>
</view>
<!-- 其他 -->
<view v-if="recinfo.orderStatus != 1" v-else class="order-de-title pd-main">
<view class="font22 fcor333">
{{typeText[recinfo.orderStatus]}}
</view>
<view class="font16 fcor666 mart10">
您的订单{{typeText[recinfo.orderStatus]}}
</view>
</view>
<view class=" marb10 backcorfff height50 fcor333 font15 border-8r">
<view class="width94">感谢您信任嗨森逛欢迎再次消费</view>
</view>
<!-- 待支付时支持修改地址,暂时先不弄 -->
<!-- <view v-if="status == 0" class="marb20 pd-main backcolorfff border-8r">
<view class="flex-center-sp pd-tb10">
<view class="">
<view class="fontwig6 font18">金科才能收到你看得出纳思达</view>
<view class="mart5 fcor666"><text class="paddleft10">15652365478</text></view>
</view>
<view class="align-fs edit-msg " @click="editOrder">
修改
</view>
</view>
</view> -->
<view class="marb20 pd-main backcolorfff border-8r">
<!-- 商品信息 -->
<view v-for="(item,index) in goodsList" :key="index" class="marb10 flex-center-sp">
<view class="">
<image class="st-img" :src="imageUrl+item.goodsImg" mode="aspectFill"></image>
</view>
<view class="flex-1 flex-center-sp">
<view class="width60 paddleft10">
<view class="marb10 font18 fontwig6">{{item.goodsName}}</view>
<view class="marb5 font12 fcor666">规格: {{item.goodsSpecName}}</view>
<view class="fcor666 font12">数量: {{item.saleCount}}</view>
</view>
<view class="font16 tr align-fs">
<view class="fontwig6" v-if="recinfo.memDiscountId">¥ {{item.goodsPrice}}</view>
<view class="fontwig6" v-if="!recinfo.memDiscountId">¥ {{item.goodsActualPrice}}</view>
</view>
</view>
</view>
<!-- 当商品超过3个的时候 -->
<view v-if="!moreThanThree&&isShow" class="goodsMore flex-center" @click="checkMore">
还有{{goodsList2.length}}种商品<text class="icon-ymt to-down"></text>
</view>
<block v-if="moreThanThree">
<view v-for="(item,index) in goodsList2" :key="index" class="marb10 flex-center-sp">
<view class="">
<image class="st-img" :src="imageUrl+item.goodsImg" mode="aspectFill"></image>
</view>
<view class="flex-1 flex-center-sp">
<view class="width60 paddleft10">
<view class="marb10 font18 fontwig6">{{item.goodsName}}</view>
<view class="marb5 font12 fcor666">规格: {{item.goodsSpecName}}</view>
<view class="fcor666 font12">数量: {{item.saleCount}}</view>
</view>
<view class="font16 tr align-fs">
<view class="fontwig6" v-if="recinfo.memDiscountId">¥ {{item.goodsPrice}}</view>
<view class="fontwig6" v-if="!recinfo.memDiscountId">¥ {{item.goodsActualPrice}}</view>
</view>
</view>
</view>
</block>
<view v-if="moreThanThree" class="goodsMore flex-center" @click="checkMore">
{{recinfo.highChildOrderList.length}}种商品<text class="icon-ymt to-up"></text>
</view>
<!-- 商品金额 -->
<view class="flex-center-sp pd-tb10">
<view class="">商品金额</view>
<view class="fontwig6"><text class="paddtright5">¥</text>{{goodsPrice | numFormat}}</view>
</view>
<!-- 优惠券 -->
<view class="flex-center-sp pd-tb10">
<view class="">优惠券</view>
<view class="fontwig6 fcorred">-<text class="paddtright5">¥</text>{{recinfo.deductionCouponPrice}}
</view>
</view>
<!-- 运费 -->
<view class="flex-center-sp pd-tb10">
<view class="">运费
<!-- <text class="icon-ymt question fcor666 font16 paddleft5"></text> -->
</view>
<view class="fontwig6">
<text class="fcor666 fcorred">¥{{recinfo.goodsOrder.freightPrice || 0}}</text>
</view>
</view>
<!-- 积分 -->
<view class="flex-center-sp pd-tb10">
<view class="">积分</view>
<view class="fontwig6 fcorred">-<text class="paddtright5">¥</text>{{(recinfo.payGold / 100).toFixed(2)}}
</view>
</view>
<!--支付优惠 -->
<view class="flex-center-sp pd-tb10">
<view class="">支付优惠</view>
<view class="fontwig6 fcorred">-<text class="paddtright5">¥</text>0</view>
</view>
<!-- 价格总额 -->
<view class="tr fontwig6 pd-tb10">
<!-- <text class="paddtright10">已优惠<text class="fcorred">¥ 12.01</text></text> -->
<view v-if="recinfo.orderStatus == 1 ||recinfo.orderStatus == 5 " class="dis-flex flex-end">商品总金额<text class="margle10 font22">¥{{recinfo.payablePrice | numFormat}}</text> </view>
<view v-else class="dis-flex flex-end">实付 <text class="font22 margle10">¥{{recinfo.payRealPrice}}</text></view>
</view>
<!-- 待支付时开始 -->
<!-- 订单编号 -->
<block v-if="recinfo.orderStatus == 1">
<view class="flex-center-sp pd-tb10 bordert">
<view class="fcor666 width80px">订单编号</view>
<view class=" flex-center-sp">
<text class="tr flex-1">{{orderId}}</text>
<text class=" margle10 font12 copy-num fcor666" @click="copyText(orderId)">复制</text>
</view>
</view>
<!-- 下单时间 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666 width80px">下单时间</view>
<view class=" ">
{{recinfo.createTime | formatDate('-')}}
</view>
</view>
<!-- 待支付时结束 -->
</block>
</view>
<!-- 物流信息 -->
<view v-if="recinfo.orderStatus != 1 && recinfo.orderStatus != 5" class=" pd-main backcolorfff border-8r">
<!-- 收货信息 -->
<view class="flex-center-sp pd-tb10">
<view class="fcor666 align-fs width80px">收货信息</view>
<view class="flex-1 tr">
<view class=" ">
{{recinfo.goodsDeliveryAddress.regionName +' '+recinfo.goodsDeliveryAddress.address}}</view>
<view class=" ">{{recinfo.goodsDeliveryAddress.consignee +' '+recinfo.goodsDeliveryAddress.phone}}
</view>
</view>
</view>
<!-- 物流信息 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666 width80px">物流信息</view>
<view class=" " @click="checkWuliu">
查看物流信息<text class="icon-ymt to-right fcor666 font16 paddleft5"></text>
</view>
</view>
<!-- 订单编号 -->
<view class="flex-center-sp pd-tb10 bordert">
<view class="fcor666 width80px">订单编号</view>
<view class=" flex-center-sp">
<text class="tr flex-1">{{orderId}}</text>
<text class=" margle10 font12 copy-num fcor666" @click="copyText(orderId)">复制</text>
</view>
</view>
<!-- 下单时间 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666 width80px">下单时间</view>
<view class=" ">
{{recinfo.createTime | formatDate('-')}}
</view>
</view>
<!-- 支付方式 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666 width80px">支付方式</view>
<view class=" ">
<view class=" fotrt fcor333" v-if="recinfo.payType == 1">支付宝</view>
<view class=" fotrt fcor333" v-if="recinfo.payType == 2">微信支付</view>
<view class=" fotrt fcor333" v-if="recinfo.payType == 3">积分兑换</view>
<view class=" fotrt fcor333" v-if="recinfo.payType == 4">汇联通工会卡</view>
<view class=" fotrt fcor333" v-if="recinfo.payType == 5">银联</view>
</view>
</view>
<!-- 备注 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666 width80px">备注</view>
<view class="fcor666 font13 ">
{{recinfo.remarks || "暂无数据"}}
</view>
</view>
</view>
<view v-if="recinfo.orderStatus == 1 || recinfo.orderStatus == 5" class=" pd-main backcolorfff border-8r">
<!-- 收货信息 -->
<view class="flex-center-sp pd-tb10">
<view class="fcor666 align-fs width80px">收货信息</view>
<view class="flex-1 tr">
<view class=" ">
{{recinfo.goodsDeliveryAddress.regionName +' '+recinfo.goodsDeliveryAddress.address}}</view>
<view class=" ">{{recinfo.goodsDeliveryAddress.consignee +' '+recinfo.goodsDeliveryAddress.phone}}
</view>
</view>
</view>
<!-- 订单编号 -->
<view class="flex-center-sp pd-tb10 bordert">
<view class="fcor666 width80px">订单编号</view>
<view class=" flex-center-sp">
<text class="tr flex-1">{{orderId}}</text>
<text class=" margle10 font12 copy-num fcor666" @click="copyText(orderId)">复制</text>
</view>
</view>
<!-- 下单时间 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666 width80px">下单时间</view>
<view class=" ">
{{recinfo.createTime | formatDate('-')}}
</view>
</view>
<!-- 备注 -->
<view class="flex-center-sp pd-tb10 ">
<view class="fcor666 width80px ">备注</view>
<view class="fcor666 font13 ">
{{recinfo.remarks || "暂无数据"}}
</view>
</view>
</view>
<!-- 待支付时底部的按钮 -->
<view v-if="recinfo.orderStatus == 1" class="toPay font14 backcolorfff">
<view class="btn" @click="cancelOrder">取消订单</view>
<!-- <view class="btn" @click="editOrder">修改订单</view> -->
<view class="btn bgred" @click="payOrder">立即支付{{countdownm}}:{{countdowns}}</view>
</view>
<!-- -->
<!-- <view v-if="recinfo.orderStatus != 1" class="toPay font14 backcolorfff">
<view class="btn oneMore" @click="oneMoreOrder">再来一单</view>
<view class="btn" @click="deleteOrder">删除订单</view>
</view> -->
<view v-if="recinfo.orderStatus != 1" class="toPay font14 backcolorfff">
<view class="btn" @click="playPhone">联系客服</view>
</view>
<wuliuPopup ref="wuliu"></wuliuPopup>
</view>
</template>
<script>
import wuliuPopup from '@/physical-merchants/classify/order/wuliuPupup/wuliuPupup.vue'
import {
getDetailByOrderNo,
cancel
} from '@/Utils/Api.js'
const app = getApp()
export default {
data() {
return {
countdownh: '', //
countdownm: '', //
countdowns: '', //
timers: null,
orderId: '', //id
recinfo: {},
typeText: {
1: '待支付',
2: '已支付',
3: '已完成',
4: '已退款',
5: '已取消',
6: '退款中',
7: '退款失败'
},
imageUrl: app.globalData.imgUrl,
goodsList: [],
goodsList2: [],
goodsListAll: [],
moreThanThree: false,
isShow: false,
}
},
components: {
wuliuPopup
},
computed: {
goodsPrice() {
if (this.recinfo.memDiscountId) {
var str = 0;
this.goodsListAll.map(item => {
str = parseFloat((str + (item.saleCount * item.goodsPrice)).toFixed(2))
})
return str;
} else {
var str2 = 0;
this.goodsListAll.map(item => {
str2 = parseFloat((str2 + (item.saleCount * item.goodsActualPrice)).toFixed(2))
})
return str2;
}
}
},
onLoad(option) {
this.orderId = option.id
// console.log(this.orderId, "this.orderId")
},
onUnload() {
clearInterval(this.timers);
},
onShow() {
//
this.getDetailByOrder();
},
filters: {
//
formatDate: function(value, spe = '/') {
let data = new Date(value);
let year = data.getFullYear();
let month = data.getMonth() + 1;
let day = data.getDate();
let h = data.getHours();
let mm = data.getMinutes();
let s = data.getSeconds();
month = month >= 10 ? month : "0" + month;
day = day >= 10 ? day : "0" + day;
h = h >= 10 ? h : "0" + h;
mm = mm >= 10 ? mm : "0" + mm;
s = s >= 10 ? s : "0" + s;
return `${year}${spe}${month}${spe}${day} ${h}:${mm}:${s}`;
}
},
methods: {
//
getDetailByOrder() {
uni.showLoading({
title: '加载中...'
})
let params = {
orderNo: this.orderId,
}
getDetailByOrderNo(params).then(res => {
uni.hideLoading();
if (res.return_code == '000000') {
this.recinfo = res.return_data;
// if (res.return_data.productType == 6) {
// this.getOrderByOrderNo();
// }
this.goodsListAll = this.recinfo.highChildOrderList;
if (this.recinfo.highChildOrderList.length > 3) {
this.isShow = true;
this.goodsList = this.recinfo.highChildOrderList.slice(0, 3)
this.goodsList2 = this.recinfo.highChildOrderList.slice(3)
} else {
this.isShow = false;
this.goodsList = this.recinfo.highChildOrderList
}
//
if (res.return_data.orderStatus == 1) {
this.timers = setInterval(() => {
this.showtime()
}, 1000)
}
}
})
},
showtime() {
var nowtime = (new Date()).getTime(); //
var endtime = this.recinfo.createTime + 600000; // 60000010
var lefttime = endtime - nowtime; //
var leftd = Math.floor(lefttime / (1000 * 60 * 60 * 24)); //
var lefth = Math.floor((lefttime / (1000 * 60 * 60) % 24) + leftd * 24) < 10 ? "0" + Math.floor((lefttime /
(1000 * 60 * 60) % 24) + leftd * 24) : Math.floor((lefttime / (1000 * 60 * 60) % 24) + leftd *
24); //
var leftm = Math.floor(lefttime / (1000 * 60) % 60) < 10 ? "0" + Math.floor(lefttime / (1000 * 60) % 60) :
Math.floor(lefttime / (1000 * 60) % 60); //
var lefts = Math.floor(lefttime / 1000 % 60) < 10 ? "0" + Math.floor(lefttime / 1000 % 60) : Math.floor(
lefttime / 1000 % 60); //
this.countdownh = lefth; //
this.countdownm = leftm; //
this.countdowns = lefts; //
// 00:00:00
if (lefttime < 0) {
clearInterval(this.timers);
this.getDetailByOrder();
this.countdownh = this.countdownm = this.countdowns = "00";
}
},
//
checkMore() {
this.moreThanThree = !this.moreThanThree
},
//
checkWuliu() {
let logisticsNo = this.recinfo.goodsOrder.logisticsNo;
if (!logisticsNo) {
uni.showToast({
title: '暂无数据',
icon: 'none',
duration: 2000
})
return
}
this.$refs.wuliu.show(logisticsNo)
},
//
editOrder() {
// uni.navigateTo({
// url:'/physical-merchants/classify/order/editOrder'
// })
},
//
cancelOrder() {
let that = this;
uni.showModal({
title: '取消订单',
content: '确定取消此订单?',
success: (res) => {
if (res.confirm) {
uni.showLoading({
title: '加载中...'
})
let params = {
orderNo: this.recinfo.orderNo
}
cancel(params).then(res => {
if (res.return_code == '000000') {
uni.hideLoading();
uni.showToast({
title: res.return_data,
icon: 'none',
duration: 2000
})
let pages = getCurrentPages() //
let prePage = pages[pages.length - 2] //
prePage.$vm.reFresh = Math.random() //
uni.navigateBack() //
} else {
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
})
uni.hideLoading()
}
})
} else if (res.cancel) {
console.log('用户点击取消');
}
}
});
},
//
payOrder() {
let obj = {
orderNo : this.recinfo.orderNo,
createTime:this.recinfo.createTime,
payPrice:this.recinfo.payablePrice
}
obj = JSON.stringify(obj)
uni.navigateTo({
url: '/physical-merchants/classify/order/pay?obj=' + obj
})
},
//
playPhone() {
uni.showModal({
title: '客服',
content: '4006780738',
success: function(res) {
if (res.confirm) {
uni.makePhoneCall({
phoneNumber: '4006780738', //
success: function(e) {
console.log(e);
},
fail: function(e) {
console.log(e);
}
})
}
}
})
},
//
oneMoreOrder() {
},
//
deleteOrder() {
},
//
copyText(text) {
// #ifdef H5
this.$copyText(text).then(
res => {
uni.showToast({
title: '复制成功'
})
}
)
// #endif
// #ifndef H5
uni.setClipboardData({
data: text,
success: () => {
uni.showToast({
title: '复制成功'
})
}
})
// #endif
}
}
}
</script>
<style lang="scss" scoped>
.bottomstu {
position: fixed;
bottom: 0px;
border-top: 1px solid #cecdcd;
}
.cusservice {
height: 30px;
width: 90px;
margin-right: 20px;
border: 1px solid #6c6c6c;
border-radius: 25px;
}
.headsbg {
background: linear-gradient(to bottom, #3da7e7, #e8eff4) no-repeat;
background-size: 100% 200px;
}
.width80px {
width: 80px;
}
.flex-center-sp {
display: flex;
justify-content: space-between;
align-items: center;
}
.flex-center {
display: flex;
justify-content: center;
align-items: center;
}
.align-fs {
align-self: flex-start;
}
.tr {
text-align: right;
}
.flex-1 {
flex: 1;
}
.st-img {
width: 82px;
height: 82px;
}
.goodsMore {
padding: 10px 0;
text-align: center;
border-top: 1px solid #f6f6f6;
border-bottom: 1px solid #f6f6f6;
}
//
.pd-tb10 {
padding: 10px 0;
}
.td-lt {
text-decoration: line-through;
}
.bordert {
border-top: 2px solid #f6f6f6;
}
//
.copy-num {
padding: 0 5px;
border: 1px solid #666666;
border-radius: 5px;
display: inline-block;
vertical-align: middle;
}
//
.edit-msg {
border: 1px solid #D7D3D0;
width: 50px;
height: 30px;
line-height: 30px;
text-align: center;
border-radius: 15px;
}
.pdb50 {
padding-bottom: 50px;
}
//
.toPay {
height: 30px;
padding: 10px 15px;
display: flex;
justify-content: flex-end;
align-items: center;
border-top: 1px solid #f6f6f6;
position: fixed;
bottom: 0;
right: 0;
left: 0;
.btn {
height: 20px;
padding: 5px;
border-radius: 15px;
margin-left: 15px;
border: 1px solid #666666;
color: #666666;
&.bgred {
color: #ffffff;
background-color: #FF2342;
border: 1px solid #FF2342;
}
&.oneMore {
color: #FF2342;
border: 1px solid #FF2342;
}
}
}
</style>

@ -14,7 +14,7 @@
<view class="dis-flex bor-b pd15-v" v-if="item == 4" @tap="paytype='4'">
<image class="pay-img paddtright10" src="../../../static/img/yl.png" mode="aspectFit"></image>
<image class="pay-img paddtright10" src="/physical-merchants/static/img/yl.png" mode="aspectFit"></image>
<view class="flex-1 dis-flex flex-sp ">
<view class="">
<view class="">
@ -29,7 +29,7 @@
</view>
</view>
<view class="dis-flex bor-b pd15-v" v-if="item == 2" @tap="paytype='2'">
<image class="pay-img paddtright10" src="../../../static/img/wechat.png" mode="aspectFit"></image>
<image class="pay-img paddtright10" src="/physical-merchants/static/img/wechat.png" mode="aspectFit"></image>
<view class="flex-1 dis-flex flex-sp ">
<view class="">
<view class="">
@ -42,7 +42,7 @@
</view>
</view>
<view class="dis-flex bor-b pd15-v" v-if="item == 3" @tap="paytype='3'">
<image class="pay-img paddtright10" src="../../../static/img/unioncard.png" mode="aspectFit">
<image class="pay-img paddtright10" src="/physical-merchants/static/img/unioncard.png" mode="aspectFit">
</image>
<view class="flex-1 dis-flex flex-sp ">
<view class="">
@ -230,7 +230,9 @@
clearInterval(this.timers);
// this.getDetailByOrderNo();
this.countdownh = this.countdownm = this.countdowns = "00";
uni.reLaunch({
url:'/pages/user/order_list/order_list'
})
}
},
@ -288,19 +290,22 @@
"signType": "MD5",
"timeStamp": res.return_data.timeStamp,
success: function(res) {
uni.hideLoading();
uni.showToast({
title: '支付成功'
})
uni.reLaunch({
url: "/pages/classify/order/paymentResult?id=" + that
url: "/physical-merchants/classify/order/paymentResult?id=" + that
.orderNo
// url: '../../user/order_details/order_details?id=' +that.orderNo
});
},
fail: function(err) {
uni.hideLoading();
uni.navigateBack({})
uni.navigateBack({
delta:2
})
},
});
// #endif
@ -386,7 +391,7 @@
title: '支付成功'
})
uni.reLaunch({
url: "/pages/classify/order/paymentResult?id=" + that
url: "/physical-merchants/classify/order/paymentResult?id=" + that
.orderNo
// url: '../../user/order_details/order_details?id=' +that.orderNo
});
@ -448,7 +453,7 @@
title: '支付成功'
})
uni.reLaunch({
url: "/pages/classify/order/paymentResult?id=" + that.orderNo
url: "/physical-merchants/classify/order/paymentResult?id=" + that.orderNo
// url: '../../user/order_details/order_details?id=' +this.orderNo
})
return;
@ -481,7 +486,7 @@
// pay(type) {
// uni.navigateTo({
// url: "/pages/classify/order/paymentResult?type=" + type
// url: "/physical-merchants/classify/order/paymentResult?type=" + type
// })
// }
}

@ -66,15 +66,15 @@ export default {
computed: {
nodeIconUrl () {
if (this.nodeData.logisticsStatus === 'WAIT_ACCEPT') { //
return this.isNewest ? '../../static/img/wuliu/ic-paied.png' : '../../static/img/wuliu/ic-paied-G.png'
return this.isNewest ? '../../../static/img/wuliu/ic-paied.png' : '../../../static/img/wuliu/ic-paied-G.png'
} else if (this.nodeData.logisticsStatus === 'ACCEPT') { //
return this.isNewest ? '../../static/img/wuliu/ic-pacakaging.png' : '../../static/img/wuliu/ic-pacakaging-G.png'
return this.isNewest ? '../../../static/img/wuliu/ic-pacakaging.png' : '../../../static/img/wuliu/ic-pacakaging-G.png'
} else if (this.nodeData.logisticsStatus === 'DELIVERING') { //
return this.isNewest ? '../../static/img/wuliu/ic-sending.png' : '../../static/img/wuliu/ic-sending-G.png'
return this.isNewest ? '../../../static/img/wuliu/ic-sending.png' : '../../../static/img/wuliu/ic-sending-G.png'
} else if (this.nodeData.logisticsStatus === 'SIGN'|| this.nodeData.logisticsStatus === 'AGENT_SIGN') { // ,
return this.isNewest ? '../../static/img/wuliu/ic-delivering.png' : '../../static/img/wuliu/ic-delivering-G.png'
return this.isNewest ? '../../../static/img/wuliu/ic-delivering.png' : '../../../static/img/wuliu/ic-delivering-G.png'
}else if (this.nodeData.logisticsStatus === 'FAILED') { //
return this.isNewest ? '../../static/img/wuliu/ic-package-failed.png' : '../../static/img/wuliu/ic-package-failed-G.png'
return this.isNewest ? '../../../static/img/wuliu/ic-package-failed.png' : '../../../static/img/wuliu/ic-package-failed-G.png'
}
},
acceptStationFixed () {

@ -0,0 +1,261 @@
<template>
<wybPopup ref="popup" type="bottom" width="500" scrollY="true" radius="0" :showCloseIcon="true">
<view class="pd-main wuliupop backcor9">
<view class="pop-title fontwig6"><text>物流信息</text></view>
<view class="pd-main backcolorfff border-8r font14">
<view class="dis-flex flex-sp mart10 marb10 paddbotm10 border-b">
<view class="dis-flex">
<!-- <image class="wuliu-img" src="https://pic.616pic.com/ys_bnew_img/00/07/04/1ZtrvD1AMY.jpg" mode="aspectFill"></image> -->
<text class="paddleft5">{{tracesData.expressCompanyName}}</text>
<text class="paddleft5">{{tracesData.number}}</text>
</view>
<view class="dis-flex ">
<text @click="copyText(tracesData.number)">复制</text>
<text class="paddleft5 paddtright5 fcor666">|</text>
<text @click="callPhone">打电话</text>
</view>
</view>
<block v-for="(item, index) in tracesData.logisticsTraceDetails" >
<trackNode :key="index" :is-first="index===tracesData.length-1" :is-newest="index===0" :is-main-node="item.logisticsStatus!='TRANSPORT'" :node-data="item"></trackNode>
</block>
</view>
</view>
</wybPopup>
</template>
<script>
import wybPopup from '@/components/wyb-popup/wyb-popup.vue'
import trackNode from '../trackNode/trackNode.vue'
import {getLogisticsMsg} from '@/Utils/physicalObject.js'
export default {
data () {
return {
tracesData:{},
/* [
{
acceptStation: '包裹已被吴亦发同学签收', //
createTime: '2019-10-24 15: 27: 16',
status: 'COMPLETE', //
phone: '', //
statusName: '已签收', //
isMainNode: true // icon
},
{
acceptStation: '由派送员蔡小坤同志配送,电话:',
createTime: '2019-10-24 15: 26: 41',
status: 'DELIVERING',
phone: '16677778888',
statusName: '运输中',
isMainNode: true
},
{
acceptStation: '已到XXX小区快递点',
createTime: '2019-10-24 15: 26: 41',
status: 'DELIVERING',
phone: '',
statusName: '运输中',
isMainNode: false
},
{
acceptStation: '已到海宁集散中心',
createTime: '2019-10-24 15: 26: 18',
status: 'DELIVERING',
phone: '',
statusName: '运输中',
isMainNode: false
},
{
acceptStation: '已到杭州集散中心',
createTime: '2019-10-24 15: 26: 07',
status: 'DELIVERING',
phone: '',
statusName: '运输中',
isMainNode: false
},
{
acceptStation: '包裹已到达余杭区集散中心',
createTime: '2019-10-24 15: 25: 54',
status: 'DELIVERING',
phone: '',
statusName: '运输中',
isMainNode: false
},
{
acceptStation: '快递员已上门取件',
createTime: '2019-10-24 15: 25: 17',
status: 'DELIVERING',
phone: '',
statusName: '已揽收',
isMainNode: false
},
{
acceptStation: '等待快递员上门揽件',
createTime: '2019-10-24 15: 25: 00',
status: 'WATTING_DELIVER',
phone: '',
statusName: '已发货',
isMainNode: true
},
{
acceptStation: '您的包裹正在打包',
createTime: '2019-10-24 15: 24: 00',
status: 'WATTING_DELIVER',
phone: '',
statusName: '待发货',
isMainNode: false
},
{
acceptStation: '订单支付成功,等待商家发货',
createTime: '2019-10-24 15: 22: 30',
status: 'PAYED',
statusName: '已支付',
isMainNode: true
},
{
acceptStation: '订单提交成功',
createTime: '2019-10-24 15: 22: 00',
status: 'WATTING_PAY',
statusName: '已下单',
isMainNode: true
}
] */
}
},
components:{
wybPopup,
trackNode
},
created(){
// this.tracesData=dataList.data;
// this.tracesData.logisticsTraceDetails=this.tracesData.logisticsTraceDetails.sort((item,item2)=>{
// if(item.logisticsStatus == 'TRANSPORT'){
// item.isMainNode=false;
// }else{
// item.isMainNode=true;
// }
// return item2.time - item.time;
// })
},
methods:{
show(logisticsNo){
console.log(logisticsNo)
this.$refs.popup.show();
this.getLogisticsMsg(logisticsNo)
},
//
getLogisticsMsg(num){
let params ={
num:num
}
getLogisticsMsg(params).then(res=>{
if (res.return_code == '000000') {
this.tracesData=res.return_data;
this.tracesData.logisticsTraceDetails =JSON.parse(this.tracesData.logisticsTraceDetails)
this.tracesData.logisticsTraceDetails=this.tracesData.logisticsTraceDetails.sort((item,item2)=>{
if(item.logisticsStatus == 'TRANSPORT'){
item.isMainNode=false;
}else{
item.isMainNode=true;
}
return item2.time - item.time;
})
}else{
uni.showToast({
title: res.return_msg,
icon: 'none',
duration: 2000
})
}
})
},
//
copyText(text){
// #ifdef H5
this.$copyText(text).then(
res => {
uni.showToast({
title: '复制成功'
})
}
)
// #endif
// #ifndef H5
uni.setClipboardData({
data: text,
success: () => {
uni.showToast({
title: '复制成功'
})
}
})
// #endif
},
//
callPhone(){
uni.showModal({
title: '客服',
content: '4006780738',
success: function(res) {
if (res.confirm) {
uni.makePhoneCall({
phoneNumber: '4006780738', //
success: function(e) {
console.log(e);
},
fail: function(e) {
console.log(e);
}
})
}
}
})
},
}
}
</script>
<style lang="scss" scoped>
.wuliu-img{
width: 30px;
height: 30px;
border-radius: 50%;
}
.border-b{
border-bottom: 2px solid #f6f6f6;
}
.wuliupop{
padding: 50px 10px 10px;
}
.pop-title{
text-align: center;
height: 50px;
line-height: 50px;
font-size: 18px;
position: fixed;
top:0;
left: 0;
right: 0;
background-color: #f6f6f6;
}
</style>

@ -24,7 +24,7 @@
{{item.title}}
</view>
<view class="flex-row">
<view class="dis-flex">
<view v-if="yhqId == 0 || yhqId == null" class="dis-flex">
<view class="fcorred">
¥{{item.price}}
</view>
@ -32,6 +32,15 @@
¥{{item.originalPrice}}
</view>
</view>
<view v-else class="dis-flex">
<view class="fcorred">
¥{{item.originalPrice}}
</view>
<!-- <view class="text-lt fcor666 margle10">
¥{{item.originalPrice}}
</view> -->
</view>
<view class="fcor666">
×{{item.num}}
</view>
@ -197,7 +206,7 @@
discountList:[],//
totalPrice:0,//
yhqType: 0,//id
yhqId:0,
}
},
@ -251,16 +260,18 @@
methods: {
// //goods freight,integral,coupon
show(str, data) {
show(str, data,yhqID) {
this.goodsList = [];
this.postPrice = null;
this.discountList = [];
this.totalPrice = 0;
this.yhqId = 0;
this.keywords = str;
if (str == 'goods') {
this.yhqId = yhqID;
console.log(this.yhqId,"this.yhqId")
this.goodsList = data;
} else if (str == 'freight') {
this.postPrice = data;

@ -202,7 +202,7 @@
</template>
<script>
import detailPopup from '@/pages/settleAccounts/detail-popup/detail-popup.vue'
import detailPopup from '@/physical-merchants/settleAccounts/detail-popup/detail-popup.vue'
import ssPaymentPassword from '@/components/sanshui-payment-password/index.vue'
import {
getRegionFreight,
@ -220,7 +220,7 @@
return {
useScope: 9, //
imageUrl: app.globalData.imgUrl, //
noteValue: '这是备注',
noteValue: '',
isMoreThanOne: false, //
goodsList: [], //
@ -263,29 +263,40 @@
},
//
priceAll() {
var str = 0;
for (var i = 0; i < this.goodsList.length; i++) {
str += this.goodsList[i].num * this.goodsList[i].price;
}
this.goodsList.map(item=>{
str =parseFloat((str + (item.num*item.price)).toFixed(2))
})
return str;
},
//
priceOrigin() {
var str = 0;
for (var i = 0; i < this.goodsList.length; i++) {
str += this.goodsList[i].num * this.goodsList[i].originalPrice;
}
this.goodsList.map(item=>{
str =parseFloat((str + (item.num*item.originalPrice)).toFixed(2))
})
return str;
},
//
postPriceAll() {
if (this.postPrice) {
if (this.priceAll >= this.postPrice.freePostPrice) {
return 0
} else {
return this.postPrice.freightPrice;
if (this.yhqId != 0) { //使
if (this.priceOrigin >= this.postPrice.freePostPrice) {
return 0
} else {
return this.postPrice.freightPrice;
}
}else{
if (this.priceAll >= this.postPrice.freePostPrice) {
return 0
} else {
return this.postPrice.freightPrice;
}
}
} else {
return 0;
}
@ -305,12 +316,12 @@
if (yhqPrice >= priceAll) {
priceAll = 0;
} else {
priceAll = priceAll - yhqPrice;
priceAll =parseFloat((priceAll - yhqPrice).toFixed(2)) ;
}
// console.log("-"+priceAll)
//
priceAll = priceAll + freightPrice;
priceAll =parseFloat((priceAll + freightPrice).toFixed(2)) ;
// console.log("-+"+priceAll)
if(priceAll == 0){
this.isShowjf = false;
@ -319,10 +330,10 @@
}
//percentage 100,1001
let price = parseFloat(this.availIntegal / this.percentage).toFixed(2);
let price = parseFloat((this.availIntegal / this.percentage).toFixed(2));
//
if(price >= priceAll){
this.availIntegalUse = priceAll*this.percentage;
this.availIntegalUse =parseFloat((priceAll*this.percentage).toFixed(2)) ;
}else {
//
this.availIntegalUse = this.availIntegal;
@ -333,7 +344,7 @@
let jifenPrice = 0;
if(this.isSelectJf){
jifenPrice = parseFloat(this.availIntegalUse / this.percentage).toFixed(2);
jifenPrice = parseFloat((this.availIntegalUse / this.percentage).toFixed(2));
}else{
jifenPrice = 0;
}
@ -343,7 +354,7 @@
if (jifenPrice >= priceAll) {
priceAll = 0;
} else {
priceAll = priceAll - jifenPrice;
priceAll =parseFloat((priceAll - jifenPrice).toFixed(2)) ;
}
// console.log("-+-"+priceAll)
return priceAll
@ -388,6 +399,7 @@
this.findUser() //
},
methods: {
//
getRegiFreight(addressDetail) {
this.haveAddress = true;
@ -456,7 +468,7 @@
},
goAddress() {
uni.navigateTo({
url: "/pages/address/address?status=" + 1
url: "/physical-merchants/address/address?status=" + 1
})
},
//
@ -495,7 +507,7 @@
} else if (item.discountType == 2) { //
this.yhqPrice = item.discountPrice;
} else if (item.discountType == 3) { //
this.yhqPrice = this.priceOrigin * parseFloat(1 - item.discountPrice).toFixed(2);
this.yhqPrice =parseFloat((this.priceOrigin * (1 - item.discountPrice)).toFixed(2)) ;
}
}
})
@ -554,14 +566,11 @@
}
getThirdPartyByDetail(datas).then(res => {
if (res.return_code == '000000') {
let jfPercent = parseFloat(res.return_data.integralDiscount / 100).toFixed(2);
//
// this.userInfo.gold=1000;
// jfPercent = 0.8;
//
let jfPercent = parseFloat((res.return_data.integralDiscount / 100).toFixed(2));
this.availIntegal =Math.floor(parseFloat(this.userInfo.gold * jfPercent))
console.log(this.availIntegal)
} else {
uni.showToast({
title: res.return_msg,
@ -585,7 +594,8 @@
//goods freight,integral,coupon
showPopup(str) {
if (str == 'goods') {
this.$refs.detailPopup.show(str, this.goodsList);
let yhqID = this.yhqId
this.$refs.detailPopup.show(str, this.goodsList,yhqID);
} else if (str == 'freight') {
if (!this.postPrice) {
uni.showToast({
@ -601,7 +611,6 @@
} else if (str == 'coupon') { //
let obj = {};
obj.discountList = this.discountList;
// obj.totalPrice = this.priceAll;
obj.totalPrice = this.priceOrigin;
this.$refs.detailPopup.show(str, obj);
} else if (str == 'integral') { //
@ -629,7 +638,7 @@
})
return;
}
console.log(this.PaymentPassword,"this.PaymentPassword22222222222")
if (this.PaymentPassword == 0) {
//
this.$refs.paymentPassword.modalFun('show');
@ -647,14 +656,6 @@
},
createOrder() {
//
// uni.navigateTo({
// url: '/pages/classify/order/pay?obj=' + {}
// })
// return
//
//
let childOrderList = [];
this.goodsList.map(item => {
@ -673,23 +674,11 @@
let _this = this;
//
// let yhqId = 0;
// if (_this.yhqId == 0) {
// yhqId = null;
// }else{
// yhqId = _this.yhqId;
// }
let yhqId = 0;
_this.yhqId == 0?yhqId = null:yhqId = _this.yhqId;
//
// let jfNum = 0;
// if(_this.jifenPrice == 0){
// jfNum = 0;
// }else{
// jfNum = _this.availIntegalUse
// }
let jfNum = 0;
_this.jifenPrice == 0?(jfNum = 0):(jfNum = _this.availIntegalUse)
@ -716,7 +705,7 @@
let obj = {
orderNo : res.return_data.orderNo,
createTime:res.return_data.createTime,
payPrice:res.return_data.payPrice
payPrice:res.return_data.payablePrice
}
obj = JSON.stringify(obj)
@ -725,14 +714,14 @@
if(_this.priceSettle ==0&&_this.availIntegalUse!=0){
uni.reLaunch({
url: "/pages/classify/order/paymentResult?id=" + res.return_data.orderNo
url: "/physical-merchants/classify/order/paymentResult?id=" + res.return_data.orderNo
});
return
}
uni.navigateTo({
url: '/pages/classify/order/pay?obj=' + obj
uni.reLaunch({
url: '/physical-merchants/classify/order/pay?obj=' + obj
})
return
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Before

Width:  |  Height:  |  Size: 645 B

After

Width:  |  Height:  |  Size: 645 B

Before

Width:  |  Height:  |  Size: 862 B

After

Width:  |  Height:  |  Size: 862 B

Before

Width:  |  Height:  |  Size: 769 B

After

Width:  |  Height:  |  Size: 769 B

Before

Width:  |  Height:  |  Size: 519 B

After

Width:  |  Height:  |  Size: 519 B

Before

Width:  |  Height:  |  Size: 586 B

After

Width:  |  Height:  |  Size: 586 B

Before

Width:  |  Height:  |  Size: 815 B

After

Width:  |  Height:  |  Size: 815 B

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before

Width:  |  Height:  |  Size: 433 B

After

Width:  |  Height:  |  Size: 433 B

Before

Width:  |  Height:  |  Size: 466 B

After

Width:  |  Height:  |  Size: 466 B

Before

Width:  |  Height:  |  Size: 574 B

After

Width:  |  Height:  |  Size: 574 B

Before

Width:  |  Height:  |  Size: 737 B

After

Width:  |  Height:  |  Size: 737 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

@ -948,12 +948,19 @@ $uni-font-size-paragraph:30upx;
.flex-sp{
justify-content: space-between;
}
.flex-end{
justify-content: flex-end;
}
.flex-center{
justify-content: center;
}
.align-self{
align-self: flex-start;
}
.align-end{
align-self: flex-end;
}
.flex-1{
flex: 1;
}

Loading…
Cancel
Save