104c76f7 by yyx

1

1 parent 421304e8
......@@ -86,7 +86,7 @@ const people = reactive({
</div>
<div class="footer">
<div class="can_pay">
<div class="can_pay" @click="$router.go(-1)">
{{ languageFormat(language, "取消", "Cancel") }}
</div>
<div class="pay" @click="people.onConfirm()">
......@@ -142,6 +142,7 @@ div {
height: 70px;
background-color: #fff;
margin-top: 12px;
user-select: none;
.pay {
width: 200px;
height: 40px;
......
......@@ -26,7 +26,7 @@ const startCheckSuccessListener = (orderSn, actId) => {
payment.showCodeDialog = false;
ElMessage({
type: "success",
message: anguageFormat(
message: languageFormat(
language.value,
"支付成功",
"Payment succeeded"
......@@ -237,7 +237,7 @@ order.fetchData();
{{ languageFormat(language, "共计", "Total") }}
</div>
<div class="price_num">
<span v-if="language == 1">¥</span>{{ order.data?.paymentAmount }}
<span v-if="language == 0">¥</span>{{ order.data?.paymentAmount }}
</div>
</div>
</div>
......
......@@ -27,7 +27,7 @@ http.interceptors.request.use(
const TOKEN = getToken();
if (TOKEN) config.headers.Authorization = TOKEN;
if (config.method == "get") config.params = config.data;
console.log("config", config);
// console.log("config", config);
return config;
},
(error) => {
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!