|
@@ -6,13 +6,67 @@
|
|
top="2vh"
|
|
top="2vh"
|
|
append-to-body
|
|
append-to-body
|
|
@close="handleCancel">
|
|
@close="handleCancel">
|
|
- <div class="mobile">
|
|
|
|
- <table class="">
|
|
|
|
|
|
+ <div class="mobile" v-loading="loading">
|
|
|
|
+ <table class="showTables">
|
|
<tr>
|
|
<tr>
|
|
- <td class="title"></td>
|
|
|
|
- <td class="content"></td>
|
|
|
|
- <td class="title"></td>
|
|
|
|
- <td class="content"></td>
|
|
|
|
|
|
+ <td class="title">账户余额:</td>
|
|
|
|
+ <td class="content">{{datas.accountMoney}}</td>
|
|
|
|
+ <td class="title">渠道流水号:</td>
|
|
|
|
+ <td class="content">{{datas.chaSerialNo}}</td>
|
|
|
|
+ <td class="title">币种:</td>
|
|
|
|
+ <td class="content">{{datas.currency}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">手续费支付方式:</td>
|
|
|
|
+ <td class="content">{{datas.handFeeType}}</td>
|
|
|
|
+ <td class="title">手续费:</td>
|
|
|
|
+ <td class="content">{{datas.handFee}}</td>
|
|
|
|
+ <td class="title">付款账号:</td>
|
|
|
|
+ <td class="content">{{datas.payAccount}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">付款人名称:</td>
|
|
|
|
+ <td class="content">{{datas.payName}}</td>
|
|
|
|
+ <td class="title">交易应答码:</td>
|
|
|
|
+ <td class="content">{{datas.payResponseCode}}</td>
|
|
|
|
+ <td class="title">交易序号:</td>
|
|
|
|
+ <td class="content">{{datas.paySerial}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">付款金额:</td>
|
|
|
|
+ <td class="content">{{datas.payAmount}}</td>
|
|
|
|
+ <td class="title">付款银行名称:</td>
|
|
|
|
+ <td class="content">{{datas.payBankName}}</td>
|
|
|
|
+ <td class="title">交易日期:</td>
|
|
|
|
+ <td class="content">{{datas.payDate}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">交易状态:</td>
|
|
|
|
+ <td class="content">{{datas.payStatus}}</td>
|
|
|
|
+ <td class="title">邮电费:</td>
|
|
|
|
+ <td class="content">{{datas.postFee}}</td>
|
|
|
|
+ <td class="title">交易类型:</td>
|
|
|
|
+ <td class="content">{{datas.transactionType}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">加急标志:</td>
|
|
|
|
+ <td class="content" colspan="6">{{datas.urgentSign}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">用途:</td>
|
|
|
|
+ <td class="content" colspan="6">{{datas.useWay}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">付款人备注:</td>
|
|
|
|
+ <td class="content" colspan="6">{{datas.payMark}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">错误消息:</td>
|
|
|
|
+ <td class="content" colspan="6">{{datas.errorMsg}}</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="title">失败原因:</td>
|
|
|
|
+ <td class="content" colspan="6">{{datas.failReson}}</td>
|
|
</tr>
|
|
</tr>
|
|
</table>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
@@ -23,6 +77,7 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script>
|
|
<script>
|
|
|
|
+import { bankDetailRequest } from "@/api/bankCheck/bank";
|
|
export default {
|
|
export default {
|
|
name: 'addMobiel',
|
|
name: 'addMobiel',
|
|
props: {
|
|
props: {
|
|
@@ -64,17 +119,31 @@ export default {
|
|
modalAction: this.action,
|
|
modalAction: this.action,
|
|
modalSelectRow: this.selectRow,
|
|
modalSelectRow: this.selectRow,
|
|
formLabelWidth: '1024px',
|
|
formLabelWidth: '1024px',
|
|
|
|
+ loading:false,
|
|
//窗口权限
|
|
//窗口权限
|
|
limit: {
|
|
limit: {
|
|
isRead: false, //是否只读
|
|
isRead: false, //是否只读
|
|
isAdd: false //是否可写
|
|
isAdd: false //是否可写
|
|
},
|
|
},
|
|
|
|
+ datas:null
|
|
};
|
|
};
|
|
},
|
|
},
|
|
created() {
|
|
created() {
|
|
-
|
|
|
|
|
|
+ this.getDetail(this.modalSelectRow.guid)
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
|
|
+ getDetail(id){
|
|
|
|
+ this.loading = true;
|
|
|
|
+ let params = {
|
|
|
|
+ guid:id
|
|
|
|
+ }
|
|
|
|
+ bankDetailRequest(params).then(res => {
|
|
|
|
+ if (res.retHead.errCode === 0) {
|
|
|
|
+ this.datas = res.retBody
|
|
|
|
+ this.loading = false;
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ },
|
|
//窗口关闭
|
|
//窗口关闭
|
|
handleCancel() {
|
|
handleCancel() {
|
|
this.$emit('closemodal', false);
|
|
this.$emit('closemodal', false);
|
|
@@ -84,4 +153,18 @@ export default {
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+ .showTables{
|
|
|
|
+ width:100%;
|
|
|
|
+ text-align:center;
|
|
|
|
+ border-collapse: collapse;
|
|
|
|
+ tr,td{
|
|
|
|
+ height:42px;
|
|
|
|
+ border:1px solid #EFEFEF;
|
|
|
|
+ }
|
|
|
|
+ .title{
|
|
|
|
+ background:#FAFAFA;
|
|
|
|
+ color:#666;
|
|
|
|
+ font-weight:bold;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
</style>
|
|
</style>
|