From ee00a45f408636ca2507733cf26252fa5ee25d52 Mon Sep 17 00:00:00 2001
From: zzzz <690498789@qq.com>
Date: Thu, 25 Apr 2024 01:01:39 +0800
Subject: [PATCH] first
---
src/page/newUser/index.vue | 66 +++++++++++++++++++++++++++++++-
1 files changed, 63 insertions(+), 3 deletions(-)
diff --git a/src/page/newUser/index.vue b/src/page/newUser/index.vue
index 3d27f0e..87c8849 100644
--- a/src/page/newUser/index.vue
+++ b/src/page/newUser/index.vue
@@ -61,7 +61,50 @@
>{{ $t("提款") }}</van-button
>
</van-col>
+ <van-col span="8" style="display: flex; justify-content: center">
+ <van-button
+ @click="leverShow = true"
+ class="btn-two"
+ type="default"
+ >
+ {{ $t("申请杠杠") }}
+ </van-button>
+ </van-col>
</van-row>
+
+ <van-dialog
+ v-model="leverShow"
+ :title="$t('申请杠杠')"
+ show-cancel-button
+ :cancelButtonText="$t('取消')"
+ :confirmButtonText="$t('确认')"
+ @confirm="confirmLever"
+ >
+ <van-radio-group v-model="radio">
+ <van-cell-group>
+ <van-cell title="1X" clickable @click="radio = '1'">
+ <template #right-icon>
+ <van-radio name="1" />
+ </template>
+ </van-cell>
+ <van-cell title="2X" clickable @click="radio = '2'">
+ <template #right-icon>
+ <van-radio name="2" />
+ </template>
+ </van-cell>
+ <van-cell title="5X" clickable @click="radio = '5'">
+ <template #right-icon>
+ <van-radio name="5" />
+ </template>
+ </van-cell>
+ <van-cell title="10X" clickable @click="radio = '10'">
+ <template #right-icon>
+ <van-radio name="10" />
+ </template>
+ </van-cell>
+ </van-cell-group>
+ </van-radio-group>
+ </van-dialog>
</div>
<div class="content-list-box">
<div class="divider div-shrink"></div>
@@ -85,7 +128,8 @@
</div>
<div class="li-USDT">
<div class="DINPro">
- {{ item.symbol }} {{ item.availableBalance || "0.00" }}
+ {{ item.symbol }}
+ {{ item.availableBalance | _toLocaleString }}
</div>
<!-- <div class="DINPro">
≈ $ {{ item.availableBalanceUSD || "0.00" }}
@@ -98,7 +142,8 @@
</div>
<div class="li-USDT">
<div class="DINPro">
- {{ item.symbol }} {{ item.freezeMoney || "0.00" }}
+ {{ item.symbol }}
+ {{ item.freezeMoney | _toLocaleString }}
</div>
<!-- <div class="DINPro">≈ $ {{ item.freezeMoney || "0.00" }}</div> -->
</div>
@@ -117,11 +162,15 @@
import { isNull, pwdReg } from "@/utils/utils";
import showHide from "@/components/showHide";
import Vue from "vue";
+import { Notify } from "vant";
+
export default {
name: "newUser",
components: { showHide },
data() {
return {
+ leverShow: false,
+ radio: "1",
// 显示隐藏
xy: true,
listAsstes: [
@@ -154,12 +203,23 @@
this.getInfoSite();
},
methods: {
+ // 申请杠杠
+ async confirmLever() {
+ const res = await api.applyLever({ lever: this.radio });
+ if (res.status === 0) {
+ Notify({
+ type: "success",
+ message: this.$t("申请杠杠成功,请联系客服!"),
+ });
+ } else {
+ Notify({ type: "warning", message: res.msg });
+ }
+ },
kefu() {
window.open(this.onlineService);
},
async getMoneyData() {
let data = await api.getMoney();
- console.log(data);
if (data.status === 0) {
// 判断是否登录
this.moneyList = data.data;
--
Gitblit v1.9.3