123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349 |
- <template>
- <view class="content">
- <view class="minehead">
- <view class="minemsg">
- <view class="flex2 minename">
- <view class="flex5 ">
- <text class="nametit">{{msg.realName?msg.realName:''}}</text>
- <text class="nametit" v-if="msg.name">{{msg.name?msg.name:''}}</text>
- <text class="number" v-if="msg.account">账号 {{msg.account?msg.account:''}}</text>
- </view>
- <view class="logbox">
- <image src="/static/logo.png" mode="aspectFill"></image>
- </view>
- </view>
- <view class="callphone">
- <text style="color: #68625B;">联系电话</text>
- <text v-if="msg.contactsMobile">{{msg.contactsMobile}}</text>
- <text v-if="msg.mobile">{{msg.mobile}}</text>
- </view>
- </view>
- </view>
- <view class="choosebox">
- <view class="chooselist" v-if="state==1">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/contract.png" mode="aspectFill"></image>
- </view>
- <text style="padding-left: 30rpx;">联系人</text>
- </view>
- <text>{{msg.contacts}}</text>
- </view>
- <view class="chooselist" v-if="state==1">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/mobile.png" mode="aspectFill"></image>
- </view>
- <text style="padding-left: 30rpx;">联系电话</text>
- </view>
- <text>{{msg.contactsMobile}}</text>
- </view>
- <view class="chooselist" v-if="state==1">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/account.png" mode="aspectFill"></image>
- </view>
- <text style="padding-left: 30rpx;">账号</text>
- </view>
- <text>{{msg.account}}</text>
- </view>
- <view class="chooselist" @click="checkPwd">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/pwd.png" mode="aspectFill"></image>
- </view>
- <text style="padding-left: 30rpx;">密码</text>
- </view>
- <u-icon name="arrow-right" color="rgba(187,188,190)" bold="true"></u-icon>
- </view>
-
- <view class="chooselist" @click="AcceptBind">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/bind.png" mode="aspectFill"></image>
- </view>
- <text v-if="state==0" style="padding-left: 30rpx;">承兑人绑定管理</text>
- <text v-if="state==1" style="padding-left: 30rpx;">我的承兑人</text>
- </view>
- <u-icon name="arrow-right" color="rgba(187,188,190)" bold="true"></u-icon>
- </view>
-
- <view class="chooselist" @click="personData">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/mine.png" mode="aspectFill"></image>
- </view>
- <text style="padding-left: 30rpx;">个人资料</text>
- </view>
- <u-icon name="arrow-right" color="rgba(187,188,190)" bold="true"></u-icon>
- </view>
-
- <view class="chooselist" v-if="state==1" @click="checkIdentifyPic">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/renzheng.png" mode="aspectFill"></image>
- </view>
- <text style="padding-left: 30rpx;">认证照片</text>
- </view>
- <u-icon name="arrow-right" color="rgba(187,188,190)" bold="true"></u-icon>
- </view>
- <view class="chooselist" v-if="state==1" @click="checkProxy">
- <view class="flex1">
- <view class="iconbox">
- <image src="../../static/icon/shouquan.png" mode="aspectFill"></image>
- </view>
- <text style="padding-left: 30rpx;">授权委托书</text>
- </view>
- <u-icon name="arrow-right" color="rgba(187,188,190)" bold="true"></u-icon>
- </view>
- </view>
- <view class="logininbtn" @click="loginOut">
- <text>退出登录</text>
- </view>
- <view style="padding-bottom: 220rpx;"></view>
- <tabar checked="my"></tabar>
- </view>
- </template>
- <script>
- let that
- import tabar from "@/componet/tabbar/tabbar.vue"
- export default {
- components: {
- tabar
- },
- data() {
- return {
- keywords: '',
- wagesheight: '',
- state: '',
- msg:''
- }
- },
- onLoad() {
- this.state = this.$store.state.admin
- that = this
- uni.getSystemInfo({
- success: function(res) {
- console.log(res.safeArea.bottom); // print 610
- let bottom = res.safeArea.bottom
- let height = res.safeArea.height
- let cacl = bottom - height
- that.wagesheight = cacl
- console.log(that.wagesheight); // print 292
- }
- })
- this.init()
- },
- onshow(){
- this.init()
- },
- methods: {
- init(){
- uni.showLoading()
- if(this.state==0){
- uni.$u.http.get('/api/Account',{
- custom: {
- auth: true
- }
- }).then((res) => {
- uni.hideLoading()
- this.msg=res
-
- }).catch((err) => {
- uni.hideLoading()
- console.log(err)
- })
- }else if(this.state==1){
- uni.$u.http.get('/api/Supplier',{
- custom: {
- auth: true
- }
- }).then((res) => {
- uni.hideLoading()
- this.msg=res
-
- }).catch((err) => {
- uni.hideLoading()
- console.log(err)
- })
- }
- },
- checkIdentifyPic(){
- uni.navigateTo({
- url:"/pages/alldeatil/identifypic?pic="+JSON.stringify(this.msg.identifyPicList)
- })
- },
- checkProxy(){
- uni.navigateTo({
- url:"/pages/alldeatil/proxypic?pic="+JSON.stringify(this.msg.proxyFileList)
- })
- },
- loginOut() {
- uni.showModal({
- title: '是否确认退出?',
- success: function(res) {
- if (res.confirm) {
- uni.setStorageSync('token', '')
- uni.reLaunch({
- url: "/pages/login/login"
- })
- } else if (res.cancel) {
-
- }
- }
- })
-
- },
- checkPwd() {
- uni.navigateTo({
- url: "/pages/bsinessadmin/setpassword?account="+this.msg.account
- })
- },
- //承兑人绑定
- AcceptBind(){
- if(this.state==0){
- uni.navigateTo({
- url: '/pages/alldeatil/acceptorbind'
- })
- }else{
- uni.navigateTo({
- url: '/pages/alldeatil/acceptorbind?id='+this.msg.id
- })
- }
- },
- //跳转到个人资料
- personData(){
- if(this.state==0){
- uni.navigateTo({
- url: '/pages/bsinessadmin/persondata'
- })
- }else{
- uni.navigateTo({
- url: '/pages/bsinessadmin/persondata?id='+this.msg.id
- })
- }
- }
- }
- }
- </script>
- <style lang="scss">
- page {
- background-color: #F6F6F6 !important;
- }
- .minehead {
- width: 100%;
- height: 367rpx;
- position: relative;
- background-color: #FAECD3;
- // background-image: url("@/static/img/minebg.png");
- .minemsg {
- position: absolute;
- left: 0;
- right: 0;
- bottom: 0;
- margin: 0 auto;
- background-color: #fff;
- bottom: -176rpx;
- width: 690rpx;
- height: 370rpx;
- border-radius: 20rpx;
- .logbox {
- width: 174rpx;
- height: 123rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- .minename {
- padding: 0 45rpx;
- padding-top: 74rpx;
- }
- .nametit {
- font-size: 48rpx;
- font-weight: 600;
- }
- .number {
- font-size: 30rpx;
- color: #68625B;
- padding-top: 30rpx;
- }
- .callphone {
- width: 622rpx;
- height: 80rpx;
- background: url("@/static/img/mynumbg.png") no-repeat;
- background-size: 100%;
- text-align: center;
- line-height: 80rpx;
- font-size: 30rpx;
- margin: 0 auto;
- margin-top: 50rpx;
- padding: 0 30rpx;
- box-sizing: border-box;
- display: flex;
- justify-content: space-between;
- }
- }
- }
- .choosebox {
- margin: 0 auto;
- margin-top: 215rpx;
- .chooselist {
- margin: 0 auto;
- margin-bottom: 20rpx;
- width: 690rpx;
- height: 100rpx;
- background-color: #fff;
- border-radius: 20rpx;
- display: flex;
- justify-content: space-between;
- align-items: center;
- padding: 0 30rpx;
- box-sizing: border-box;
- .iconbox {
- width: 42rpx;
- height: 42rpx;
- image {
- width: 100%;
- height: 100%;
- }
- }
- }
- }
- .logininbtn {
- margin: 0 auto;
- // position: fixed;
- // left: 0;
- // right: 0;
- // bottom: 180rpx;
- margin-top:100rpx;
- // : 220rpx;
- width: 690rpx;
- border-radius: 20rpx;
- background: linear-gradient(to right,#FFCC80,#CC984A);
- box-shadow: 0 10rpx 20rpx 1rpx rgba(179, 116, 5, 0.2);
- height: 100rpx;
- text-align: center;
- color:#fff;
- line-height: 100rpx;
- }
- </style>
|