| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313 |
- <template>
- <div>
- <ul class="store-list" v-if="storeData.content && storeData.content.length > 0">
- <li v-for="(store, index) in storeData.content">
- <div class="store-content-left">
- <a :href="'/store/' + store.uuid" target="_blank">
- <img :src="store.logoUrl?store.logoUrl:'/images/all/default.png'" class="storeImg" alt="">
- </a>
- <div class="store-detail">
- <a :href="'/store/' + store.uuid" target="_blank" :title="store.storeName">{{store.storeName}}</a>
- <span style="position: relative;" class="call-seller">
- <img src="static/img/common/songguo.png?_v=1503050008623">
- <a name="21059" href="javascript:void(0)" class="contact_btn">联系卖家</a>
- </span>
- <span class="main-product">
- <a :href="'/store/' + store.uuid" target="_blank" v-text="'店铺简介:' + store.description"></a>
- </span>
- </div>
- <div class="component-count">
- <span style="margin-right: 30px">销量:<span v-text="salesData[index]"></span></span>
- <span>库存量:<span v-text="store.totalReserve"></span></span>
- </div>
- <div class="btn-content">
- <a class="focus-store store-btn" @click="focusStore(store, index)" v-text="focusData[index] === 'true'?'已关注':'关注店铺'"></a>
- <a :href="'/store/' + store.uuid" target="_blank" class="enter-store store-btn">进入店铺</a>
- </div>
- </div>
- <ul class="store-component-list" v-if="componentData">
- <li v-for="(item, index2) in componentData[index].content" @click="goStore(index, index2)">
- <!--<a :href="`/product/component/${item.uuid}`" style="display: block"><img :src="item.img?item.img:'/images/all/default.png'" alt=""></a>
- <div class="describe-list">
- <a style="margin-bottom: 8px" :href="`/product/component/${item.uuid}`" class="store-component-code" v-text="item.code" :title="item.code"></a>
- <a style="margin-bottom: 8px" :href="`/product/brand/${item.branduuid}`" v-text="item.brandNameEn"></a>
- <a :href="`/product/kind/${item.kindUuid}`" v-text="item.kindNameCn"></a>
- </div>-->
- <a style="display: block"><img :src="item.img?item.img:'/images/all/default.png'" alt=""></a>
- <div class="describe-list">
- <a class="store-component-code" v-text="item.code" :title="item.code"></a>
- <a v-text="item.brandNameEn" :title="item.brandNameEn"></a>
- <a v-text="item.kindNameCn" :title="item.kindNameCn"></a>
- </div>
- </li>
- </ul>
- </li>
- </ul>
- <page :total="storeData.totalElements" :page-size="pageSize"
- :current="nowPage" v-on:childEvent="listenPage"></page>
- <el-dialog
- :visible.sync="dialogVisible"
- size="tiny"
- >
- <h3 class="header-text">关注成功!</h3>
- <div class="focus modal-body">
- <button type="button" @click="dialogVisible = false" class="btn" style="margin-left:25px;">关 闭</button>
- <button type="button" @click="dialogVisible = false" class="focus-btn btn btn btn-info" style="margin-left:35px;">
- <a href="/user#/storeFocus" target="_blank">查看我的店铺关注</a>
- </button>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import Page from '~components/common/page/pageComponent.vue'
- export default {
- data () {
- return {
- dialogVisible: false,
- pageSize: 8,
- nowPage: 1
- }
- },
- components: {
- Page
- },
- computed: {
- user () {
- return this.$store.state.option.user
- },
- storeDetail () {
- return this.$store.state.searchStore.searchStoreDetail.detail.data
- },
- storeData () {
- return this.storeDetail[0].stores
- },
- focusData () {
- return this.storeDetail[1].isFocus
- },
- componentData () {
- return this.storeDetail[1].image
- },
- salesData () {
- return this.storeDetail[1].sales
- }
- },
- methods: {
- focusStore: function (store, index) {
- if (!this.user.logged) {
- this.$http.get('/login/page').then(response => {
- if (response.data) {
- this.$router.push('/auth/login')
- }
- })
- } else {
- if (this.focusData[index] === 'true') {
- // 已关注
- this.$message.error('店铺已关注,不能重复关注')
- } else {
- // 未关注
- this.$http.post('/trade/storeFocus/save', {storeName: store.storeName, storeid: store.id})
- .then(response => {
- if (response.data === 'success') {
- // 关注成功
- this.dialogVisible = true
- this.focusData[index] = 'true'
- } else {
- // 关注失败
- this.$message.error('关注失败')
- }
- })
- }
- }
- },
- listenPage: function (page) {
- this.$emit('pageAction', page)
- },
- goStore: function (index, compIndex) {
- window.open('/product/component/' + this.componentData[index].content[compIndex].uuid)
- }
- }
- }
- </script>
- <style scoped>
- .store-list {
- border-right: 1px solid rgb( 231, 231, 231 );
- border-left: 1px solid rgb( 231, 231, 231 );
- }
- .store-list >li{
- border-bottom: 1px solid rgb( 231, 231, 231 );
- padding: 20px 0;
- }
- .store-content-left {
- display: inline-block;
- margin-right: 27px;
- }
- .store-content-left .component-count{
- display: block;
- margin-left: 10px;
- margin-top: 20px;
- }
- .store-content-left >div {
- display: inline-block;
- }
- .store-content-left >a {
- color: black;
- float: left;
- width: 100px;
- height: 100px;
- line-height: 100px;
- display: inline-block;
- border: 1px solid rgb( 231, 231, 231 );
- overflow: hidden;
- margin-left: 10px;
- }
- .store-content-left >a >img.storeImg {
- max-width: 100px;
- max-height: 100px;
- }
- .btn-content {
- display: block!important;
- margin-top: 20px;
- }
- .btn-content >span {
- display: block;
- }
- .btn-content >span:hover {
- cursor: pointer;
- }
- .store-detail {
- margin-left: 20px;
- }
- .store-detail >a {
- font-size: 14px;
- font-weight: 700;
- color: black;
- display: block;
- overflow: hidden;
- width: 175px;
- white-space: nowrap;
- text-overflow: ellipsis;
- }
- .store-detail >span{
- display: block;
- font-size: 12px;
- width: 190px;
- }
- .store-detail .call-seller {
- margin-top: 14px;
- }
- .store-detail .call-seller .contact_btn {
- width: 62px;
- height: 18px;
- line-height: 18px;
- background: #ef7f03;
- display: inline-block;
- text-align: center;
- color: #fff;
- font-size: 12px;
- border-radius: 5px;
- margin-left: 5px;
- }
- .store-detail .main-product {
- margin-top: 12px;
- }
- .store-detail .main-product a:hover {
- cursor: pointer;
- color: #5078cb!important;
- }
- .store-detail .main-product a {
- color: #333;
- width: 126px;
- display: inline-block;
- float: left;
- overflow: hidden;
- word-break: break-all;
- height: 35px;
- line-height: 16px;
- text-overflow: ellipsis;
- /*-webkit-line-clamp: 2;
- -moz-line-clamp: 2;
- -o-line-clamp: 2;
- -ms-line-clamp: 2;
- -webkit-box-orient: vertical;
- -moz-box-orient: vertical;
- -o-box-orient: vertical;
- -ms-box-orient: vertical;*/
- }
- .btn-content .store-btn {
- padding: 4px 14px;
- color: white;
- display: inline-block;
- }
- .btn-content .focus-store {
- margin-right: 30px;
- margin-left: 10px;
- background: #5078cb;
- border: 1px solid #5078cb;
- }
- .btn-content .enter-store {
- background: #ff8522;
- border: 1px solid #ff8522;
- }
- .store-component-list {
- display: inline-block;
- margin-right: 6px;
- width: 834px;
- float: right;
- }
- .store-component-list >li {
- display: inline-block;
- text-align: center;
- border: 1px solid rgb( 231, 231, 231 );
- margin-right: 14px;
- width: 152px;
- height: 178px;
- }
- .store-component-list >li:hover {
- cursor: pointer;
- color: #fff!important;
- border: 1px solid #5078cb;
- }
- .store-component-list >li:hover .describe-list {
- background: #5078cb;
- }
- .store-component-list >li:hover div a {
- color: #fff;
- }
- .store-component-list >li img {
- width: 149px;
- height:114px;
- }
- .store-component-list >li .describe-list {
- padding: 2px 10px;
- background: #dee0e5;
- height: 64px;
- }
- .store-component-list >li div a {
- display: block;
- font-size: 14px;
- text-align: left;
- color: #333;
- overflow: hidden;
- text-overflow: ellipsis;
- line-height: 20px;
- white-space: nowrap;
- }
- /* .store-component-list >li a:hover {
- color: #f39801;
- }*/
- /*.store-component-list .store-component-code {
- }*/
- .header-text {
- text-align: center;
- font-size: 20px;
- color: #008B00;
- margin-top: 0;
- }
- .el-dialog__body{
- padding: 20px !important;
- }
- .focus button.focus-btn a{
- color: #fff;
- }
- </style>
|