| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386 |
- <template>
- <div class="store-detail mobile-content">
- <div class="store-logo">
- <div class="store-logo-box">
- <img :src="store.logoUrl || '/images/component/default.png'"/>
- <i class="iconfont icon-shoucang" :style="isFocus === 'true'?'color:#ff7800':'color: #ddd'" @click="collectStore"></i>
- </div>
- </div>
- <div class="store-switch-item">
- <span :class="activeType=='detail'?'mobile-switch-btn active':'mobile-switch-btn'" @click="activeType='detail'">介绍</span>
- <span :class="activeType=='product'?'mobile-switch-btn active':'mobile-switch-btn'" @click="activeType='product'">产品</span>
- </div>
- <div class="store-description" v-if="activeType=='detail'">
- <p>
- {{store.description}}
- </p>
- </div>
- <div class="product-store" v-if="activeType == 'product'">
- <table v-if="commodities.content&&commodities.content.length > 0">
- <thead>
- <tr>
- <th>型号/品牌</th>
- <th>包装</th>
- <th>数量</th>
- <th>单价</th>
- <th>交期(天)</th>
- </tr>
- </thead>
- <tbody>
- <tr v-for="commodity in searchLists" @click="goProductDetail(commodity.uuid)">
- <td class="store-name">
- <div>{{commodity.code}}</div>
- <div>{{commodity.brandNameCn}}</div>
- </td>
- <td>
- <div v-if="!commodity.packaging && !commodity.breakUp && !commodity.produceDate">-</div>
- <div>{{commodity.packaging}}</div>
- <div>{{commodity.breakUp?'可拆卖':'不可拆卖'}}</div>
- <div>{{commodity.produceDate}}</div>
- </td>
- <td>
- <div v-if="!commodity.prices || commodity.prices.length == 0">-</div>
- <div v-for="price in commodity.prices">{{price.start}}+</div>
- </td>
- <td>
- <div v-if="!commodity.prices || commodity.prices.length == 0">
- <span>—</span>
- </div>
- <div v-for="price in commodity.prices" class="price-level">
- <span v-if="commodity.currencyName.indexOf('RMB')!==-1">¥{{price.rMBPrice | currency}}</span>
- <span v-if="commodity.currencyName.indexOf('USD')!==-1">${{price.uSDPrice | currency}}</span>
- </div>
- </td>
- <td>
- <div v-if="commodity.b2cMinDelivery">
- <span>{{commodity.b2cMinDelivery}}</span>
- <span v-if="commodity.b2cMaxDelivery && commodity.b2cMaxDelivery !== commodity.b2cMinDelivery">-</span>
- <span v-if="commodity.b2cMaxDelivery && commodity.b2cMaxDelivery !== commodity.b2cMinDelivery">{{commodity.b2cMaxDelivery}}</span>
- </div>
- <div v-if="commodity.minBuyQty"><span class="order-tag">订</span>{{commodity.minBuyQty}}起订</div>
- <div v-if="!commodity.b2cMinDelivery">
- <span>—</span>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- <div v-if="!commodities.content || commodities.content.length == 0" class="no-product">
- <img src="/images/mobile/@2x/car@2x.png" alt="">
- <div>抱歉,暂无产品信息</div>
- </div>
- </div>
- <remind-box :title="collectResult" :timeoutCount="timeoutCount"></remind-box>
- <loading v-show="isSearchingMore"></loading>
- <login-box @onLoginBoxClose="showLoginBox = false" v-if="showLoginBox"></login-box>
- </div>
- </template>
- <script>
- import {RemindBox, Loading, LoginBox} from '~components/mobile/common'
- export default {
- data () {
- return {
- activeType: 'detail',
- collectResult: '收藏成功',
- timeoutCount: 0,
- isSearchingMore: false,
- searchLists: [],
- page: 1,
- showLoginBox: false
- }
- },
- components: {
- RemindBox,
- Loading,
- LoginBox
- },
- mounted: function () {
- let _this = this
- _this.$nextTick(function () {
- window.addEventListener('scroll', function () {
- _this.scroll()
- }, false)
- })
- },
- filters: {
- currency: function (num) {
- if (typeof num === 'number') {
- if (num <= 0.000001) {
- num = 0.000001
- } else {
- if (num.toString().indexOf('.') === -1) {
- num += '.00'
- } else {
- let inputStr = num.toString()
- let arr = inputStr.split('.')
- let floatNum = arr[1]
- if (floatNum.length > 6) {
- num = inputStr.substring(0, arr[0].length + 7)
- if (Number(floatNum.charAt(6)) > 4) {
- num = (Number(num) * 1000000 + 1) / 1000000
- }
- } else if (floatNum.length === 1) {
- num = num + '0'
- }
- }
- }
- }
- return num
- }
- },
- computed: {
- store () {
- return this.$store.state.shop.storeInfo.store.data
- },
- commodities () {
- let list = this.$store.state.shop.storeInfo.storeCommodity.data
- this.searchLists = this.searchLists.concat(list.content)
- this.isSearchingMore = false
- return list
- },
- allPage () {
- return this.commodities.totalPages
- },
- isFocus () {
- return this.$store.state.shop.storeInfo.focusList.data
- },
- user () {
- return this.$store.state.option.user
- }
- },
- methods: {
- scroll: function () {
- let scrolled = document.documentElement.scrollTop || window.pageYOffset || document.body.scrollTop
- if (Math.ceil(scrolled + window.screen.availHeight) >= document.body.scrollHeight && !this.isSearchingMore && this.page < this.allPage && this.activeType === 'product') {
- this.getMoreCom()
- }
- },
- getMoreCom: function () {
- if (!this.isSearchingMore) {
- this.page++
- this.isSearchingMore = true
- console.log(this.page)
- this.pageCommodity({ page: this.page, count: 6 })
- }
- },
- async pageCommodity (pageParams, kindId, keyword) {
- let params = { storeid: this.$route.params.uuid, origin: 'store', kindUuid: kindId, code: keyword }
- params.page = pageParams.page
- params.count = pageParams.count
- try {
- let { data } = await this.$http.get('/api/commodity/commodities', { params })
- this.$store.commit('shop/storeInfo/GET_STORE_COMMODITY_SUCCESS', data)
- } catch (err) {
- this.$store.commit('shop/storeInfo/GET_STORE_COMMODITY_FAILURE', err)
- }
- },
- goProductDetail: function (uuid) {
- this.$router.push('/mobile/brand/componentDetail/' + uuid)
- },
- collectStore: function () {
- if (this.user.logged) {
- if (this.isFocus === 'false') {
- this.$store.dispatch('shop/StoreFocus', {storeName: this.store.storeName, storeid: this.store.id})
- .then(response => {
- this.$store.dispatch('shop/StoreFocusList', {id: this.store.id})
- this.collectResult = '收藏成功'
- this.timeoutCount++
- })
- } else if (this.isFocus === 'true') {
- this.$http.post('/trade/storeFocus/delete/storeId', [this.store.id])
- .then(response => {
- this.$store.dispatch('shop/StoreFocusList', {id: this.store.id})
- this.collectResult = '取消成功'
- this.timeoutCount++
- })
- }
- } else {
- this.showLoginBox = true
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .store-detail {
- margin: 0 auto;
- margin-bottom: 1.2rem;
- text-align: center;
- background: #f7f7f7;
- height: 100%;
- .store-logo {
- height: 3.17rem;
- width: 6.96rem;
- display: inline-block;
- margin: .2rem auto;
- line-height: 2.13rem;
- background: #fff;
- text-align: center;
- border-radius: .1rem;
- background: url('/images/mobile/@2x/brand-bg.png') no-repeat;
- background-size: cover;
- .store-logo-box {
- border: .04rem solid #c7e5fd;
- border-radius: .1rem;
- height: 2.21rem;
- width: 3.73rem;
- margin: .5rem auto 0;
- background: #fff;
- position: relative;
- img {
- max-height: 2.1rem;
- max-width: 3.6rem;
- }
- >i {
- position: absolute;
- font-size: .4rem;
- background: #fff;
- width: .6rem;
- height: .6rem;
- line-height: .6rem;
- border-radius: 100%;
- box-shadow: 0 0 .05rem #aaa;
- right: -1.44rem;
- top: .75rem;
- text-align: center;
- }
- }
- }
- .store-switch-item {
- text-align: center;
- background: #fff;
- .mobile-switch-btn {
- background: #fff;
- color: #666;
- display: inline-block;
- height: .64rem;
- font-size: .34rem;
- line-height: .64rem;
- width: 1.4rem;
- &:first-child {
- margin-right: 1.78rem;
- }
- &.active {
- color: #fc5708;
- border-bottom: .04rem solid #fc5708;
- }
- }
- }
- .store-description {
- background: #f7f7f7;
- width: 100%;
- p {
- background: #fff;
- margin: .2rem auto 0;
- padding: .4rem .34rem;
- width: 100%;
- font-size: .3rem;
- color: #666;
- text-align: left;
- height: 95%;
- box-shadow: 0 .03rem .01rem 0 #cdcbcb96;
- line-height: .5rem;
- }
- }
- .product-store {
- margin: .2rem 0 0 0;
- table {
- width: 100%;
- font-size: .28rem;
- thead {
- background: #d5e5fb;
- tr {
- th {
- font-weight: bold;
- text-align: center;
- height: .78rem;
- line-height: .78rem;
- }
- }
- }
- tbody {
- tr {
- background: #fff;
- border-bottom: 0.2rem solid #f7f7f7;
- td {
- padding: .2rem .1rem;
- text-align: left;
- div {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- margin-bottom: .2rem;
- max-width: 1.58rem;
- &:last-child {
- margin-bottom: 0;
- }
- }
- .price-level:last-child {
- color: #fc5708;
- }
- .order-tag {
- display: inline-block;
- font-size: .18rem;
- color: #fff;
- font-weight: bold;
- background: #ee1717;
- height: .27rem;
- width: .27rem;
- line-height: .27rem;
- text-align: center;
- border-radius: .05rem;
- position: relative;
- top: -.03rem;
- }
- }
- &:active {
- background: #e1e1e1;
- }
- }
- }
- }
- .no-store {
- background: #fff;
- padding-top: 1rem;
- img {
- display: block;
- text-align: center;
- margin: 0 auto;
- margin-bottom: .45rem;
- width: 3.31rem;
- height: 2.13rem;
- }
- div {
- width: 5.27rem;
- margin: 0 auto;
- text-align: center;
- line-height: .4rem;
- color: #999;
- .link-url {
- color: #01a44e;
- }
- }
- }
- }
- .no-product {
- background: #fff;
- padding-top: 1rem;
- img {
- display: block;
- text-align: center;
- margin: 0 auto;
- margin-bottom: .45rem;
- width: 3.31rem;
- height: 2.13rem;
- }
- div {
- width: 5.27rem;
- margin: 0 auto;
- text-align: center;
- line-height: .4rem;
- font-size: .32rem;
- color: #999;
- }
- }
- }
- </style>
|