| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <template>
- <view class="container-body">
- <view class="box storebox x-bc mb20">
- <view class="x-f">
- <image class="logo" :src="storeInfo.logoUrl" mode="aspectFill"></image>
- <view class="storebox-r" @click="goStoreDetail">
- <view class="storename ellipsis2">{{storeInfo.storeName}}</view>
- <!-- <view class="storedesc">24小时营业 销售{{storeInfo.salesCount|| 0}}</view> -->
- </view>
- </view>
- </view>
- <view class="box mb20">
- <view class="storeInfo title">基础信息</view>
- <view class="storeInfo-item x-start">
- <view class="label" style="width: 4rem;">公司全称</view>
- <view class="val">{{storeInfo.fullName|| ''}}</view>
- </view>
- <view class="storeInfo-item x-start">
- <view class="label" style="width: 4rem;">联系电话</view>
- <view class="val">{{storeInfo.sendPhone|| ''}}</view>
- </view>
- <view class="storeInfo-item x-start">
- <view class="label" style="width: 4rem;">详细地址</view>
- <view class="val">{{storeInfo.address|| ''}}{{storeInfo.enterpriseAddress||''}}</view>
- </view>
- <view class="storeInfo-item x-start">
- <view class="label" style="width: 4rem;">经营范围</view>
- <view class="val">{{storeInfo.businessScope|| ''}}</view>
- </view>
- </view>
- <view class="box mb20">
- <view class="storeInfo title">资质信息</view>
- <view class="storeInfo-item mb20">
- <view class="label mb20">营业执照</view>
- <view class="val x-f">
- <u-image
- v-if="storeInfo.businessLicense"
- shape="square"
- lazyLoad
- :src="storeInfo.businessLicense"
- width="600rpx"
- height="auto"
- mode="widthFix"
- radius="6"
- @click="previewImage('businessLicense')"
- ></u-image>
- <view v-else>暂未上传</view>
- </view>
- </view>
- <view class="storeInfo-item mb20" v-if="storeInfo.medicalDevice2">
- <view class="label" mb20>2类器械生产备案</view>
- <view class="val x-f">
- <u-image
- v-if="storeInfo.medicalDevice2"
- shape="square"
- lazyLoad
- :src="storeInfo.medicalDevice2"
- width="600rpx"
- height="auto"
- mode="widthFix"
- radius="6"
- @click="previewImage('medicalDevice2')"
- ></u-image>
- <view v-else>暂未上传</view>
- </view>
- </view>
- <view class="storeInfo-item mb20" v-if="storeInfo.medicalDevice1">
- <view class="label mb20">1类医疗器械备案</view>
- <view class="val x-start">
- <u-image
- v-if="storeInfo.medicalDevice1"
- shape="square"
- lazyLoad
- :src="storeInfo.medicalDevice1"
- width="600rpx"
- height="auto"
- mode="widthFix"
- radius="6"
- @click="previewImage('medicalDevice1')"
- ></u-image>
- <view v-else>暂未上传</view>
- </view>
- </view>
- <view class="storeInfo-item mb20" v-if="storeInfo.medicalDevice3">
- <view class="label mb20">3类器械经营许可证</view>
- <view class="val x-f">
- <u-image
- v-if="storeInfo.medicalDevice3"
- shape="square"
- lazyLoad
- :src="storeInfo.medicalDevice3"
- width="600rpx"
- height="auto"
- mode="widthFix"
- radius="6"
- @click="previewImage('medicalDevice3')"
- ></u-image>
- <view v-else>暂未上传</view>
- </view>
- </view>
- <view class="storeInfo-item mb20" v-if="storeInfo.foodLicense">
- <view class="label mb20">食品经营许可证</view>
- <view class="val x-f">
- <u-image
- v-if="storeInfo.foodLicense"
- shape="square"
- lazyLoad
- :src="storeInfo.foodLicense"
- width="600rpx"
- height="auto"
- mode="widthFix"
- radius="6"
- @click="previewImage('foodLicense')"
- ></u-image>
- <view v-else>暂未上传</view>
- </view>
- </view>
- <view class="storeInfo-item mb20" v-if="storeInfo.medicalLicense">
- <view class="label mb20">医疗机构执业许可证</view>
- <view class="val x-f">
- <u-image
- v-if="storeInfo.medicalLicense"
- shape="square"
- lazyLoad
- :src="storeInfo.medicalLicense"
- width="600rpx"
- height="auto"
- mode="widthFix"
- radius="6"
- @click="previewImage('medicalLicense')"
- ></u-image>
- <view v-else>暂未上传</view>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- import {storeDetail} from '@/api/index.js'
- export default {
- data() {
- return {
- storeId:'',
- storeInfo: {},
- }
- },
- onLoad(option) {
- this.storeId = option.storeId
- this.getStoreInfo()
- },
- methods: {
- getStoreInfo() {
- storeDetail(this.storeId).then(res=>{
- if(res.code==200) {
- this.storeInfo =res.data || {}
- }
- })
- },
- previewImage(type) {
- uni.previewImage({
- current: 0,
- urls: [this.storeInfo[type]]
- });
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .mb20 {
- margin-bottom: 20rpx;
- }
- .box {
- padding: 0 32rpx 26rpx 32rpx;
- background-color: #fff;
- }
- .container-body {
- font-family: PingFang SC, PingFang SC;
- font-weight: 400;
- font-size: 28rpx;
- color: #939599;
- }
- .businessLicense {
- height: 80rpx;
- width: 80rpx;
- border-radius: 8rpx;
- }
- .storeInfo {
- &-item {
- padding: 6rpx 0;
- .label {
- flex-shrink: 0;
- }
- .val {
- color: #222;
- }
- }
- }
- .title {
- font-family: PingFang SC, PingFang SC;
- font-weight: 600;
- font-size: 30rpx;
- color: #222222;
- padding: 24rpx 0;
- }
- .storebox {
- padding: 26rpx 32rpx;
- font-family: PingFang SC, PingFang SC;
- color: #222;
- background-color: #fff;
- .logo {
- width: 150rpx;
- height: 150rpx;
- border-radius: 16rpx 16rpx 16rpx 16rpx;
- margin-right: 26rpx;
- }
- .storename {
- font-weight: 500;
- font-size: 32rpx;
- }
- .storedesc {
- margin-top: 12rpx;
- font-weight: 400;
- font-size: 22rpx;
- }
- .storebox-r {
- flex: 1;
- overflow: hidden;
- }
- }
- </style>
|