Commit d75bc8f8 authored by youjie's avatar youjie

no message

parent 990e9e01
...@@ -331,7 +331,8 @@ ...@@ -331,7 +331,8 @@
</div> </div>
<div class="flexOne-description"> <div class="flexOne-description">
<b>自行取票说明</b> <b>自行取票说明</b>
<p>自行前往指定位置取票,當您完成付款後我們將通過郵件通知您取票的門票訊息</p> <!-- <p>自行前往指定位置取票,當您完成付款後我們將通過郵件通知您取票的門票訊息</p> -->
<p>自取地址:{{SelffetchAddress}}</p>
</div> </div>
<div class="flexOne-infor-box"> <div class="flexOne-infor-box">
<b> {{msg.MailingState==1?'客人讯息':'邮寄讯息'}}</b> <b> {{msg.MailingState==1?'客人讯息':'邮寄讯息'}}</b>
...@@ -425,14 +426,6 @@ ...@@ -425,14 +426,6 @@
{{msg.MailingMoney}} {{msg.MailingMoney}}
</div> </div>
</div> </div>
<div class="right-list" v-if="msg.SelffetchAddress&&msg.MailingMoney==0&&msg.Money>msg.MailingMoney">
<div>
<el-tag size="mini" type="warning">自取地址</el-tag>
</div>
<div class="right-list-right">
{{msg.SelffetchAddress}}
</div>
</div>
</div> </div>
</div> </div>
<div class="right-Money"> <div class="right-Money">
...@@ -442,12 +435,12 @@ ...@@ -442,12 +435,12 @@
</div> </div>
</div> </div>
<div class="right-Submit"> <div class="right-Submit">
<button v-if="!isCheck" class="hollowFixedBtn" type="primary"> <button class="hollowFixedBtn" type="primary" :disabled="!isCheck&&!loading">
提交订单 提交订单
</button> </button>
<button v-else class="normalBtn" type="primary" @click="submit"> <!-- <button v-else class="normalBtn" type="primary" @click="submit">
提交订单 提交订单
</button> </button> -->
</div> </div>
</div> </div>
<!-- 门票详情信息 --> <!-- 门票详情信息 -->
...@@ -465,6 +458,7 @@ ...@@ -465,6 +458,7 @@
isCheck:true, isCheck:true,
showDetails: false, showDetails: false,
loading: false, loading: false,
SelffetchAddress: '',
msg: { msg: {
OrderId: 0, OrderId: 0,
Money: 0.0, Money: 0.0,
...@@ -548,6 +542,7 @@ ...@@ -548,6 +542,7 @@
this.msg.DetailList.push(y) this.msg.DetailList.push(y)
} }
}) })
this.loading = true
this.apipost("ticket_post_SetSaleTicketOrder", this.msg, this.apipost("ticket_post_SetSaleTicketOrder", this.msg,
res => { res => {
this.loading = false; this.loading = false;
...@@ -622,6 +617,7 @@ ...@@ -622,6 +617,7 @@
if (res.data.resultCode == 1) { if (res.data.resultCode == 1) {
this.detailsObj = res.data.data; this.detailsObj = res.data.data;
this.msg.SelffetchAddress = this.detailsObj.SelffetchAddress this.msg.SelffetchAddress = this.detailsObj.SelffetchAddress
this.SelffetchAddress = this.detailsObj.SelffetchAddress
let addList = function (arr) { let addList = function (arr) {
arr.forEach(item => { arr.forEach(item => {
item.checked = false item.checked = false
......
...@@ -564,11 +564,6 @@ ...@@ -564,11 +564,6 @@
{{ scope.row.Num }} {{ scope.row.Num }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="邮寄费" style="background:#EAEAEA" v-if="item.MailingMoney>0">
<template slot-scope="scope">
{{ item.MailingMoney>0?item.MailingMoney:'' }}
</template>
</el-table-column>
<el-table-column label="小计" min-width="70" style="background:#EAEAEA"> <el-table-column label="小计" min-width="70" style="background:#EAEAEA">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.Money.toFixed(2) }} {{ scope.row.Money.toFixed(2) }}
...@@ -677,13 +672,23 @@ ...@@ -677,13 +672,23 @@
</el-tooltip> </el-tooltip>
</div> </div>
<div class="column justify-c px15 bgf5 radius5 ml flex-g pa20"> <div class="column justify-c px15 bgf5 radius5 ml flex-g pa20">
<div class="row-c justify-sb pb5"> <div class="row-c justify-sb pb5" :class="{'borderD':item.MailingMoney>0}">
<span class="fz12 c9e">订单总金额</span> <span class="fz12 c9e">订单总金额</span>
<div class="ml"> <div class="ml">
<span class="fz15 fbold">{{ item.Money.toFixed(2) }}</span> <span class="fz15 fbold">{{ item.Money.toFixed(2) }}</span>
<span class="fz12 ml">{{ item.CurrencyName }}</span> <span class="fz12 ml">{{ item.CurrencyName }}</span>
</div> </div>
</div> </div>
<div
class="row-c justify-sb py5"
v-if="item.MailingMoney>0"
>
<span class="fz12 c9e">邮寄费</span>
<div class="ml">
<span class="fz14">{{ item.MailingMoney.toFixed(2) }}</span>
<span class="fz12 ml">{{ item.CurrencyName }}</span>
</div>
</div>
</div> </div>
<div v-if="item.OrderStatus > 0 && item.OrderStatus < 4 && item.OrderStatus != 3" <div v-if="item.OrderStatus > 0 && item.OrderStatus < 4 && item.OrderStatus != 3"
class="column justify-c px15 bgE8F5E9 radius5 ml fz12 orderop pa20 flex-s"> class="column justify-c px15 bgE8F5E9 radius5 ml fz12 orderop pa20 flex-s">
......
...@@ -287,7 +287,6 @@ export default { ...@@ -287,7 +287,6 @@ export default {
let Money = 0 let Money = 0
x.DetailList.forEach((y) => { x.DetailList.forEach((y) => {
Money+=y.Money Money+=y.Money
y.Money=Number(y.Money+x.MailingMoney)
}) })
x.Money= Number(Money+x.MailingMoney) x.Money= Number(Money+x.MailingMoney)
}) })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment