| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217 |
- <template>
- <div class="new-sign-module">
- <div class="head">
- <div class="img">
- <img src="/images/store/home/new.png" />
- </div>
- <div class="title">新入驻的商家</div>
- </div>
- <ul class="list-unstyled list-inline" style="height: 210px;">
- <li class="new-store" v-for="(store, index) in stores">
- <div class="img">
- <img :src="store.logoUrl || '/images/store/common/default.png'" style="max-width: 100%;max-height: 100%;" />
- </div>
- <div class="content">
- <div class="name"><a target="_blank" :href="'/store/' + store.uuid" :title="store.storeName">{{store.storeName}}</a></div>
- <div class="subject" style="display: none;">
- 主营:<span>暂无</span>
- </div>
- <div class="subject">
- 企业介绍:<span>{{store.enterprise.description || '暂无企业介绍'}}</span>
- </div>
- </div>
- </li>
- </ul>
- <div class="sign">
- <div class="img">
- <img src="/images/store/home/shop.png"/>
- </div>
- <div class="content">
- <div class="count">
- 已入驻商家<span>{{storeCount}}</span>家
- </div>
- <div>
- <a @click="goStoreApply()"><button>立即入驻</button></a>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- export default {
- name: 'new-store',
- computed: {
- user () {
- return this.$store.state.option.user
- },
- stores () {
- return this.$store.state.provider.storeCms.newStores.data ? this.$store.state.provider.storeCms.newStores.data.content : []
- },
- storeCount () {
- return this.$store.state.provider.storeCms.storeCount.data
- },
- enterprise () {
- return this.user.data.enterprise
- }
- },
- methods: {
- goStoreApply: function () {
- if (this.user.logged) {
- if (this.enterprise && this.enterprise.isVendor === 313) {
- window.location.href = '/vendor#/index'
- } else {
- this.$router.push('/register-saler')
- }
- } else {
- this.$router.push('/auth/login')
- }
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- @import '~assets/scss/variables';
- .new-sign-module {
- width: 280px;
- height: 360px;
- padding-left: 10px;
- border-right: 1px solid #D6D3CE;
- border-bottom: 1px solid #D6D3CE;
- border-top: 1px solid #D6D3CE;
- a {
- color: #337ab7;
- text-decoration: none;
- }
- ul {
- margin-bottom: 10px;
- }
- .head {
- height: 60px;
- .img {
- margin-right: 14px;
- width: 50px;
- height: 50px;
- display: inline-block;
- text-align: center;
- line-height: 50px;
- img {
- vertical-align: middle;
- }
- }
- .title {
- height: 60px;
- line-height: 60px;
- font-size: 18px;
- font-weight: 600;
- display: inline-block;
- }
- }
- .new-store {
- display: inline-block;
- height: 70px;
- padding-bottom: 0;
- width: 260px;
- .img {
- width: 50px;
- height: 50px;
- display: inline-block;
- text-align: center;
- line-height: 45px;
- border: #e8e8e8 1px solid;
- img {
- vertical-align: middle;
- }
- }
- .content {
- width: 185px;
- display: inline-block;
- padding: 8px;
- vertical-align: middle;
- margin-left: 10px;
- .name {
- font-size: 16px;
- color: #6D6B66;
- width: 190px;
- line-height: 28px;
- text-overflow: ellipsis;
- overflow: hidden;
- white-space: nowrap;
- word-break: keep-all;
- }
- .subject {
- font-size: 14px;
- color: #777570;
- line-height: 28px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-break: keep-all;
- }
- }
- }
- .sign {
- height: 80px;
- box-shadow: 0px -5px 20px 0px #E3E1DE;
- margin-left: -20px;
- padding-left: 20px;
- padding-top: 5px;
- .img {
- display: inline-block;
- img {
- margin-bottom: 25px;
- vertical-align: middle;
- }
- }
- .content {
- display: inline-block;
- font-size: 0;
- padding-left: 3px;
- height: 70px;
- button {
- background-color: #3D76C6;
- color: white;
- font-size: 14px;
- font-weight: 600;
- border-radius: 4px;
- height: 30px;
- width: 160px;
- border: #3D76C6;
- }
- button:hover {
- transform: scale(1.05);
- background: #5078cb;
- }
- }
- .count {
- font-size: 16px;
- padding: 5px;
- span {
- color: #328CFE;
- }
- }
- }
- }
- </style>
|