123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479 |
- <!-- OrderDetailBody.vue -->
- <template><page-meta :root-font-size="fontSize+'px'"></page-meta>
- <member-base :show="false"><view class="div container">
- <view class="div common-header-wrap">
- <view :style="'height:'+navHeight+'px'"></view>
- <view class="common-header-holder"></view>
- <view class="common-header-fixed">
- <title-header />
- <uni-nav-bar title="订单详情" class="common-header" left-icon="back" @clickLeft="goBack()">
- </uni-nav-bar>
- </view>
- </view>
- <view
- class="div order-body"
- v-if="order_info"
- >
- <view class="div order_state">
- <text class="i iconfont" v-if="order_info.order_state == '40'"></text>
- <text class="i iconfont" v-else></text>
- <text class="span">{{order_info.order_state_text}}</text>
- </view>
- <view class="div address">
- <view class="div">
- <text class="span mobile" v-if="order_info.virtual_type==0">接收手机:{{ order_info.buyer_phone }}</text>
- <view style="font-size:.7rem;display:flex;padding:0" class="mobile" v-if="order_info.virtual_type==1">
- <view style="padding:0" class="left">卡券:</view>
- <view style="padding:0;flex:1;" class="right">
- <view style="padding:0" v-for="(item ,index) in order_info.virtual_content" :key="index">
- {{ item }}
- </view>
- </view>
- </view>
- <text class="span mobile" v-if="order_info.virtual_type==2">网盘:{{ order_info.virtual_content }}</text>
- <text class="span mobile" v-if="order_info.virtual_type==3">下载:<text class="a" @click="downloadFile(order_info.vc_file_url)">下载资源</text></text>
- </view>
- <view v-if="order_info.virtual_type==0 && order_info.code_list && order_info.code_list.length" class="div vr_code">
- <text class="span" v-for="(item ,index) in order_info.code_list" :key="index">
- <text class="span">兑换码{{item.vr_code}}<text @click="showQrcode(item.vr_code)" v-if="item.vr_state==0 && item.vr_indate>$moment().unix() && item.refund_lock==0" class="i qrcode iconfont"></text></text><br><text class="span state">{{item.vr_code_desc}}</text>
- </text>
- </view>
- </view>
- <view class="div order_store" @click="goNavigate('/pages/home/storedetail/Storedetail',{ 'id': order_info.store_id })">
- <text class="i store iconfont"></text><text class="span">{{order_info.store_name}}</text><text class="i more iconfont"></text>
- </view>
- <view
- class="div containers"
- >
- <image mode="aspectFit"
- class="img photo"
- v-bind:src="order_info.goods_image_url"
- />
- <view class="div right-wrapper">
- <label class="title">{{ order_info.goods_name }}</label>
- <label class="property">{{ order_info.goods_spec }}</label>
- <view class="div desc-wrapper">
- <view class="div">
- <label class="price"
- >¥ {{ order_info.goods_price }}</label
- >
- <label class="count">x{{ order_info.goods_num }}</label>
- </view>
- </view>
- </view>
- </view>
- <view class="div detail">
- <view class="div number">
- <label
- >订单编号:{{ order_info.order_sn }}
- </label>
- <view class="p">
- 下单时间:{{order_info.add_time}}
- </view>
- </view>
- <view class="div number">
- <view class="p" v-if="order_info.voucher_code">
- 使用了面额为 {{order_info.voucher_price}} 元的店铺代金券
- </view>
- <view class="p" v-if="order_info.mallvoucher_price">
- 使用了面额为 {{order_info.mallvoucher_price}} 元的平台代金券
- </view>
- </view>
- <view class="div pay" v-if="order_info.payment_name">
- <view class="p">支付方式:{{ order_info.payment_name }}</view>
- </view>
- </view>
- <view
- class="div desc section-header section-footer"
- >
- <view class="div container" v-if="order_info.promotion && order_info.promotion.length > 0">
- <label class="title">优惠</label>
- <label class="subtitle" v-for="(p,i) in order_info.promotion" v-bind:key="i">{{p[1]}}}</label>
- </view>
- <label class="amount"
- >实付款 : <text class="span"> ¥{{ order_info.order_amount }}</text>
- </label>
- </view>
- </view>
- <uni-popup background-color="#fff" ref="popupRefund" type="right" >
- <view :style="'width:'+screenWidth+'px'" class="common-popup-wrapper">
- <view class="div common-header-wrap">
- <view :style="'height:'+navHeight+'px'"></view>
- <view class="common-header-holder"></view>
- <view class="common-header-fixed">
- <title-header />
- <uni-nav-bar title="售后" class="common-header" left-icon="back" @clickLeft="hidePopup('popupRefund')">
- </uni-nav-bar>
- </view>
- </view>
- <view class="div common-popup-content">
- <scroll-view style="position: absolute;top:0;right:0;left:0;bottom:0" scroll-y="true">
- <view class="div" @click='refund(1)'><flex-line class="menu-item" :is-link="true" :show-border="true"><text class="span line-name">退款</text></flex-line></view>
- <view class="div" @click='refund(2)'><flex-line class="menu-item" :is-link="true" :show-border="true"><text class="span line-name">退货</text></flex-line></view>
- </scroll-view>
- </view>
- </view>
- </uni-popup>
- </view>
- <uni-popup background-color="#fff" ref="vr_code">
- <view class="div common-alert-content"><image mode="aspectFit" class="img" :src="vr_code_image"><view class="div alert-notice">请让卖家扫码或者输入兑换码进行核销</view></view>
- </uni-popup>
- </member-base>
- </template>
- <script>
- import {getFontSize} from '@/util/common'
- import TitleHeader from '../../TitleHeader'
- import { urlencode } from '@/util/common'
- import MemberBase from '../MemberBase'
- import { getOrderInfo } from '../../../api/memberVrOrder'
- import flexLine from '../../flexLine'
- import { env } from '../../../static/config'
- export default {
- name:'MemberOrderDetail',
- computed:{
- fontSize(){
- return getFontSize()
- },
- },
- data(){
- return {
- navHeight: 0,
- vr_code:'',
- vr_code_image:'',
- dialog:{},
- screenWidth:0,
- order_info: {},
- rec_id: 0,
- }
- },
- components:{
- TitleHeader,
- MemberBase,
- flexLine
- },
- onLoad: function (option) {
- if (option.order_id) {
- getOrderInfo(option.order_id).then(res => {
- this.order_info = res.result.order_info
- }).catch(function (error) {
- uni.showToast({icon:'none',title: error.message})
- })
- }
- },
- mounted(){
- // #ifdef MP-WEIXIN
- this.navHeight = uni.getMenuButtonBoundingClientRect().top
- // #endif
- this.screenWidth=uni.getSystemInfoSync().screenWidth
- },
- methods:{
- closeDialog(){
- },
- confirmDialog(value){
- },
- goNavigate(path,query=false){
- uni.navigateTo({url:path+(query?('?'+urlencode(query)):'')})
- },
- downloadFile(url){
- uni.downloadFile({
- url, //文件链接
- success:({statusCode,tempFIlePath})=>{
- //statusCode状态为200表示请求成功,tempFIlePath临时路径
- if(statusCode==200){
- //保存到本地
- uni.saveFile({
- tempFIlePath,
- success:(res)=>{
- //res.savedFilePath文件的保存路径
- //保存成功并打开文件
- uni.openDocument({
- filePath:res.savedFilePath,
- })
- },
- fail:()=>uni.showToast({icon:'none',title: '保存失败'})
- })
- }
- },
- fail:()=>uni.showToast({icon:'none',title: '下载失败'})
- })
- },
- showPopup(id){
- this.$refs[id].open()
- },
- hidePopup(id){
- this.$refs[id].close()
- },
- goBack(){uni.navigateBack({delta:1})},
- showQrcode (vr_code) {
- this.vr_code=vr_code
- this.vr_code_image=env.API_HOST + '/index/getQrcode?url=' + encodeURIComponent(env.SELLER_H5_HOST + 'pages/seller/vrorder/OrderList?vr_code=' + vr_code)
- this.showPopup('vr_code')
- },
- showRefund (rec_id) {
- this.rec_id = rec_id
- this.showPopup('popupRefund')
- },
- refund (type) {
- uni.navigateTo({ url: '/pages/member/return/ReturnForm'+'?'+urlencode( { type: type, order_id: this.order_info.order_id, order_goods_id: this.rec_id } )})
- },
- complaint (order_id, goods_id) {
- uni.navigateTo({ url: '/pages/member/complaint/ComplaintForm'+'?'+urlencode( { order_id: order_id, goods_id: goods_id } )})
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .common-header-wrap .common-header{box-shadow: unset}
- .order-body {
- overflow: auto;
- height: 100%;
- position: absolute;
- width: 100%;
- .desc{
- .container {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: center;
- background-color: #fff;
- }
- .title {
- width:5rem;
- font-size:$subFontSize;
- color: #333;
- margin-left:0.6rem;
- }
- .subtitle {
- flex: 1;
- margin-left:1rem;
- margin-right:0.6rem;
- color: $primaryColor;
- font-size:$subFontSize;
- text-align: right;
- }
- }
- }
- .order_state {
- background:$primaryColor;
- height:3.5rem;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- .i {
- color:#fff;
- font-size:1.2rem;
- padding: 0 0.5rem;
- }
- .span {
- font-size:$h2;
- color: #fff;
- }
- }
- .containers {
- display: flex;
- flex-direction: row;
- justify-content: flex-start;
- align-items: stretch;
- background-color: #fff;
- border-bottom: 1px solid #e8eaed;
- }
- .photo {
- width:4rem;
- height:4rem;
- margin:0.75rem 0.5rem 0.75rem 0.75rem;
- border: 1px solid #e8eaed;
- flex-basis:4rem;
- flex-shrink: 0;
- }
- .right-wrapper {
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: stretch;
- padding: 0 0.75rem 0 0;
- width: 100%;
- overflow: hidden;
- }
- .title {
- margin-top:0.75rem;
- color: #333;
- font-size:$subFontSize;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .property {
- font-size:$subFontSize;
- color: #7c7f88;
- padding-top:0.5rem;
- }
- .count {
- margin-top:0.2rem;
- color: #7c7f88;
- font-size:$subFontSize;
- margin-right:0.5rem;
- }
- .desc-wrapper {
- height:1rem;
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- padding-top:1rem;
- }
- .price {
- color: $primaryColor;
- font-size:$h2;
- margin-left: 0;
- }
- .count {
- color: #7c7f88;
- font-size:$h2;
- margin-left:0.5rem;
- }
- .address {
- padding-bottom:0.5rem;
- background-color: #fff;
- margin-bottom:0.5rem;
- .div {
- padding:0.5rem 0.5rem 0;
- }
- .img {
- height:0.8rem;
- }
- .span {
- color: #333;
- font-size:$subFontSize;
- .iconfont {float:right;font-size:$h2;line-height:1.5}
- }
- .p {
- margin:0.6rem 0.9rem 0.5rem 0.5rem;
- font-size:$subFontSize;
- color: #7c7f88;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- }
- }
- .contact {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- height:2.3rem;
- background-color: #fff;
- margin-top:0.4rem;
- border-bottom: 1px solid #e8eaed;
- padding: 0 0.65rem;
- .span {
- font-size:$fontSize;
- color: #333;
- padding-right:0.3rem;
- }
- .img {
- width:0.6rem;
- height:0.65rem;
- }
- }
- .detail {
- display: flex;
- flex-direction: column;
- font-size:$subFontSize;
- color: #7c7f88;
- background-color: #fff;
- margin:0.4rem 0;
- box-sizing: border-box;
- .number {
- padding:0.7rem 0.8rem;
- border-bottom: 1px solid #e8eaed;
- .p {
- padding-top:0.3rem;
- font-size:$subFontSize;
- }
- .button {
- color: #7c7f88;
- height:1rem;
- background-color: #fff;
- border: 1px solid #7c7f88;
- width:2.7rem;
- height:1rem;
- border-radius:0.1rem;
- font-size:$subFontSize;
- display:flex;align-items:center;justify-content:center;
- }
- }
- .pay {
- border-bottom: 1px solid #e8eaed;
- padding:0.7rem 0.8rem;
- }
- .givetime {
- padding:0.7rem 0.8rem;
- font-size:$subFontSize;
- }
- input {
- background-color: #fff;
- border: 1px solid #7c7f88;
- }
- }
- .desc {
- background-color: #fff;
- display: flex;
- flex-direction: column;
- justify-content: flex-start;
- align-items: stretch;
- box-sizing: border-box;
- margin-bottom:4rem;
- .desc-item {
- flex: 1;
- margin-top:0.5rem;
- }
- .amount {
- display: flex;
- justify-content: flex-end;
- font-size:$subFontSize;
- color: #333;
- padding-right:0.8rem;
- border-top: 1px solid #e8eaed;
- height:2.2rem;
- line-height:2.2rem;
- .span {
- font-size:$h2;
- color: $primaryColor;
- }
- }
- }
- .ship { margin-bottom: 0;}
- .vr_code > .span{border-top:1px solid #e1e1e1;display: block;padding-top:0.5rem;padding-bottom:0.5rem}
- .vr_code > .span:last-child{padding-bottom:0}
- .vr_code .state{font-size:$subFontSize;color:#7c7f88}
- .order_store{background:#fff;height:1rem;line-height:1rem;padding:0.5rem 0.8rem;border-bottom:1px solid #f5f5f5}
- .order_store .span{color:#333;font-size:$subFontSize;font-weight:600;float:left;margin:0 0.4rem;}
- .order_store .i.store{float:left}
- .order_store .i.more{float:left;font-size:$subFontSize;}
- .common-alert-content{text-align: center;padding:.5rem;
- .img{width:8rem;height:8rem;}
- .alert-notice{font-size:$fontSize}
- }
- </style>
|