From 6056130c3301e7f07a5f57ae9c124817192b18d8 Mon Sep 17 00:00:00 2001 From: sws <1141121512@qq.com> Date: Mon, 30 Sep 2024 17:44:08 +0800 Subject: [PATCH] =?UTF-8?q?1.=E5=AF=BC=E5=85=A5=E6=96=B0=E5=A2=9E=E6=A8=A1?= =?UTF-8?q?=E7=89=88=E5=BC=B9=E7=AA=97?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../common/template-import/index.vue | 40 +++++++++++++++++-- 1 file changed, 37 insertions(+), 3 deletions(-) diff --git a/src/components/common/template-import/index.vue b/src/components/common/template-import/index.vue index a8382d87..d7222596 100644 --- a/src/components/common/template-import/index.vue +++ b/src/components/common/template-import/index.vue @@ -13,7 +13,7 @@ @@ -68,7 +68,37 @@

{{ item.price_data.value }}

{{ item.buy_data.title }} -
{{ item.version_apply.name }}
+
+ + + +
+
+ {{ version }} +
+
+
+
+ + + +
+
+ {{ domain }} +
+
+
+
+
@@ -156,7 +186,11 @@ const get_import_list = (type?: string) => { form.value.page = 1; } loading.value = true; - DiyAPI.getImportList(form.value) + const new_data = { + ...form.value, + is_already_buy: form.value.status ? '1' : '0', + }; + DiyAPI.getImportList(new_data) .then((res: any) => { const data = res.data; form.value.data_total = data.data_total;