From dad169496cf8eaa54e0b7b7d4f1348bc3ff61065 Mon Sep 17 00:00:00 2001 From: aixianling Date: Fri, 3 Jan 2025 17:12:03 +0800 Subject: [PATCH] =?UTF-8?q?feat(xumu):=20=E6=96=B0=E5=A2=9E=E5=87=BA?= =?UTF-8?q?=E6=A0=8F=E7=94=B3=E8=AF=B7=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 添加 AppSellApply 组件作为出栏申请的主入口 - 实现出栏申请列表页面,包括筛选、导出等功能 - 实现出栏申请详情和编辑页面,包括基础信息、标的信息、解押材料等 - 集成耳标选择器组件,用于选择投保标的 --- project/xumu/AppSellApply/AppSellApply.vue | 35 +++++ project/xumu/AppSellApply/add.vue | 145 +++++++++++++++++++++ project/xumu/AppSellApply/list.vue | 103 +++++++++++++++ project/xumu/components/AiEartagPicker.vue | 1 - 4 files changed, 283 insertions(+), 1 deletion(-) create mode 100644 project/xumu/AppSellApply/AppSellApply.vue create mode 100644 project/xumu/AppSellApply/add.vue create mode 100644 project/xumu/AppSellApply/list.vue diff --git a/project/xumu/AppSellApply/AppSellApply.vue b/project/xumu/AppSellApply/AppSellApply.vue new file mode 100644 index 00000000..f5f10420 --- /dev/null +++ b/project/xumu/AppSellApply/AppSellApply.vue @@ -0,0 +1,35 @@ + + + + + diff --git a/project/xumu/AppSellApply/add.vue b/project/xumu/AppSellApply/add.vue new file mode 100644 index 00000000..621f1237 --- /dev/null +++ b/project/xumu/AppSellApply/add.vue @@ -0,0 +1,145 @@ + + + + + diff --git a/project/xumu/AppSellApply/list.vue b/project/xumu/AppSellApply/list.vue new file mode 100644 index 00000000..dcbf7b89 --- /dev/null +++ b/project/xumu/AppSellApply/list.vue @@ -0,0 +1,103 @@ + + + + + diff --git a/project/xumu/components/AiEartagPicker.vue b/project/xumu/components/AiEartagPicker.vue index 1f3b4403..6b5d37aa 100644 --- a/project/xumu/components/AiEartagPicker.vue +++ b/project/xumu/components/AiEartagPicker.vue @@ -33,7 +33,6 @@ export default { url += `?penId=${this.penId}` } !/undefined/.test(url) && this.instance.post(url).then(res => { - console.log(res) if (res?.data) { this.list = res.data }