From 417c8c4716f8dab251c9877665f256c1be58acbb Mon Sep 17 00:00:00 2001
From: jhzh <1628036192@qq.com>
Date: Fri, 11 Oct 2024 17:20:16 +0800
Subject: [PATCH] 11

---
 src/views/position/components/financing-flat.vue |   23 +++++++++++++++++++++++
 1 files changed, 23 insertions(+), 0 deletions(-)

diff --git a/src/views/position/components/financing-flat.vue b/src/views/position/components/financing-flat.vue
index c356357..411a138 100644
--- a/src/views/position/components/financing-flat.vue
+++ b/src/views/position/components/financing-flat.vue
@@ -33,6 +33,11 @@
               </a-form-item>
             </a-col>
             <a-col :md="12" :lg="6" :sm="24">
+              <a-form-item label="手机号">
+                <a-input v-model="queryParam.phone" style="width: 100%" placeholder="请输入手机号" />
+              </a-form-item>
+            </a-col>
+            <a-col :md="12" :lg="6" :sm="24">
               <a-form-item label="持仓订单号">
                 <a-input v-model="queryParam.positionSn" style="width: 100%" placeholder="请输入持仓订单号" />
               </a-form-item>
@@ -349,6 +354,20 @@
           dataIndex: 'orderNum',
           align: 'center',
         },
+
+        {
+          title: '账号',
+          dataIndex: 'phone',
+          align: 'center',
+        },
+        {
+          title: '所属代理(ID)',
+          dataIndex: 'agentName_Id',
+          align: 'center',
+          customRender: (text, row, index) => {
+            return `${row.agentName}(${row.agentId})`
+          },
+        },
         {
           title: '总市值',
           dataIndex: 'orderTotalPrice',
@@ -429,6 +448,8 @@
         agentId: undefined,
         userId: '',
         positionSn: '',
+        phone: '',
+
         state: 1,
         beginTime: '',
         endTime: '',
@@ -482,6 +503,7 @@
         agentId: undefined,
         userId: '',
         positionSn: '',
+        phone: '',
         state: 1,
         beginTime: '',
         endTime: '',
@@ -498,6 +520,7 @@
         pageNum: 1,
         pageSize: 10,
         positionType: '',
+        phone: '',
         agentId: undefined,
         userId: '',
         positionSn: '',

--
Gitblit v1.9.3