1
Showing
3 changed files
with
5 additions
and
4 deletions
| ... | @@ -86,7 +86,7 @@ const people = reactive({ | ... | @@ -86,7 +86,7 @@ const people = reactive({ |
| 86 | </div> | 86 | </div> |
| 87 | 87 | ||
| 88 | <div class="footer"> | 88 | <div class="footer"> |
| 89 | <div class="can_pay"> | 89 | <div class="can_pay" @click="$router.go(-1)"> |
| 90 | {{ languageFormat(language, "取消", "Cancel") }} | 90 | {{ languageFormat(language, "取消", "Cancel") }} |
| 91 | </div> | 91 | </div> |
| 92 | <div class="pay" @click="people.onConfirm()"> | 92 | <div class="pay" @click="people.onConfirm()"> |
| ... | @@ -142,6 +142,7 @@ div { | ... | @@ -142,6 +142,7 @@ div { |
| 142 | height: 70px; | 142 | height: 70px; |
| 143 | background-color: #fff; | 143 | background-color: #fff; |
| 144 | margin-top: 12px; | 144 | margin-top: 12px; |
| 145 | user-select: none; | ||
| 145 | .pay { | 146 | .pay { |
| 146 | width: 200px; | 147 | width: 200px; |
| 147 | height: 40px; | 148 | height: 40px; | ... | ... |
| ... | @@ -26,7 +26,7 @@ const startCheckSuccessListener = (orderSn, actId) => { | ... | @@ -26,7 +26,7 @@ const startCheckSuccessListener = (orderSn, actId) => { |
| 26 | payment.showCodeDialog = false; | 26 | payment.showCodeDialog = false; |
| 27 | ElMessage({ | 27 | ElMessage({ |
| 28 | type: "success", | 28 | type: "success", |
| 29 | message: anguageFormat( | 29 | message: languageFormat( |
| 30 | language.value, | 30 | language.value, |
| 31 | "支付成功", | 31 | "支付成功", |
| 32 | "Payment succeeded" | 32 | "Payment succeeded" |
| ... | @@ -237,7 +237,7 @@ order.fetchData(); | ... | @@ -237,7 +237,7 @@ order.fetchData(); |
| 237 | {{ languageFormat(language, "共计", "Total") }} | 237 | {{ languageFormat(language, "共计", "Total") }} |
| 238 | </div> | 238 | </div> |
| 239 | <div class="price_num"> | 239 | <div class="price_num"> |
| 240 | <span v-if="language == 1">¥</span>{{ order.data?.paymentAmount }} | 240 | <span v-if="language == 0">¥</span>{{ order.data?.paymentAmount }} |
| 241 | </div> | 241 | </div> |
| 242 | </div> | 242 | </div> |
| 243 | </div> | 243 | </div> | ... | ... |
| ... | @@ -27,7 +27,7 @@ http.interceptors.request.use( | ... | @@ -27,7 +27,7 @@ http.interceptors.request.use( |
| 27 | const TOKEN = getToken(); | 27 | const TOKEN = getToken(); |
| 28 | if (TOKEN) config.headers.Authorization = TOKEN; | 28 | if (TOKEN) config.headers.Authorization = TOKEN; |
| 29 | if (config.method == "get") config.params = config.data; | 29 | if (config.method == "get") config.params = config.data; |
| 30 | console.log("config", config); | 30 | // console.log("config", config); |
| 31 | return config; | 31 | return config; |
| 32 | }, | 32 | }, |
| 33 | (error) => { | 33 | (error) => { | ... | ... |
-
Please register or sign in to post a comment