123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560 |
- <template>
- <view class="container details clearfix" :style="{paddingBottom :isIphoneX ? (130+68)+'rpx' : '130rpx'}">
- <cu-custom :navbar-data='nvabarData'></cu-custom>
- <view class="container-details" :style="{paddingTop:CustomBar+'px'}">
- <!-- 订单信息 -->
- <view class="information-content">
- <view class="info-item"><view class="item-view"><text class="label">供应商:广州优斐斯生物科技有限公司</text></view></view>
- <view class="info-item"><view class="item-view"><text class="label">订单号:W159013087369197</text></view></view>
- <view class="info-item"><view class="item-view"><text class="label">下单时间:2019-11-11 16:17:08</text></view></view>
- <view class="info-item">
- <view class="item-view"><text class="label">收款状态:<text :style="{color:setStatusText(1)}">已收款</text></text></view>
- <view class="item-view"><text class="label">结算状态:<text :style="{color:setStatusText(2)}">部分结算</text></text></view>
- </view>
- <view class="info-item">
- <view class="item-view"><text class="label">发货状态:<text :style="{color:setStatusText(3)}">待发货</text></text></view>
- </view>
- </view>
- <!-- 地址信息 -->
- <view class="address-content">
- <view class="info-item"><text class="label">收货人:张能</text></view>
- <view class="info-item"><text class="label">联系方式:18823666651</text></view>
- <view class="info-item"><text class="label">收货地址:<text style="color: #666666;">安徽省蚌埠市蚌山区淮河路东海大瀚林银海大道瀚林银座小区B栋404</text></text></view>
- </view>
- <!-- 商品 -->
- <view class="goods-list">
- <view class="goods-item clearfix">
- <view class="productlist" v-for="(pros,idx) in shopOrderData.orderProductList" :key="idx">
- <view class="goods-pros-t" @click="hanldOperationConfim(pros)">
- <view class="pros-left">
- <view class="pros-img"><image :src="pros.productImage" alt="" /></view>
- </view>
- <view class="pros-product">
- <view class="producttitle">{{pros.name}}</view>
- <view class="productspec">规格:{{pros.productUnit ? pros.productUnit : ''}}</view>
- <view class="productspec">商品编码:{{pros.productCode ? pros.productCode : ''}}</view>
- <view class="product-view">
- <view class="view-num">数量:{{pros.num}}</view>
- </view>
- <view class="product-view">
- <view class="view-num">已发货:{{pros.taxRate}}</view>
- <view class="view-num">未发货:{{pros.discount == null ? '0' : pros.discount}}</view>
- </view>
- <view class="product-view">
- <view class="view-num">已退货:{{pros.discountPrice}}</view>
- </view>
- <text class="iconfont icon-genghuan"></text>
- </view>
- </view>
- </view>
- <view class="goods-pros-m" v-if="shopOrderData.note!=''">
- <view class="m-text">留言:</view>
- <view class="m-input">
- <view class="text">{{shopOrderData.note ? shopOrderData.note : ''}}</view>
- </view>
- </view>
- <view class="goods-pros-b">
- <view class="count">共{{shopOrderData.itemCount}}件商品</view>
- </view>
- </view>
- </view>
- <!-- 底部按钮 -->
- <view class="button-template" :style="{paddingBottom :isIphoneX ? '68rpx' : '0rpx'}">
- <view class="button-content">
- <view class="btn btn-color" @click.stop="onShareCode">
- <view class="tips" v-if="shareCode">分享码:{{shareCode}}</view>分享订单
- </view>
- </view>
- </view>
- <!--底部选择模态层弹窗组件 -->
- <view class="popup spec" :class="specClass" @touchmove.stop.prevent="discard" @tap="hideSpec">
- <!-- 遮罩层 -->
- <view class="mask"></view>
- <view class="layer" @tap.stop="discard" :style="{paddingBottom :isIphoneX ? '68rpx' : '36rpx',bottom:isIphoneX ?'-332rpx' : '-294rpx'}">
- <view class="content">
- <view class="layer-title">商品显示名:</view>
- <view class="layer-name">{{handleData.name}}</view>
- <view class="layer-text">售价:<text style="color: #666;">¥{{handleData.price}}</text></view>
- </view>
- </view>
- </view>
- </view>
- <share-alert :orderID="orderID"
- v-if="isShareModal"
- @shareConfirm ='onShareAppMessage'>
- </share-alert>
- </view>
- </template>
- <script>
- import headerBack from '@/components/cm-module/headerNavbar/header-back' //自定义导航
- import orderAddress from '@/components/cm-module/orderDetails/orderAddress' //地址信息
- import goodsList from '@/components/cm-module/orderDetails/goodsList' //商品列表
- import orderButton from '@/components/cm-module/orderDetails/orderButton' //底部按钮
- import shareAlert from '@/components/cm-module/modelAlert/shareAlert.vue' //分享弹窗
- import { queryOrderDetails,cancelOrder,deleteOrder,confirmReceipt,affirmOrder } from "@/api/order.js"
- export default {
- components:{
- headerBack,
- orderAddress,
- goodsList,
- orderButton,
- shareAlert,
- },
- data() {
- return {
- nvabarData: { //顶部自定义导航
- showCapsule: 1, // 是否显示左上角图标 1表示显示 0表示不显示,
- showSearch: 0,
- title: '订单详情', // 导航栏 中间的标题
- haveBack:false,
- textLeft:this.$store.state.isIphone
- },
- isIphoneX:this.$store.state.isIphoneX,
- CustomBar:this.CustomBar,// 顶部导航栏高度
- specClass: '',//规格弹窗css类,控制开关动画
- handleData:{},
- state:0,
- userID:'',
- orderID:'',
- shareCode:'', //分享码
- payStatus:0,
- btnStatus:0, //按钮组件状态
- isRequest:false, //是否加载完成渲染子组件
- isOrderShare:false,
- isShareModal:false,
- addressData:{}, //地址信息初始化
- information:{}, //订单信息初始化
- shopOrderData:{
- note:'奥斯卡就打开是件大事的空间啊奥斯卡就打开是件大事的空间啊奥斯卡就打开是件大事的空间啊奥斯卡就打开是件大事的空间啊d',
- itemCount:9,
- orderProductList:[
- {
- productImage:'https://img14.360buyimg.com/n7/jfs/t1/114670/38/7458/171560/5ec3b80fE5c5f15f9/549ceeeca82f0d02.jpg',
- name:'华西生物奥斯卡等级阿奥术大师大所打撒大啊萨达时代萨德',
- productUnit:'盒',
- productCode:'FXSW2131231231',
- num:20,
- taxRate:5,
- discount:5,
- discountPrice:3,
- price:'200.00'
- }
- ]
- },//商品信息初始化
- }
- },
- onLoad(){
- // this.initOrderDetaileData()
- },
- methods: {
- initOrderDetaileData(){//初始化页面数据@参数:订单ID
- queryOrderDetails({ orderID : this.orderID }).then(response =>{
- let resData = response.data;
- this.isRequest = true
- this.userID = resData.order.userID
- this.shareCode = resData.shareCode
- this.addressData = resData.userInfo
- this.information = resData.order
- this.btnStatus = resData.order.status
- this.payStatus = resData.order.payStatus
- this.shopOrderData = resData.shopOrderList
- this.orderInvoice = resData.orderInvoice
- this.returnedPurchaseList = resData.returnedPurchaseList
- this.discernReceiptList = resData.discernReceiptList
- this.receiptAmount = resData.order.receiptAmount
- this.returnedPurchaseFee = resData.order.returnedPurchaseFee
- }).catch(error =>{
- this.$util.modal('提示','订单查询失败,请稍后重试~','确定','',false,() =>{
- this.$api.switchTabTo('/pages/tabBar/home/home')
- })
- })
- },
- handButtonConfirm(data){//监听点击时间的按钮类型并执行...
- this.handShowAlert(data)
- },
- setStatusText(status){
- let textColor='';
- switch(status){
- case 1:
- textColor = '#FF2A2A'
- break;
- case 2:
- textColor = '#E15616'
- break;
- case 3:
- textColor = '#38CB3D'
- break;
- }
- return textColor
- },
- hanldOperationConfim(data){//显示选择数量确认弹窗
- this.specClass = 'show';
- this.handleData = data
- },
- hideSpec() {//关闭选择数量确认弹窗
- this.specClass = 'hide';
- setTimeout(() => {
- this.specClass = 'none';
- }, 200);
- },
- onShareCode(){
- this.isShareModal = true
- },
- onShareAppMessage(res){//分享转发
- this.isShareModal = false
- if (res.from === 'button') {
- // 来自页面内转发按钮
- }
- return {
- title: '您有新的分享订单,快来查看吧~',
- path: `/pages/user/order/orderShareLogin?orderID=${this.orderID}&userID=${this.userID}`,
- imageUrl:'https://img.caimei365.com/group1/M00/03/95/Cmis216Sk_SABnOFABZCgCzFV_g063.png'
- }
- },
- discard(){
- //丢弃
- }
- },
- onShow() {
- }
- }
- </script>
- <style lang="scss">
- page {
- height: auto;
- background:#F7F7F7;
- }
- .details{
- padding-bottom: 130rpx;
- }
- .container-details{
- background:#F7F7F7;
- }
- .information-content{
- width: 702rpx;
- height: auto;
- padding:10rpx 24rpx;
- background: #FFFFFF;
- margin-bottom: 24rpx;
- .info-item{
- height: 58rpx;
- width: 100%;
- display: flex;
- .item-view{
- flex: 1;
- line-height: 58rpx;
- font-size: $font-size-28;
- color: #333333;
- }
- }
- }
- .address-content{
- width: 702rpx;
- height: auto;
- padding:10rpx 24rpx;
- background: #FFFFFF;
- margin-bottom: 24rpx;
- .info-item{
- width: 100%;
- display: flex;
- line-height: 50rpx;
- font-size: $font-size-28;
- color: #333333;
- }
- }
- .goods-list{
- width: 100%;
- height: auto;
- background: #F7F7F7;
- .goods-item{
- width: 702rpx;
- padding:24rpx;
- height: auto;
- background: #FFFFFF;
- margin-bottom: 24rpx;
- &:last-child{
- margin-bottom: 0;
- }
- }
- .productlist{
- width: 100%;
- height: auto;
- }
- .goods-pros-t{
- display: flex;
- width: 100%;
- height: auto;
- padding: 12rpx 0;
- .pros-left{
- width: 210rpx;
- height: 100%;
- margin:0 26rpx 0 0;
- }
- .pros-img{
- width: 210rpx;
- height: 210rpx;
- border-radius: 10rpx;
- border:1px solid #f3f3f3;
- image{
- width: 100%;
- height: 100%;
- border-radius: 10rpx;
- }
- }
- }
- .pros-product{
- width: 468rpx;
- height: 100%;
- line-height: 36rpx;
- font-size: $font-size-26;
- position: relative;
- .icon-genghuan{
- position: absolute;
- top: 50%;
- right: 0;
- font-size: $font-size-44;
- color: $color-system;
- }
- .product-view{
- width: 100%;
- height: auto;
- display: flex;
- .view-num{
- flex: 1;
- text-align: left;
- font-size: $font-size-26;
- color: #666666;
- line-height: 44rpx;
- }
- }
- .producttitle{
- width: 100%;
- display: inline-block;
- height: auto;
- text-overflow:ellipsis;
- display: -webkit-box;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- margin-bottom: 8rpx;
- }
- .productspec{
- height: 44rpx;
- color: #666666;
- line-height: 44rpx;
- }
- .productprice{
- height: 48rpx;
- position: absolute;
- width: 100%;
- bottom: 0;
- .price{
- line-height: 48rpx;
- font-size: $font-size-28;
- width: 48%;
- color: #FF2A2A;
- float: left;
- }
- .count{
- height: 100%;
- float: right;
- position: relative;
- .small{
- color: #666666;
- }
- }
- }
- }
- .goods-pros-m{
- width: 100%;
- height: auto;
- line-height: 76rpx;
- font-size: $font-size-26;
- color: $text-color;
- float: left;
- padding: 10rpx 0;
- border-top: 1px solid #F7F7F7;
- border-bottom: 1px solid #F7F7F7;
- .m-text{
- width: 62rpx;
- float: left;
- padding-right: 20rpx;
- font-weight:bold;
- }
- .m-input{
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-align: center;
- -webkit-align-items: center;
- align-items: center;
- position: relative;
- width: 620rpx;
- height: auto;
- padding: 20rpx 0 10rpx 0;
- background: #FFFFFF;
- .text{
- width: 100%;
- height: 100%;
- font-size: $font-size-26;
- line-height: 36rpx;
- color: #333333;
- }
- }
- }
- .goods-pros-b{
- width:100%;
- height: 40rpx;
- margin-top: 12rpx;
- float: left;
- .count{
- float: right;
- font-size: $font-size-28;
- line-height: 40rpx;
- color: $text-color;
- display: flex;
- justify-content: flex-end;
- }
- }
- }
- .button-template{
- width: 100%;
- height: auto;
- position: fixed;
- bottom: 0;
- left: 0;
- background: #FFFFFF;
- .button-content{
- width: 702rpx;
- padding:0 24rpx;
- height: auto;
- float: left;
- position: relative;
- .btn{
- width: 160rpx;
- height: 64rpx;
- margin:22rpx;
- line-height: 64rpx;
- font-size:$font-size-26;
- color: #FFFFFF;
- text-align: center;
- border-radius: 10rpx;
- float: right;
- }
- .btn-color{
- background: $btn-confirm;
- margin: 22rpx 0 22rpx 22rpx;
- .tips{
- width: 160rpx;
- height: 34rpx;
- padding: 10rpx 10rpx;
- background:linear-gradient(45deg,rgba(0,0,0,1) 0%,rgba(87,87,87,1) 100%);
- box-shadow:0px 2px 4px 0px rgba(0,0,0,0.2);
- border-radius: 8rpx;
- position: absolute;
- color: #FFFFFF;
- line-height: 34rpx;
- font-size: $font-size-24;
- text-align: left;
- right: 24rpx;
- top: -45rpx;
- &:before{
- content: "";
- width: 25rpx;
- height: 25rpx;
- background:linear-gradient(45deg,rgba(0,0,0,1) 0%,rgba(87,87,87,1) 100%);
- position: absolute;
- bottom: -8rpx;
- right: 30rpx;
- z-index: -1;
- transform:rotate(45deg);
- }
- }
- }
- }
- }
- .popup {
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 999;
- display: none;
- .mask{
- position: fixed;
- top: 0;
- width: 100%;
- height: 100%;
- z-index: 21;
- background-color: rgba(0, 0, 0, 0.6);
- }
- .layer {
- position: fixed;
- z-index: 22;
- bottom: -294rpx;
- width: 702rpx;
- padding: 24rpx 24rpx 36rpx 24rpx;
- height: 236rpx;
- border-radius: 30rpx 30rpx 0 0;
- background-color: #fff;
- display: flex;
- flex-wrap: wrap;
- align-content: space-between;
- .content {
- width: 100%;
- .layer-title{
- font-size: $font-size-28;
- color: $text-color;
- line-height: 58rpx;
- }
- .layer-name{
- width: 100%;
- display: inline-block;
- height: auto;
- text-overflow:ellipsis;
- display: -webkit-box;
- word-break: break-all;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- overflow: hidden;
- margin-bottom: 8rpx;
- font-size: $font-size-28;
- color: #666;
- }
- .layer-text{
- margin-top: 10rpx;
- font-size: $font-size-28;
- color: $text-color;
- line-height: 58rpx;
- }
- }
- }
-
- &.show {
- display: block;
- .mask{
- animation: showPopup 0.2s linear both;
- }
- .layer {
- animation: showLayer 0.2s linear both;
- }
- }
- &.hide {
- display: block;
- .mask{
- animation: hidePopup 0.2s linear both;
- }
-
- .layer {
- animation: hideLayer 0.2s linear both;
- }
- }
- &.none {
- display: none;
- }
- }
- </style>
|