| | |
| | | <text class="fui-text__explain">{{enterpriseInfo.phone}}</text> |
| | | </view> |
| | | </fui-list-cell> |
| | | <fui-collapse-item :isBorder='false' open> |
| | | <view class="fui-item__box"> |
| | | <!-- <image src="/static/images/common/logo.png" class="fui-logo"></image> --> |
| | | <text>公司简介</text> |
| | | </view> |
| | | <template v-slot:content> |
| | | <view class="fui-descr">{{enterpriseInfo.resume}}</view> |
| | | </template> |
| | | </fui-collapse-item> |
| | | <fui-list-cell arrow @click="goApply" :bottomBorder='false' :padding="['20rpx', '32rpx', '20rpx', '32rpx']"> |
| | | <text class="chuany-font30">完善企业资料</text> |
| | | <text class="chuany-font30">{{workerInfo?'修改企业资料':'完善企业资料'}}</text> |
| | | </fui-list-cell> |
| | | </fui-list> |
| | | </view> |
| | |
| | | store.dispatch('getUserInfo') |
| | | } |
| | | let enterpriseInfo = computed(() => store.getters.userInfo.userCompany || {}) |
| | | let workerInfo = computed(() => store.getters.userInfo.userWorker ? true : false) |
| | | // watch(store.getters.userInfo, (newVal, oldVal) => { |
| | | // enterpriseInfo = newVal |
| | | // if (!enterpriseInfo.userCompany) { |
| | |
| | | .address { |
| | | width: 65%; |
| | | } |
| | | |
| | | .fui-item__box { |
| | | font-size: 30rpx; |
| | | width: 100%; |
| | | padding: 26rpx 32rpx; |
| | | box-sizing: border-box; |
| | | display: flex; |
| | | align-items: center; |
| | | } |
| | | |
| | | .fui-logo { |
| | | width: 48rpx; |
| | | height: 48rpx; |
| | | margin-right: 24rpx; |
| | | display: block; |
| | | } |
| | | |
| | | .fui-descr { |
| | | width: 100%; |
| | | padding: 32rpx; |
| | | font-size: 28rpx; |
| | | line-height: 52rpx; |
| | | color: #7F7F7F; |
| | | word-break: break-all; |
| | | box-sizing: border-box; |
| | | } |
| | | </style> |