-
{
@@ -143,31 +202,30 @@ const go = (idx) => {
>
-
-
-
+
+
+
-
+
-
+
-
+
-
-
+
@@ -179,39 +237,37 @@ const go = (idx) => {
>
-
-
+
-
+
-
+
-
+
-
+
-
-
+
+ 100%
-
+
@@ -318,7 +374,6 @@ const go = (idx) => {
color: #ffffff !important;
font-weight: 600;
}
-
}
}
}
@@ -327,8 +382,9 @@ const go = (idx) => {
}
:deep(.el-dialog){
background: url('../../../assets/images/dialogimg.png') no-repeat !important ;
- background-size:100% 100% !important;
- .el-dialog__header{
+ background-size:100% 100% !important;
+ // position:
+ .el-dialog__header{
padding: 0px;
display: flex;
justify-content: center;
@@ -341,7 +397,7 @@ const go = (idx) => {
background-size:100% 100% !important;
width: 28px;
height: 28px;
- margin-right: 15px;
+ // margin-right: 15px;
cursor: pointer;
}
}
diff --git a/src/views/business-bank/personal/personal.vue b/src/views/business-bank/personal/personal.vue
index 613c395..5b0be23 100644
--- a/src/views/business-bank/personal/personal.vue
+++ b/src/views/business-bank/personal/personal.vue
@@ -1,5 +1,8 @@
@@ -270,7 +359,7 @@ getEnterprise()
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
- 通过
+ {{ scope.row.businessBankApprovalStatus == 'true'?'通过':'未通过' }}
-
-
- 验证
+
+ {{ scope.row.businessBankApprovalStatus == 'true' ? '已验证':'验证' }}
-
+ v-show="wallettotal>0"
+ :total="wallettotal"
+ v-model:page="walletParams.index"
+ v-model:limit="walletParams.size"
+ @pagination="getWallet"
+ />
+
@@ -333,7 +426,7 @@ getEnterprise()
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
-
查看
-
-
-
-
+ v-show="moneyTotal>0"
+ :total="moneyTotal"
+ v-model:page="exchangeMoneyParams.index"
+ v-model:limit="exchangeMoneyParams.size"
+ @pagination="getRedPacketList"
+ />
+
+
+
+
+
@@ -399,32 +495,38 @@ getEnterprise()
-
+
-
+
-
+
-
+
-
+
-
+
-
+
+
+ {{parseTime(scope.row.startTime,'{y}-{m}-{d}')}} ~ {{parseTime(scope.row.endTime,'{y}-{m}-{d}')}}
+
-
+
+
+ {{parseTime(scope.row.issuanceDate,'{y}-{m}-{d}')}}
+
-
+
-
+
发放
@@ -437,7 +539,12 @@ getEnterprise()
+ :total="20"/>
+
+
+
+
+
@@ -448,7 +555,7 @@ getEnterprise()
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -493,9 +600,17 @@ getEnterprise()
+ v-show="buytotal>0"
+ :total="buytotal"
+ v-model:page="buyParams.index"
+ v-model:limit="buyParams.size"
+ @pagination="getBuyList"
+ />
+
+
+
+
+
+
+
{
return {
color: "black",
@@ -83,12 +94,15 @@ function getFilePDF (e) {
fileInput.value.style.display='block'
fileInput.value.src=e.target.result
}
-
}
e.target.value=''
-
}
+const getList =()=>{
+ commercialbank.getCommodityManagement(commodityManagementParams).then(res=>{
+ })
+}
+getList()
diff --git a/src/views/central-bank/currency/currency.vue b/src/views/central-bank/currency/currency.vue
index fb1020c..ec4a7ce 100644
--- a/src/views/central-bank/currency/currency.vue
+++ b/src/views/central-bank/currency/currency.vue
@@ -4,13 +4,14 @@ import * as centralBank from '@/api/centralBank';
import { reactive } from 'vue';
import { useRouter } from 'vue-router';
const { proxy } = getCurrentInstance();
-
+import useUserStore from "@/store/modules/user";
+const userStore = useUserStore();
const dialogVisible = ref(false);
// 获取货币申请params
const getCurrencyParams =reactive( {
- userId:'1',
+ userId:userStore.userId,
total: 0,
size: 1,
index: 1,
@@ -25,7 +26,7 @@ const getCurrency = async() => {
currencyTableData.value = res.data.list
getCurrencyParams.total = res.data.total
} catch (error) {
-
+
}
};
// 确定是否通过申请
diff --git a/src/views/central-bank/digital-currency-deployment-homepage/index.vue b/src/views/central-bank/digital-currency-deployment-homepage/index.vue
index b131593..7a6e748 100644
--- a/src/views/central-bank/digital-currency-deployment-homepage/index.vue
+++ b/src/views/central-bank/digital-currency-deployment-homepage/index.vue
@@ -4,6 +4,8 @@ import * as centralBank from '@/api/centralBank'
import information from '../information/central.vue';
import currencyPut from '../digital-currency/currency-put.vue';
import currency from '../currency/currency.vue';
+import useUserStore from "@/store/modules/user";
+const userStore = useUserStore();
// 引入路由进行跳转
import { useRouter } from 'vue-router';
const router = useRouter();
@@ -38,7 +40,7 @@ const go = (idx) => {
}
const verifylParams= reactive({
- userId:'1',
+ userId:userStore.userId,
size:1,
index:1
})
@@ -114,13 +116,6 @@ const apply = async(code) => {
}
};
// 验证选择
-const handleCheckChange = (val) => {
-if(val.value ==1){
- proxy.$modal.msgError('兑换行没有缴存足额的准备金');
-}else{
- proxy.$modal.msgError('兑换行公钥和私钥不一致');
-}
-};
getTableData()
diff --git a/src/views/central-bank/digital-currency/currency-put.vue b/src/views/central-bank/digital-currency/currency-put.vue
index 4ead974..380d667 100644
--- a/src/views/central-bank/digital-currency/currency-put.vue
+++ b/src/views/central-bank/digital-currency/currency-put.vue
@@ -2,6 +2,8 @@
import controlform from '@/components/controlform/control.vue'
import * as centralBank from '@/api/centralBank';
import check from '@/components/check/check.vue'
+import useUserStore from "@/store/modules/user";
+const userStore = useUserStore();
// 引入路由进行跳转
import { useRouter } from 'vue-router';
const router = useRouter();
@@ -51,7 +53,7 @@ const tableHeaderCellStyle = ({ row, column, rowIndex, columnIndex }) => {
// 获取数字货币投放的表格params
const getCurrencyPutParams = reactive({
- userId:'1',
+ userId:userStore.userId,
index: 1,
size: 10,
diff --git a/src/views/central-bank/index.vue b/src/views/central-bank/index.vue
index 6f7e2c5..932990b 100644
--- a/src/views/central-bank/index.vue
+++ b/src/views/central-bank/index.vue
@@ -12,7 +12,9 @@ const goToPage=(i)=>{
router.push('/central/digital-authentication')
}else if(i == 4){
router.push('/central/digital-currency-registration')
+
}else if(i == 5){
+router.push('/visual/index')
}
}
diff --git a/src/views/central-bank/information/central.vue b/src/views/central-bank/information/central.vue
index 91c04f0..e5a4755 100644
--- a/src/views/central-bank/information/central.vue
+++ b/src/views/central-bank/information/central.vue
@@ -1,6 +1,8 @@
@@ -90,7 +285,7 @@ getRedPackage()
- 新增消费红包
+ 新增消费红包
@@ -98,7 +293,6 @@ getRedPackage()
:data="expenseData"
style="width: 100%"
stripe
-
>
@@ -120,12 +314,11 @@ getRedPackage()
-
-
+
发放
-
- 查看
+
+ 领取详情
@@ -168,9 +361,11 @@ XY-10001
¥1000
-
- 详情
+
+
+ 查看详情
+
v-model="DetailsVisible"
title="领取详情"
width="56%"
+ :before-close="handleClose"
>
-
-
+
-
+
-
+
+
+ {{ parseTime(scope.row.receivedTime,'{y}-{m}-{d} {h}:{i}:{s}') }}
+
-
+
-
+
-
+
-
- 查看
+
+
+ 详情
+
+
-
+
@@ -222,20 +424,7 @@ XY-10001
title="查看数字货币"
width="56%"
>
-
-
-
-
-
-
-
-
-
+
width="35%"
>
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- ~
-
+
+ ~
+
-
-
+
+
-
- -cNy
+
+ -cNy
-
-
+
+
-
-
+
+
-
-
- 等额红包
- 随机金额红包
-
-
+
+
+ 等额红包
+ 随机金额红包
+
+
上传
-
-
+
+
@@ -466,6 +645,10 @@ XY-10001
}
}
:deep(.el-dialog){
+ position: absolute !important;
+ top: 40% !important;
+ left: 50% !important;
+ transform: translate(-50%, -40%) !important;
.el-dialog__body{
.conter{
display: flex;
diff --git a/src/views/individual/consumermall/consumermall.vue b/src/views/individual/consumermall/consumermall.vue
index 4e2a2e6..53ffbd4 100644
--- a/src/views/individual/consumermall/consumermall.vue
+++ b/src/views/individual/consumermall/consumermall.vue
@@ -1,72 +1,77 @@
@@ -82,12 +87,12 @@ getRedPacket()
@@ -135,17 +140,32 @@ getRedPacket()
width="34%"
>
+
+
+
+
+
-
+
-
+
e-CNY
-
+
+
+
\ No newline at end of file
diff --git a/src/views/individual/mywallet/mywallet.vue b/src/views/individual/mywallet/mywallet.vue
index d392c2c..ead2455 100644
--- a/src/views/individual/mywallet/mywallet.vue
+++ b/src/views/individual/mywallet/mywallet.vue
@@ -1,7 +1,10 @@
\ No newline at end of file
diff --git a/src/views/visual/index.vue b/src/views/visual/index.vue
new file mode 100644
index 0000000..31a049c
--- /dev/null
+++ b/src/views/visual/index.vue
@@ -0,0 +1,287 @@
+
+
+
+
+
信息验证
+
数字货币申请
+
数字货币投放
+
+
+
+
+
+
+
+