diff --git a/src/views/invest/accountDealRecord/index.vue b/src/views/invest/accountDealRecord/index.vue index 413cfd6..61df7e2 100644 --- a/src/views/invest/accountDealRecord/index.vue +++ b/src/views/invest/accountDealRecord/index.vue @@ -43,6 +43,7 @@
+ - +
@@ -307,6 +315,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + const handleTypeChange = (type) => { queryAddAccountParams.value.type = type form.value.accountId = null diff --git a/src/views/invest/accounts/index.vue b/src/views/invest/accounts/index.vue index 637acf4..d0d8080 100644 --- a/src/views/invest/accounts/index.vue +++ b/src/views/invest/accounts/index.vue @@ -38,7 +38,7 @@
- + - +
@@ -182,7 +189,8 @@ - + @@ -366,6 +374,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/creditCardBill/index.vue b/src/views/invest/creditCardBill/index.vue index bb1ffba..c923e02 100644 --- a/src/views/invest/creditCardBill/index.vue +++ b/src/views/invest/creditCardBill/index.vue @@ -35,6 +35,7 @@
+ @@ -62,7 +63,14 @@ - +
@@ -305,6 +313,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/creditInstallmentHistory/index.vue b/src/views/invest/creditInstallmentHistory/index.vue index dcbd9c0..133c4fd 100644 --- a/src/views/invest/creditInstallmentHistory/index.vue +++ b/src/views/invest/creditInstallmentHistory/index.vue @@ -30,6 +30,7 @@
+ @@ -75,7 +76,14 @@ - +
@@ -190,6 +198,7 @@
+ - +
@@ -275,6 +284,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/creditcard/index.vue b/src/views/invest/creditcard/index.vue index af3ec45..7edacda 100644 --- a/src/views/invest/creditcard/index.vue +++ b/src/views/invest/creditcard/index.vue @@ -29,18 +29,16 @@
- + + - - - - - - + + + + - + + @@ -55,12 +53,12 @@ --> - + - + - +
@@ -141,16 +146,107 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
基本信息
+
+ 新增 +
+
+
+ + + + + + + + + + + + + + + + + + + + +
+
+
+ +
diff --git a/src/views/invest/financials/index.vue b/src/views/invest/financials/index.vue new file mode 100644 index 0000000..742450a --- /dev/null +++ b/src/views/invest/financials/index.vue @@ -0,0 +1,349 @@ + + + diff --git a/src/views/invest/futureBaseInfor/index.vue b/src/views/invest/futureBaseInfor/index.vue new file mode 100644 index 0000000..302594b --- /dev/null +++ b/src/views/invest/futureBaseInfor/index.vue @@ -0,0 +1,441 @@ + + + diff --git a/src/views/invest/futureStandardInfor/index.vue b/src/views/invest/futureStandardInfor/index.vue new file mode 100644 index 0000000..600fe59 --- /dev/null +++ b/src/views/invest/futureStandardInfor/index.vue @@ -0,0 +1,470 @@ + + + diff --git a/src/views/invest/futures/index.vue b/src/views/invest/futures/index.vue index 168b590..d23f22f 100644 --- a/src/views/invest/futures/index.vue +++ b/src/views/invest/futures/index.vue @@ -29,6 +29,7 @@
+ @@ -40,11 +41,7 @@ - - - + - +
@@ -259,6 +263,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/futuresBill/index.vue b/src/views/invest/futuresBill/index.vue index 22e36a9..874d08d 100644 --- a/src/views/invest/futuresBill/index.vue +++ b/src/views/invest/futuresBill/index.vue @@ -30,6 +30,7 @@
+ @@ -45,7 +46,14 @@ - +
@@ -337,6 +345,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/futuresDailyHistory/index.vue b/src/views/invest/futuresDailyHistory/index.vue new file mode 100644 index 0000000..7175407 --- /dev/null +++ b/src/views/invest/futuresDailyHistory/index.vue @@ -0,0 +1,365 @@ + + + diff --git a/src/views/invest/heartJourney/index.vue b/src/views/invest/heartJourney/index.vue index 402c2c4..33239c6 100644 --- a/src/views/invest/heartJourney/index.vue +++ b/src/views/invest/heartJourney/index.vue @@ -29,6 +29,7 @@
+ - +
@@ -184,6 +192,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/investAccountDeal/index.vue b/src/views/invest/investAccountDeal/index.vue index 5b70227..437c0a4 100644 --- a/src/views/invest/investAccountDeal/index.vue +++ b/src/views/invest/investAccountDeal/index.vue @@ -33,6 +33,7 @@
+ - +
@@ -270,6 +278,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/investTransferRecord/index.vue b/src/views/invest/investTransferRecord/index.vue index c0caef2..5fd1f2a 100644 --- a/src/views/invest/investTransferRecord/index.vue +++ b/src/views/invest/investTransferRecord/index.vue @@ -38,7 +38,9 @@
- + + @@ -54,7 +56,14 @@ - +
@@ -236,6 +245,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/lend/index.vue b/src/views/invest/lend/index.vue index a6629f4..7ed54e5 100644 --- a/src/views/invest/lend/index.vue +++ b/src/views/invest/lend/index.vue @@ -34,6 +34,7 @@
+ @@ -57,7 +58,14 @@ - +
@@ -220,6 +228,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/lendTransferRecord/index.vue b/src/views/invest/lendTransferRecord/index.vue index 0632070..5457a9d 100644 --- a/src/views/invest/lendTransferRecord/index.vue +++ b/src/views/invest/lendTransferRecord/index.vue @@ -38,7 +38,9 @@
- + + - +
@@ -286,6 +295,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/onlineLendHistory/index.vue b/src/views/invest/onlineLendHistory/index.vue index 195b9b1..1b197f9 100644 --- a/src/views/invest/onlineLendHistory/index.vue +++ b/src/views/invest/onlineLendHistory/index.vue @@ -30,6 +30,7 @@
+ @@ -76,7 +77,14 @@ - +
@@ -430,6 +438,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/peopleLendHistory/index.vue b/src/views/invest/peopleLendHistory/index.vue index b8c9d5e..cdd82f0 100644 --- a/src/views/invest/peopleLendHistory/index.vue +++ b/src/views/invest/peopleLendHistory/index.vue @@ -31,6 +31,7 @@
+ @@ -60,7 +61,14 @@ - +
@@ -240,6 +248,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/posTransferRecord/index.vue b/src/views/invest/posTransferRecord/index.vue index 78f86aa..5bdc836 100644 --- a/src/views/invest/posTransferRecord/index.vue +++ b/src/views/invest/posTransferRecord/index.vue @@ -38,7 +38,9 @@
- + + @@ -57,7 +59,14 @@ - +
@@ -273,6 +282,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/posadvice/index.vue b/src/views/invest/posadvice/index.vue new file mode 100644 index 0000000..e6cfb03 --- /dev/null +++ b/src/views/invest/posadvice/index.vue @@ -0,0 +1,200 @@ + + + diff --git a/src/views/invest/posmachine/index.vue b/src/views/invest/posmachine/index.vue index 973d39c..8711f6c 100644 --- a/src/views/invest/posmachine/index.vue +++ b/src/views/invest/posmachine/index.vue @@ -37,6 +37,7 @@
+ @@ -69,7 +70,14 @@ - +
@@ -286,6 +294,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/productInfor/index.vue b/src/views/invest/productInfor/index.vue new file mode 100644 index 0000000..68f1850 --- /dev/null +++ b/src/views/invest/productInfor/index.vue @@ -0,0 +1,313 @@ + + + diff --git a/src/views/invest/productPriceRecord/index.vue b/src/views/invest/productPriceRecord/index.vue new file mode 100644 index 0000000..7dfb9dd --- /dev/null +++ b/src/views/invest/productPriceRecord/index.vue @@ -0,0 +1,444 @@ + + + diff --git a/src/views/invest/sleepAccounts/index.vue b/src/views/invest/sleepAccounts/index.vue new file mode 100644 index 0000000..738d602 --- /dev/null +++ b/src/views/invest/sleepAccounts/index.vue @@ -0,0 +1,569 @@ + + + diff --git a/src/views/invest/stockBaseInfor/index.vue b/src/views/invest/stockBaseInfor/index.vue new file mode 100644 index 0000000..d985cbf --- /dev/null +++ b/src/views/invest/stockBaseInfor/index.vue @@ -0,0 +1,411 @@ + + + diff --git a/src/views/invest/stocks/index.vue b/src/views/invest/stocks/index.vue index d1e9927..e5dab8f 100644 --- a/src/views/invest/stocks/index.vue +++ b/src/views/invest/stocks/index.vue @@ -29,6 +29,7 @@
+ @@ -54,7 +55,14 @@ - +
@@ -245,6 +253,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/stocksBill/index.vue b/src/views/invest/stocksBill/index.vue index 746f519..cd49937 100644 --- a/src/views/invest/stocksBill/index.vue +++ b/src/views/invest/stocksBill/index.vue @@ -30,6 +30,7 @@
+ @@ -45,7 +46,14 @@ - +
@@ -335,6 +343,18 @@ const handleCurrentChange = (val) => { getList() } +//每页显示条数改变 +const handleSizeChange = (val) => { + queryParams.value.pageSize = val + getList() +} +// 序号翻页递增 +const indexMethod = (index) => { + const nowPage = queryParams.value.pageNum //当前第几页,根据组件取值即可 + const nowLimit = queryParams.value.pageSize //当前每页显示几条,根据组件取值即可 + return index + 1 + (nowPage - 1) * nowLimit // 这里可以理解成一个公式 +} + // 多选框选中数据 function handleSelectionChange(selection) { ids.value = selection.map((item) => item.id) diff --git a/src/views/invest/stocksDailyHistory/index.vue b/src/views/invest/stocksDailyHistory/index.vue new file mode 100644 index 0000000..22de532 --- /dev/null +++ b/src/views/invest/stocksDailyHistory/index.vue @@ -0,0 +1,323 @@ + + +