@@ -190,7 +198,7 @@
@@ -222,7 +230,7 @@
@@ -256,6 +264,7 @@ export default {
}
}
return {
+ isCoin: null,
type: [
{
label: '增加',
@@ -393,9 +402,10 @@ export default {
})
},
// 私户
- handlePrivateTransfer(row,v) {
+ handlePrivateTransfer(row, v) {
this.reset(v);
this.loading = true;
+ this.isCoin = row.isCoin
// 获取用户出金
this.getUserWithdrawalChannel();
payMoneyCalcu.getWithdrawalChannel({
@@ -412,13 +422,13 @@ export default {
storeId: this.queryParams.storeId
})
.then((response) => {
- this.form.accountNo=row.accountNo
+ this.form.accountNo = row.accountNo
this.detailData = response.data
});
});
},
// 资金划转
- handleTransfer(row,v) {
+ handleTransfer(row, v) {
this.reset(v);
this.form.storeId = this.pkCouponStore.storeId
this.loading = true;
@@ -442,40 +452,40 @@ export default {
},
// 余额修改
- subUpdateBalance(a,v){
- var googleCode=this.form.googleCode
- this.$refs[v].validate((valid) => {
- if (valid) {
- const loading = this.$loading({
- lock: true,
- text: `正在修改`,
- spinner: "el-icon-loading",
- background: "rgba(0, 0, 0, 0.7)",
+ subUpdateBalance(a, v) {
+ var googleCode = this.form.googleCode
+ this.$refs[v].validate((valid) => {
+ if (valid) {
+ const loading = this.$loading({
+ lock: true,
+ text: `正在修改`,
+ spinner: "el-icon-loading",
+ background: "rgba(0, 0, 0, 0.7)",
+ });
+ payMoneyCalcu
+ .updateBalance({
+ accountNo: this.form.accountNo,
+ googleCode: googleCode,
+ updateUserId: this.form.updateUserId,
+ isIncome: this.form.isIncome,
+ tranAmt: this.form.afterAmt,
+ })
+ .then((response) => {
+ loading.close();
+ if (response.code == 200) {
+ this.$message.success('修改成功')
+ this.getList();
+ }
+ this.openBalance = false
+ })
+ .catch(() => {
+ loading.close();
});
- payMoneyCalcu
- .updateBalance({
- accountNo:this.form.accountNo,
- googleCode:googleCode,
- updateUserId:this.form.updateUserId,
- isIncome:this.form.isIncome,
- tranAmt:this.form.afterAmt,
- })
- .then((response) => {
- loading.close();
- if (response.code == 200) {
- this.$message.success('修改成功')
- this.getList();
- }
- this.openBalance = false
- })
- .catch(() => {
- loading.close();
- });
- }
- });
+ }
+ });
},
/** 提交按钮 */
- submitForm(type,val) {
+ submitForm(type, val) {
if (type == 'private') {
this.form.storeId = this.pkCouponStore.storeId
if (this.form.paymentAmount > this.detailData.useCapital) {
@@ -490,18 +500,37 @@ export default {
spinner: "el-icon-loading",
background: "rgba(0, 0, 0, 0.7)",
});
- payMoneyCalcu
- .storePaymentSave(this.form)
- .then((response) => {
- loading.close();
- if (response.code == 200) {
- this.$message.success('代付资金提交成功')
- }
- this.openBank = false
- })
- .catch(() => {
- loading.close();
- });
+ if (this.isCoin == 'N') {
+ payMoneyCalcu
+ .storePaymentSave(this.form)
+ .then((response) => {
+ loading.close();
+ if (response.code == 200) {
+ this.$message.success('代付资金提交成功')
+ }
+ this.openBank = false
+ this.getList()
+ })
+ .catch(() => {
+ loading.close();
+ });
+ }
+ if (this.isCoin == 'Y') {
+ payMoneyCalcu
+ .storePaymentCurrencySave(this.form)
+ .then((response) => {
+ loading.close();
+ if (response.code == 200) {
+ this.$message.success('代付资金提交成功')
+ }
+ this.openBank = false
+ this.getList()
+ })
+ .catch(() => {
+ loading.close();
+ });
+ }
+
}
});
}
@@ -528,6 +557,7 @@ export default {
this.$message.success('划转资金提交成功')
}
this.openTransfer = false
+ this.getList()
})
.catch(() => {
loading.close();
@@ -555,6 +585,7 @@ export default {
this.$message.success('冻结成功')
}
this.open = false
+ this.getList()
})
.catch(() => {
loading.close();
@@ -565,7 +596,7 @@ export default {
},
// 手动修改余额
- updateBalance(row,v) {
+ updateBalance(row, v) {
this.reset(v);
this.detailData = row
this.form.accountNo = row.accountNo
@@ -574,7 +605,7 @@ export default {
this.openBalance = true;
},
// 资金冻结
- handleFrozen(row,v) {
+ handleFrozen(row, v) {
this.reset(v);
this.detailData = row
this.form.storeId = this.pkCouponStore.storeId
diff --git a/src/views/pay/payOrder/singleNeiChong.vue b/src/views/pay/payOrder/singleNeiChong.vue
index 138b449..fe6bfd8 100644
--- a/src/views/pay/payOrder/singleNeiChong.vue
+++ b/src/views/pay/payOrder/singleNeiChong.vue
@@ -3,7 +3,7 @@
-
单笔内充
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payRecord/payRecordBack.vue b/src/views/pay/payRecord/payRecordBack.vue
index a10ff5e..c0d1539 100644
--- a/src/views/pay/payRecord/payRecordBack.vue
+++ b/src/views/pay/payRecord/payRecordBack.vue
@@ -3,7 +3,7 @@
-
下游回调日志
+
{{ $route.meta.title }}
@@ -229,21 +229,26 @@ export default {
reqData: this.form.req_data,
mediaType: this.form.mediaType,
}
- payTest
+
+ payTest
.payCode(form)
.then((response) => {
this.resMsg = response.msg
let s = JSON.parse(response.msg)
this.form.resp = s.codeImgUrl
});
+
+
},
//代扣支付签名
handleSay() {
- payTest
+
+ payTest
.paySign(this.form)
.then((response) => {
this.form.req_data = response.msg
});
+
},
init() {
common_api.payTypeAll().then((response) => {
diff --git a/src/views/pay/payTest/payDai.vue b/src/views/pay/payTest/payDai.vue
index 62c7b8b..16f068d 100644
--- a/src/views/pay/payTest/payDai.vue
+++ b/src/views/pay/payTest/payDai.vue
@@ -3,7 +3,7 @@
-
代付
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payTest/payucode.vue b/src/views/pay/payTest/payucode.vue
new file mode 100644
index 0000000..304e585
--- /dev/null
+++ b/src/views/pay/payTest/payucode.vue
@@ -0,0 +1,305 @@
+
+
+
+
+
+
{{ $route.meta.title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 获取签名
+
+
+ 支付
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/pay/payTest/payupay.vue b/src/views/pay/payTest/payupay.vue
new file mode 100644
index 0000000..aca8e8f
--- /dev/null
+++ b/src/views/pay/payTest/payupay.vue
@@ -0,0 +1,280 @@
+
+
+
+
+
+
{{ $route.meta.title }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 获取签名
+
+
+ 支付
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/views/pay/payType/payBankManualUser.vue b/src/views/pay/payType/payBankManualUser.vue
index 2786be5..d530bb5 100644
--- a/src/views/pay/payType/payBankManualUser.vue
+++ b/src/views/pay/payType/payBankManualUser.vue
@@ -3,7 +3,7 @@
-
内充银行配置
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payType/payChannelDefult.vue b/src/views/pay/payType/payChannelDefult.vue
index 4d1d869..5f40bca 100644
--- a/src/views/pay/payType/payChannelDefult.vue
+++ b/src/views/pay/payType/payChannelDefult.vue
@@ -3,7 +3,7 @@
-
默认支付渠道配置
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payType/payChannelOut.vue b/src/views/pay/payType/payChannelOut.vue
index f84b71b..d79e607 100644
--- a/src/views/pay/payType/payChannelOut.vue
+++ b/src/views/pay/payType/payChannelOut.vue
@@ -3,7 +3,7 @@
-
出金渠道配置
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payType/payTypeChannel.vue b/src/views/pay/payType/payTypeChannel.vue
index 0448fa4..a0f3ae6 100644
--- a/src/views/pay/payType/payTypeChannel.vue
+++ b/src/views/pay/payType/payTypeChannel.vue
@@ -3,7 +3,7 @@
-
渠道类型管理
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payType/payTypeChannelManage.vue b/src/views/pay/payType/payTypeChannelManage.vue
index 94c6d1d..dcf02b4 100644
--- a/src/views/pay/payType/payTypeChannelManage.vue
+++ b/src/views/pay/payType/payTypeChannelManage.vue
@@ -3,7 +3,7 @@
-
通道配置管理
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payType/payTypeManage.vue b/src/views/pay/payType/payTypeManage.vue
index bedc1c3..ecd3cce 100644
--- a/src/views/pay/payType/payTypeManage.vue
+++ b/src/views/pay/payType/payTypeManage.vue
@@ -3,7 +3,7 @@
-
支付类型管理
+
{{ $route.meta.title }}
diff --git a/src/views/pay/payType/payTypeSettleConfig.vue b/src/views/pay/payType/payTypeSettleConfig.vue
index 1024ee7..a8ec508 100644
--- a/src/views/pay/payType/payTypeSettleConfig.vue
+++ b/src/views/pay/payType/payTypeSettleConfig.vue
@@ -3,7 +3,7 @@
-
结算配置管理
+
{{ $route.meta.title }}
diff --git a/src/views/system/config/index.vue b/src/views/system/config/index.vue
index da9e6ce..5730ada 100644
--- a/src/views/system/config/index.vue
+++ b/src/views/system/config/index.vue
@@ -3,7 +3,7 @@
-
参数设置
+
{{ $route.meta.title }}
diff --git a/src/views/system/dept/index.vue b/src/views/system/dept/index.vue
index 663bc6a..a48d651 100644
--- a/src/views/system/dept/index.vue
+++ b/src/views/system/dept/index.vue
@@ -3,7 +3,7 @@
-
部门管理
+
{{ $route.meta.title }}
diff --git a/src/views/system/dict/data.vue b/src/views/system/dict/data.vue
index 8045d3f..b0febd3 100644
--- a/src/views/system/dict/data.vue
+++ b/src/views/system/dict/data.vue
@@ -3,7 +3,7 @@
-
字典数据
+
{{ $route.meta.title }}
diff --git a/src/views/system/dict/index.vue b/src/views/system/dict/index.vue
index 069a770..3f6ab3d 100644
--- a/src/views/system/dict/index.vue
+++ b/src/views/system/dict/index.vue
@@ -3,7 +3,7 @@
-
字典管理
+
{{ $route.meta.title }}
diff --git a/src/views/system/menu/index.vue b/src/views/system/menu/index.vue
index 25333a4..c2f0a0d 100644
--- a/src/views/system/menu/index.vue
+++ b/src/views/system/menu/index.vue
@@ -4,7 +4,7 @@
-
菜单管理
+
{{ $route.meta.title }}
diff --git a/src/views/system/notice/index.vue b/src/views/system/notice/index.vue
index 565e760..c110d65 100644
--- a/src/views/system/notice/index.vue
+++ b/src/views/system/notice/index.vue
@@ -4,7 +4,7 @@
-
通知公告
+
{{ $route.meta.title }}
diff --git a/src/views/system/post/index.vue b/src/views/system/post/index.vue
index 8208e81..0e63a56 100644
--- a/src/views/system/post/index.vue
+++ b/src/views/system/post/index.vue
@@ -3,7 +3,7 @@
-
岗位管理
+
{{ $route.meta.title }}
diff --git a/src/views/system/role/index.vue b/src/views/system/role/index.vue
index 5b9b1e4..2b4908e 100644
--- a/src/views/system/role/index.vue
+++ b/src/views/system/role/index.vue
@@ -4,7 +4,7 @@
-
角色管理
+
{{ $route.meta.title }}
diff --git a/src/views/tool/gen/index.vue b/src/views/tool/gen/index.vue
index 54483e7..b1ed93d 100644
--- a/src/views/tool/gen/index.vue
+++ b/src/views/tool/gen/index.vue
@@ -3,7 +3,7 @@
-
代码生成
+
{{ $route.meta.title }}
diff --git a/src/views/tron/tronUsdtSync/index.vue b/src/views/tron/tronUsdtSync/index.vue
new file mode 100644
index 0000000..ec98eb8
--- /dev/null
+++ b/src/views/tron/tronUsdtSync/index.vue
@@ -0,0 +1,311 @@
+
+
+
+
+
+
+
{{ $route.meta.title }}
+
+
+
+
+ 导出
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 搜索
+ 重置
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/正式.zip b/正式.zip
deleted file mode 100644
index c84fbeb..0000000
Binary files a/正式.zip and /dev/null differ
diff --git a/测试.zip b/测试.zip
deleted file mode 100644
index a40bfe2..0000000
Binary files a/测试.zip and /dev/null differ