123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277 |
- <template>
- <view id="store" class="store" :style="[isHome?contentStyle:'']">
- <view class='pictrue'>
- <image :style="[isHome?logoStyleRadius:'']" :src="merchantInfo.avatar" class=""></image>
- </view>
- <view class="text">
- <navigator :url="`/pages/merchant/${type}/index?merId=${merId}`" hover-class="none">
- <view class="flex merchantInfo">
- <text class="name" :style="!isHome?'color: #FFFFFF;':''">{{merchantInfo.name}}</text>
- <text v-if="isShowTypeId" class="iconfont icon-jiantou"></text>
- </view>
- </navigator>
- <view class="score">
- <text v-if="merchantInfo.isSelf"
- class="font-bg-red bt-color bg-color mr10 self_min merType">自营</text>
- <text v-if="isShowTypeId && merchantInfo.typeId"
- class="bt-color mr10 merType color-FAAD14">{{merchantInfo.typeId | merchantTypeFilter}}</text>
- <view class='starsList'>
- <block v-for="(itemn, indexn) in merchantInfo.starLevel" :key="indexn">
- <text class='iconfont icon-pingfen font-color'></text>
- </block>
- <block v-show="Number(merchantInfo.starLevel)<5">
- <text v-for="(itemn, indexn) in noStarLevel" :key="indexn"
- class='iconfont icon-pingfen noCheck'></text>
- </block>
- </view>
- </view>
- </view>
- <button v-if="type!=='home'" hover-class="none" class="merCollect"
- :class="merchantInfoNew.isCollect ? 'care' : ''" @click="followToggle" :style="[isHome || isHomeComb?followColor:'']">
- <text v-if="!merchantInfoNew.isCollect" class="iconfont icon-guanzhu"></text>
- {{ merchantInfoNew.isCollect ? '已关注' : '关注' }}
- </button>
- <!-- :url="`/pages/merchant/${type}/index?merId=${merId}`" -->
- <!-- <navigator v-if="!isShowTypeId" :url="`/pages/goods_cate/index?id=${merId}`" hover-class="none"> -->
- <button @click="getshopp" class="merCollect" hover-class="none">进店</button>
- <!-- </navigator> -->
- </view>
- </template>
- <script>
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2025 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- import {
- getMerCollectAddApi,
- getMerCollectCancelApi
- } from '@/api/merchant.js';
- import {
- followMer
- } from '@/libs/follow.js';
- import {
- mapGetters
- } from "vuex";
- import {
- toLogin
- } from '@/libs/login.js';
- export default {
- computed: {
- ...mapGetters(["merchantClassify", "merchantType", 'isLogin', 'uid']),
- //头像圆角
- logoStyleRadius() {
- if(this.dataConfig) {
- return {
- 'logoStyleRadius': this.dataConfig.logoStyleRadius.val ? this.dataConfig.logoStyleRadius
- .val + 'px' : '0'
- }
- }
- },
- contentStyle() {
- if(this.dataConfig) {
- return {
- margin: '20rpx 24rpx',
- backgroundColor: '#fff',
- }
- }
- },
- // 关注颜色
- followColor() {
- if(this.dataConfig) {
- return {
- border: '1px solid',
- color: this.dataConfig.followColor.color[0].item,
- background: '#fff'
- }
- }
- }
- },
- props: {
- // 店铺diy中设置的数据,店铺首页diy中使用
- dataConfig: {
- type: Object,
- default: () => {}
- },
- merchantInfo: {
- type: Object,
- default: () => {}
- },
- merId: {
- type: Number,
- default: () => 0
- },
- type: {
- type: String,
- default: () => 'detail'
- },
- isShowTypeId: {
- type: Boolean,
- default: () => true
- },
- //是否是首页展示,true是,false不是
- isHome: {
- type: Boolean,
- default: () => false
- },
- //店铺主页是否是头部组件中使用的diy
- isHomeComb: {
- type: Boolean,
- default: () => false
- }
- },
- data() {
- return {
- skeletonShow: true,
- isShow: true,
- avatar: '',
- merchantInfoNew: {
- ...this.merchantInfo
- },
- noStarLevel: 0
- }
- },
- mounted: function() {
- const query = uni.createSelectorQuery().in(this);
- query.select('#store').boundingClientRect(data => {
- //this.storeHeight = data.height;
- this.$emit('merHomeHeight', data.height)
- }).exec();
- this.getnoStarLevel()
- },
- methods: {
- getshopp(){
- uni.reLaunch({
- url:`/pages/goods_cate/index?id=${this.merId}`
- })
- },
- getnoStarLevel: function(nVal, oVal) {
- if (parseInt(this.merchantInfoNew.starLevel) < 5) this.noStarLevel = 5 - parseInt(this.merchantInfoNew
- .starLevel);
- },
- // 设置是否关注
- followToggle: function() {
- if (this.isLogin === false) {
- toLogin();
- } else {
- followMer(this.merchantInfoNew.isCollect, this.merId).then(() => {
- this.$set(this.merchantInfoNew, 'isCollect', !this.merchantInfoNew.isCollect);
- this.$store.commit('MERCHANTJINFO', {...this.merchantInfoNew});
- });
- }
- }
- }
- };
- </script>
- <style lang="scss" scoped>
- .noCheck {
- color: #ddd;
- }
- .care {
- border: 1px solid #FFFFFF;
- background: inherit !important;
- }
- .font-color {
- @include main_color(theme);
- }
- .iconfont {
- //font-size: 24rpx !important;
- }
- .icon-pingweifen {
- color: #ccc;
- }
- .merchantInfo {
- align-items: center;
- margin-bottom: 16rpx;
- }
- .store {
- position: relative;
- // z-index: 5;
- display: flex;
- align-items: center;
- padding: 24rpx;
- //width: 100%;
- // top:12rpx;
- .pictrue {
- width: 80rpx;
- height: 80rpx;
- border-radius: 50%;
- overflow: hidden;
- }
- .easy-loadimage,
- image,
- uni-image {
- width: 100%;
- height: 100%;
- }
- .text {
- flex: 1;
- min-width: 0;
- margin-right: 20rpx;
- margin-left: 12rpx;
- navigator {
- // display: inline-flex;
- align-items: center;
- max-width: 100%;
- .name {
- min-width: 0;
- overflow: hidden;
- white-space: nowrap;
- text-overflow: ellipsis;
- font-weight: bold;
- font-size: 30rpx;
- line-height: 1;
- }
- .iconfont {
- margin-left: 10rpx;
- font-size: 17rpx;
- color: #FFFFFF;
- }
- }
- .score {
- display: flex;
- align-items: center;
- margin-top: 8rpx;
- font-weight: 500;
- font-size: 24rpx;
- line-height: 1;
- .iconfont {
- font-size: 26rpx;
- }
- }
- }
- }
- .self_min {
- min-width: 56rpx;
- text-align: center;
- }
- .starsList{
- padding-bottom: 4rpx;
- }
- .icon-jiantou{
- color: #999 !important;
- }
- </style>
|