| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412 |
- <template>
- <div class="user-content">
- <div class="user-name">
- <img src="/images/component/default.png"/>
- <div class="user-info">
- <p v-text="userInfo.data.userName"></p>
- <p v-text="enterpriseInfo.enName"></p>
- </div>
- <span @click="onclick()">{{listName}}<i class="iconfont icon-arrow-down"></i></span>
- <ul class="supdown" v-if="down">
- <li @click="onDown('1')" v-show="!isDevice || !isShop">全部收藏</li>
- <li @click="onDown('-1')" v-show="isDevice || !isShop">店铺关注</li>
- <li @click="onDown('0')" v-show="!isDevice || isShop">器件收藏</li>
- </ul>
- </div>
- <div class="collect-list-type" v-if="focusPage.totalElements > 0 && isShop">
- <p>店铺</p>
- </div>
- <div class="shop-list" v-if="isShop" v-for="item in focusPage.content" @click="goStoreDetail(item.storeInfo.uuid)">
- <h3>{{item.storeName}}</h3>
- <div class="list-item">
- <div class="item-img">
- <img :src="getBackground(item.storeInfo.type)" />
- <img :src="item.storeInfo.logoUrl || '/images/component/default.png'">
- </div>
- <div class="list-item-phone">
- <p>电话:<span>{{item.storeInfo.enterprise.enTel}}</span></p>
- <p>传真:<span>{{item.storeInfo.enterprise.enFax}}</span></p>
- <p>联系商家:<a @click="selectStoreInfo(item, $event)">点击查看</a></p>
- <i class="iconfont icon-shoucang" @click="cancelFocus('store', item, $event)"></i>
- </div>
- </div>
- </div>
- <div class="collect-list-type" v-if="collectSave.totalElements > 0 && isDevice">
- <p>器件</p>
- </div>
- <div class="detail-brand" v-for="(item, index) in collectSave.content" v-if="isDevice" @click="goComponentDetail(item.componentinfo.uuid)">
- <a>
- <div class="brand-item">
- <p>型号:<span>{{item.componentinfo.code}}</span></p>
- <p>品牌:<span>{{item.componentinfo.brand.nameCn}}</span></p>
- <p>产品描述:<span>{{item.componentinfo.kind.nameCn}}</span></p>
- <i class="iconfont icon-shoucang" @click="cancelFocus('product', item, $event)"></i>
- </div>
- </a>
- </div>
- <div class="none-state" v-if="(collectSave.totalElements == 0 && !isShop) || (focusPage.totalElements == 0 && !isDevice) || (collectSave.totalElements == 0 && focusPage.totalElements == 0)">
- <img src="/images/mobile/@2x/empty-collect.png">
- <p v-text="getRemindText()"></p>
- <nuxt-link to="/">返回首页</nuxt-link>
- </div>
- <remind-box :title="collectResult" :timeoutCount="timeoutCount"></remind-box>
- <div class="mobile-modal" v-if="showStoreInfo">
- <div class="mobile-modal-box">
- <div class="mobile-modal-header">联系方式<i @click="showStoreInfo = false" class="icon-guanbi iconfont"></i></div>
- <div class="mobile-modal-content">
- <div v-if="checkInfo(storeInfo.enAddress || storeInfo.address)">商家地址:{{storeInfo.enAddress || storeInfo.address}}</div>
- <!--<div class="content-line link-url">在线咨询</div>-->
- <div v-if="checkInfo(storeInfo.enTel)">致电:<a :href="'tel:' + storeInfo.enTel" target="_blank" class="content-line link-url">{{storeInfo.enTel}}</a></div>
- <div v-if="checkInfo(storeInfo.enEmail)">邮件:<a :href="'mailto:' + storeInfo.enEmail" target="_blank" class="content-line link-url">{{storeInfo.enEmail}}</a></div>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import RemindBox from '~components/mobile/common/RemindBox.vue'
- export default {
- layout: 'mobile',
- data () {
- return {
- userName: '',
- down: false,
- count: '',
- page: '',
- type: '',
- listName: '全部收藏',
- isShop: true,
- isDevice: true,
- collectResult: '取消成功',
- timeoutCount: 0,
- showStoreInfo: false,
- storeInfo: {}
- }
- },
- components: {
- RemindBox
- },
- fetch ({ store }) {
- return Promise.all([
- store.dispatch('product/saveStores', { count: 100, page: 1, type: 'component' }),
- store.dispatch('shop/StoreFocusPage', { count: 100, page: 1 })
- ])
- },
- methods: {
- onclick () {
- this.down = !this.down
- },
- onDown (type) {
- if (type === '-1') {
- this.listName = '店铺关注'
- this.isShop = true
- this.isDevice = false
- this.down = false
- }
- if (type === '0') {
- this.listName = '器件收藏'
- this.isDevice = true
- this.isShop = false
- this.down = false
- }
- if (type === '1') {
- this.listName = '全部收藏'
- this.isDevice = true
- this.isShop = true
- this.down = false
- }
- },
- cancelFocus: function (type, item, event) {
- event.stopPropagation()
- if (type === 'store') {
- this.$http.post('/trade/storeFocus/delete/storeId', [item.storeid])
- .then(response => {
- this.$store.dispatch('shop/StoreFocusPage', { count: 100, page: 1 })
- this.timeoutCount++
- })
- } else {
- // /trade/collection/
- this.$http.delete('/trade/collection/' + item.id)
- .then(response => {
- this.$store.dispatch('product/saveStores', { count: 100, page: 1, type: 'component' })
- this.timeoutCount++
- })
- }
- },
- getBackground: function (type) {
- let url = ''
- if (type === 'AGENCY') {
- url += '/images/mobile/@2x/shop/daili@2x.png'
- } else if (type === 'DISTRIBUTION') {
- url += '/images/mobile/@2x/shop/jingxiao@2x.png'
- } else if (type === 'ORIGINAL_FACTORY') {
- url += '/images/mobile/@2x/shop/yuanchang@2x.png'
- }
- return url
- },
- goStoreDetail: function (uuid) {
- this.$router.push('/mobile/shop/' + uuid)
- },
- goComponentDetail: function (uuid) {
- this.$router.push('/mobile/brand/componentDetail/' + uuid)
- },
- getRemindText: function () {
- if (this.isDevice && !this.isShop) {
- return '抱歉,暂无器件收藏'
- } else if (!this.isDevice && this.isShop) {
- return '抱歉,暂无店铺关注'
- } else {
- return '抱歉,暂无收藏记录'
- }
- },
- selectStoreInfo: function (store, event) {
- event.stopPropagation()
- this.storeInfo = store.storeInfo.enterprise || {}
- this.showStoreInfo = true
- },
- checkInfo: function (str) {
- return str && str.trim() !== ''
- }
- },
- computed: {
- collectSave () {
- return this.$store.state.product.common.collectList.data
- },
- userInfo () {
- return this.$store.state.option.user
- },
- enterpriseInfo () {
- let ens = this.userInfo.data.enterprises
- // if (ens && ens.length) {
- // return ens.find(item => item.current) || {enName: this.userInfo.data.userName + '(个人账户)'}
- // } else {
- // return {enName: this.userInfo.data.userName + '(个人账户)'}
- // }
- if (ens && ens.length) {
- for (let i = 0; i < ens.length; i++) {
- if (ens[i].current) {
- return ens[i]
- }
- }
- }
- return {enName: this.userInfo.data.userName + '(个人账户)'}
- },
- focusPage () {
- return this.$store.state.shop.storeInfo.focusPage.data
- }
- }
- }
- </script>
- <style scoped lang="scss">
- .user-content{
- margin-bottom: .98rem;
- background: #dfe2e4;
- .none-state{
- text-align: center;
- padding:1.5rem 0;
- background: #fff;
- margin-top:.1rem;
- width:100%;
- img{
- margin:0 auto;
- width: 4.08rem;
- height: 2.62rem;
- }
- p {
- font-size: .32rem;
- color: #999;
- margin: 1.19rem 0 0 0;
- }
- a {
- display: block;
- font-size: .28rem;
- color: #fff;
- width: 1.88rem;
- height: .54rem;
- line-height: .54rem;
- background: #418bf6;
- margin: .7rem auto 0;
- border-radius: .05rem;
- }
- }
- .user-name{
- padding:.14rem 0 .2rem .34rem;
- background:#fff;
- width:100%;
- position:relative;
- border-bottom: .1rem solid #dfe2e4;
- .supdown{
- position:absolute;
- top:.8rem;
- right:.3rem;
- z-index:10;
- width:1.7rem;
- background:#616264;
- border-radius:.1rem;
- li{
- font-size: .28rem;
- color:#ffffff;
- height: .32rem;
- line-height: .32rem;
- margin: .4rem 0;
- text-align: center;
- }
- }
- img{
- display: inline-block;
- width:1.25rem;
- height:1.25rem;
- border:.04rem solid #c5dbfc;
- border-radius: .05rem;
- vertical-align: middle;
- }
- .user-info {
- margin-left:.25rem;
- display: inline-block;
- vertical-align: middle;
- p{
- font-size:.3rem;
- margin:0;
- font-weight: bold;
- display: block;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: 3.92rem;
- &:nth-child(2) {
- font-weight: normal;
- margin-top: .3rem;
- }
- }
- }
- span{
- font-size:.28rem;
- color:#53a0f7;
- position: relative;
- bottom: .3rem;
- }
- }
- .shop-list {
- background:#fff;
- border-bottom: .1rem solid #dfe2e4;
- padding-bottom:.28rem;
- h3{
- font-size:.32rem;
- line-height: .8rem;
- margin:0;
- margin-left:.27rem;
- margin-bottom:.14rem;
- }
- .list-item{
- width:6.77rem;
- margin-left:.39rem;
- .item-img{
- width:2.4rem;
- vertical-align: middle;
- display: inline-block;
- img{
- &:nth-child(2) {
- width:2.4rem;
- height:1.69rem;
- border: .04rem solid #eee;
- }
- &:nth-child(1) {
- position:absolute;
- width:.65rem;
- height:.33rem;
- }
- }
- }
- .list-item-phone{
- width:3.95rem;
- padding:.18rem 0;
- position:relative;
- display: inline-block;
- vertical-align: middle;
- margin-left: .26rem;
- p{
- font-size:.28rem;
- line-height: .67rem;
- margin:0;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: 3.2rem;
- }
- i{
- display:block;
- position:absolute;
- top: -.06rem;
- right: -.18rem;
- font-size:.5rem;
- color:#ff7800;
- width: .6rem;
- height: .6rem;
- text-align: center;
- line-height: .6rem;
- }
- }
- }
- &:active {
- background: #e1e1e1;
- }
- }
- .detail-brand{
- background: #fff;
- width:100%;
- min-height:1.5rem;
- padding:.2rem 0;
- border-bottom: .1rem solid #dfe2e4;
- &:nth-child(1) {
- margin-top:.1rem;
- }
- .brand-item{
- width:7rem;
- margin:0 auto;
- border-radius:.1rem;
- background: #fff;
- padding:.2rem;
- position:relative;
- &:active{
- background: #e1e1e1;
- }
- p{
- font-size:.28rem;
- line-height:.4rem;
- color:#333;
- margin:0;
- }
- i{
- display:block;
- position:absolute;
- top:.2rem;
- right:.1rem;
- font-size:.5rem;
- color:#ff7800;
- width: .6rem;
- height: .6rem;
- line-height: .6rem;
- text-align: center;
- }
- }
- div.active{
- background: #d4d;
- }
- }
- .collect-list-type {
- background: #fff;
- border-bottom: .04rem solid #acacac;
- p {
- font-size: .32rem;
- margin: 0 0 0 .13rem;
- width: .92rem;
- text-align: center;
- line-height: .5rem;
- border-bottom: .06rem solid #418bf6;
- }
- }
- }
- </style>
|