|
@@ -0,0 +1,92 @@
|
|
|
+<template>
|
|
|
+ <view class="center">
|
|
|
+ <view class="formData">
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
+ <view class="left">提现金额</view>
|
|
|
+ <view class="flex right">
|
|
|
+ <u--input placeholder="暂无" inputAlign='right' border="none"
|
|
|
+ v-model="dataInfo.amountMoney" readonly>
|
|
|
+ </u--input>
|
|
|
+ <text v-if="dataInfo.amountMoney" style="margin-left: 10rpx;">元</text>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
+ <view class="left">发起时间</view>
|
|
|
+ <view class="flex right">
|
|
|
+ <u--input placeholder="暂无" inputAlign='right' border="none"
|
|
|
+ v-model="dataInfo.createDate" readonly>
|
|
|
+ </u--input>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
+ <view class="left">到账时间</view>
|
|
|
+ <view class="flex right">
|
|
|
+ <u--input placeholder="暂无" inputAlign='right' border="none"
|
|
|
+ v-model="dataInfo.paymentDate" readonly>
|
|
|
+ </u--input>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
+ <view class="left">流水号</view>
|
|
|
+ <view class="flex right">
|
|
|
+ <u--input placeholder="暂无" inputAlign='right' border="none"
|
|
|
+ v-model="dataInfo.serialNumber" readonly>
|
|
|
+ </u--input>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ <view class="flex border-bottom mt20 align-center">
|
|
|
+ <view class="left">到账银行</view>
|
|
|
+ <view class="flex right">
|
|
|
+ <u--input placeholder="暂无" inputAlign='right' border="none"
|
|
|
+ v-model="dataInfo.bankDeposit" readonly>
|
|
|
+ </u--input>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ export default{
|
|
|
+ data(){
|
|
|
+ return{
|
|
|
+ id:"",
|
|
|
+ dataInfo:{}
|
|
|
+ }
|
|
|
+ },
|
|
|
+ onLoad(options) {
|
|
|
+ this.id = options.id
|
|
|
+ this.getList()
|
|
|
+ },
|
|
|
+ onShow() {},
|
|
|
+ methods:{
|
|
|
+ getList(){
|
|
|
+ this.$request.baseRequest('get', '/hyCargoOwnerCapitalInfo/gethyCargoOwnerCapitalInfo', {
|
|
|
+ id: this.id
|
|
|
+ }).then(res => {
|
|
|
+ this.dataInfo = res.data
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
+
|
|
|
+<style scoped lang="scss">
|
|
|
+ .center{
|
|
|
+ padding: 20rpx 0;
|
|
|
+ background: #F5F6FA;
|
|
|
+ height: calc(100vh - 10vh);
|
|
|
+ }
|
|
|
+ .formData{
|
|
|
+ padding: 20rpx 40rpx;
|
|
|
+ background: #ffffff;
|
|
|
+ .left{
|
|
|
+ text-align: left;
|
|
|
+ width: 20%;
|
|
|
+ }
|
|
|
+ .right{
|
|
|
+ text-align: right;
|
|
|
+ width: 80%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+</style>
|