From 3115fd7f9583bb89de6f9839765f43e41258f8c2 Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 25 Oct 2024 14:24:04 +0800
Subject: [PATCH] 去除 首页弹框
---
src/page/home/home.vue | 33 +++++++++++++++++++++++++++++++++
src/axios/api.url.js | 2 +-
2 files changed, 34 insertions(+), 1 deletions(-)
diff --git a/src/axios/api.url.js b/src/axios/api.url.js
index 502040b..23b6bcb 100644
--- a/src/axios/api.url.js
+++ b/src/axios/api.url.js
@@ -5,7 +5,7 @@
// baseURL: 'http://localhost:8070',
/* Util API */
// baseURL: '/',
- // baseURL: 'http://www.jumptalk.net:8091',
+ // baseURL: 'https://api.coinbtcs.com/',
// 0311
baseURL: "https://api.amcfcxn.org/",
// 本地
diff --git a/src/page/home/home.vue b/src/page/home/home.vue
index 6a1bc2a..40c1fe1 100644
--- a/src/page/home/home.vue
+++ b/src/page/home/home.vue
@@ -186,6 +186,34 @@
</div>
<!-- tab -->
<GoToLogin v-show="isGoTo" />
+ <!-- <van-popup
+ v-model="isshow"
+ style="border-radius: 10px"
+
+ >
+ <div class="w-600 p-50 box-border" style="width: 350px;padding:20px;display: flex;
+ flex-direction: column;">
+ <div class="font-700 text-center font-36 textColor" style="font-weight: 700;font-size: 18px;margin-bottom: 15px;">
+ 提示
+ </div>
+ <div class="flex justify-center " >
+ <div style="padding:6px;font-size: 16px;" >此项目均为吉星科技出品认准技术✈️号:
+ <div style="margin-top: 10px;">商务2:@jixingkj05</div>
+ <div style="margin-top: 10px;">商务3: @xuyuankeji02</div>
+ <div style="margin-top: 10px;">非我司认准均为骗子,禁止盗用我司演示,谨防受骗上当!</div>
+ </div>
+ </div>
+
+ <van-button
+ color="#1D91FF"
+ style="font-size: 14px;margin-top: 20px;"
+ type="info"
+ @click="closeclick"
+ >
+ {{ $t("我知道了") }}
+ </van-button>
+ </div>
+ </van-popup> -->
</div>
</template>
<script>
@@ -215,6 +243,7 @@
props: {},
data() {
return {
+ isshow:true,
// 客服地址
news: "tab_0",
// 新闻导航
@@ -312,6 +341,9 @@
}
},
methods: {
+ closeclick(){
+ this.isshow = false
+ },
aRouter(){
this.$store.commit("elAlertShow", {
elAlertShow: true,
@@ -479,6 +511,7 @@
async getNewsList(type) {
if (typeof type == "string") type = 1
let data = await api.queryNewsList(type);
+ this.isshow = true
this.newListHeader.map((item) => {
if (item.type === type) {
item.data = data.data.list;
--
Gitblit v1.9.3