|
|
@@ -58,12 +58,12 @@
|
|
|
<span
|
|
|
v-else
|
|
|
class="detail-pays orange font20"
|
|
|
- >-¥{{(inforDetail.real_amount/100).toFixed(2)}}</span>
|
|
|
+ >{{(inforDetail.real_amount/100).toFixed(2)}}</span>
|
|
|
</p>
|
|
|
<p>
|
|
|
<span class="pays-title">原始金额:</span>
|
|
|
- <span v-if="inforDetail.amount>=0" class>+¥{{inforDetail.amount}}</span>
|
|
|
- <span v-else class>-¥{{inforDetail.amount}}</span>
|
|
|
+ <span v-if="inforDetail.amount>=0" class>+{{inforDetail.amount}}</span>
|
|
|
+ <span v-else class>{{inforDetail.amount}}</span>
|
|
|
</p>
|
|
|
<p>
|
|
|
<span class="pays-title">支付方式:</span>
|
|
|
@@ -107,7 +107,7 @@
|
|
|
<div class="business-wrapper">
|
|
|
<div class="business-content">
|
|
|
<div class="business-list">
|
|
|
- <section class="group-list">
|
|
|
+ <section class="group-list group-list-mobile">
|
|
|
<div id="order_detailbox">
|
|
|
<h3 style="font-size:24px">{{inforDetail.product_title}}</h3>
|
|
|
<span class="lines"></span>
|
|
|
@@ -217,6 +217,7 @@ export default {
|
|
|
},
|
|
|
created() {
|
|
|
this.ids = this.$route.query.id;
|
|
|
+ console.log(this.ids);
|
|
|
},
|
|
|
methods: {
|
|
|
formatDate(time) {
|
|
|
@@ -244,7 +245,7 @@ export default {
|
|
|
|
|
|
async getFinanceList() {
|
|
|
let body = {
|
|
|
- order_id: this.ids
|
|
|
+ order_no: this.ids
|
|
|
};
|
|
|
// let res = await new Promise(resolve => {
|
|
|
// setTimeout(() => {
|
|
|
@@ -869,6 +870,10 @@ body {
|
|
|
padding: 20px;
|
|
|
background: white;
|
|
|
}
|
|
|
+.group-list-mobile {
|
|
|
+ width: 100%;
|
|
|
+ box-sizing: border-box;
|
|
|
+}
|
|
|
.top {
|
|
|
display: flex;
|
|
|
justify-content: space-between;
|