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;