| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- <template>
- <view>
- <swiper class="screen-swiper square-dot " :indicator-dots="true" :circular="true"
- :autoplay="true" interval="5000" duration="500">
- <swiper-item v-for="(item,index) in bannerList" :key="index">
- <image :src="item.banners" mode="aspectFill" ></image>
- </swiper-item>
- </swiper>
-
- <view class="card">
- <view class="flex flex-direction justify-center padding-left-20">
- <text class="text-bold text-lg" style="padding-bottom: 12rpx;">{{detail.agencyName}}</text>
- </view>
- </view>
- <view class="bg-white text-black">
- <text class="text-lg text-bold " style="padding:0 30rpx;">其他信息</text>
- <view class="cu-list menu text-df padding-top-20">
- <view class="cu-item">
- <view class="content">
- <text class="cuIcon-profile" style="font-size: 32rpx;"></text>
- <text class="">法定代表人</text>
- </view>
- <view class="action">
- <text>{{detail.personName}}</text>
- </view>
- </view>
-
- <view class="cu-item">
- <view class="content">
- <text class="cuIcon-mobile" style="font-size: 32rpx;"></text>
- <text class="">联系方式</text>
- </view>
- <view class="action">
- <text>{{detail.personPhone}}</text>
- </view>
- </view>
- <view class="cu-item flex">
- <view class="content" style="flex-basis: 45%;">
- <text class="cuIcon-location" style="font-size: 32rpx;"></text>
- <text class="">公司地址</text>
- </view>
- <view class="action">
- <text>{{detail.address}}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- id:this.$cache.get('agency'),
- detail:{},
- bannerList: [
- {
- 'image': "http://139.9.103.171:1888/miniofile/xlyq/banner01.jpg"
- },
- ],
- }
- },
- onLoad() {
- this.fetchDeatil()
- this.fetchBanner()
- },
- methods: {
- fetchBanner(){
- let params={
- tenantId:this.$cache.get('agencyTenantId')
- }
- this.$api.banner.page(params).then(res=>{
- if (!this.$isEmpty(res.data.records)) {
- this.bannerList=res.data.records
- }
- })
- },
- fetchDeatil(){
- this.$api.agency.page({id:this.id}).then(res=>{
- this.detail=res.data[0]
- })
- },
- }
- }
- </script>
- <style lang="scss">
- page{
- background-color: #FFFFFF;
- }
-
- .card{
- padding: 20rpx;
- background-color: #FFFFFF;
- margin: 10rpx;
- border-radius: 10rpx;
- display: flex;
- box-shadow: 0 10rpx rgba(248, 248, 248,.9) , -10rpx 0rpx rgba(248, 248, 248,.9) ,10rpx 0rpx rgba(248, 248, 248,.9);
- image{
- border: 1rpx solid #f1f1f1;
- width:100rpx;
- height: 100rpx;
- border-radius: 50%;
- }
- }
-
- .desc{
- background-color: #FFFFFF;
- padding:40rpx 30rpx;
- .sub-title{
- padding-top: 40rpx;
- font-size: 28rpx;
- line-height: 50rpx;
- }
- }
-
- .history{
- background-color: #FFFFFF;
- margin-top: 20rpx;
- padding: 40rpx 20rpx 20rpx 50rpx;
- }
-
- .top{
- padding-bottom: 30rpx;
- display: flex;
- justify-content: space-between;
- }
-
- .address{
- margin-top: 20rpx;
- background-color: #FFFFFF;
- padding: 30rpx;
-
-
- .item{
- padding-top: 40rpx;
- .sub-address{
- padding-left: 70rpx;font-size: 26rpx;color: #bababa;
- }
- }
- }
-
-
- .u-node {
- width: 44rpx;
- height: 44rpx;
- border-radius: 100rpx;
- display: flex;
- justify-content: center;
- align-items: center;
- background: #d0d0d0;
- }
-
- .u-order-title {
- color: #333333;
- font-weight: bold;
- font-size: 32rpx;
- }
-
- .u-order-desc {
- padding-top: 20rpx;
- color: #8d8d8d;
- font-size: 26rpx;
- line-height: 48rpx;
- margin-bottom: 6rpx;
- }
-
- .u-order-time {
- color: rgb(200, 200, 200);
- font-size: 26rpx;
- }
- </style>
|