first commit

This commit is contained in:
编码猿
2024-09-27 01:32:49 +08:00
commit 28ebe05a64
7399 changed files with 1174529 additions and 0 deletions

View File

@@ -0,0 +1,82 @@
<template>
<!-- 对公信息 页面 -->
<view class="content h-100">
<HeaderTop page_title='对公账户信息'></HeaderTop>
<view class="message d-flex j-sb border-bottom margin-zy20" style="line-height: 90upx;">
<view>单位名称</view>
<view>{{list.company_name}}</view>
</view>
<view class="message d-flex j-sb border-bottom margin-zy20" style="line-height: 90upx;">
<view>纳税人识别码</view>
<view>{{list.company_code}}</view>
</view>
<view class="message d-flex j-sb border-bottom margin-zy20" style="line-height: 90upx;">
<view>地址</view>
<view>{{list.address}}</view>
</view>
<view class="message d-flex j-sb border-bottom margin-zy20" style="line-height: 90upx;">
<view>电话</view>
<view>{{list.tel}}</view>
</view>
<view class="message d-flex j-sb border-bottom margin-zy20" style="line-height: 90upx;">
<view>开户行</view>
<view>{{list.bank_name}}</view>
</view>
<view class="message d-flex j-sb border-bottom margin-zy20" style="line-height: 90upx;">
<view>账号</view>
<view>{{list.account_number}}</view>
</view>
</view>
</template>
<script>
import HeaderTop from '../../components/HeaderTop/HeaderTop.vue'
import X_login from '../../utils/models/x_login.js'
export default {
data() {
return {
list_flag:'',
list:''
}
},
onShow() {
this.messageList()
},
mounted() {
},
comments: {
HeaderTop
},
onLoad(option) {
this.list_flag = option.list_flag
},
methods: {
async messageList(){
let res = await X_login.X_accountInfo()
this.handleError(res, res => {
this.list = res.data;
})
},
//对公打款
gong(){
},
// 返回
goBack(){
public_function.goBack();
}
}
}
</script>
<style lang="scss">
.content {
}
</style>