| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- <template>
- <div class="mobile-center">
- <div class="com-mobile-header mobile-center-header">
- <a @click="goLastPage"><i class="iconfont icon-fanhui"></i></a>
- <p>器件收藏</p>
- <p class="en-name"><img :src="`/images/mobile/center/${user.data.enterprise.uu ? 'en' : 'self'}.png`" alt="">{{currentEnName}}</p>
- </div>
- <div class="mobile-fix-content mobile-centerfix-content" id="mobileFixContent">
- <div class="search-content search-content2" style="position: relative">
- <input type="text" placeholder="请输入您要查找的型号" @input="onBrandChange" v-model="keyword" @keyup.13="searchComplist">
- <span @click.stop="searchComplist" >
- <i class="iconfont icon-sousuo"></i>
- </span>
- <ul class="similar brand-similar-list" v-show="showSimilarCodeList && keyword">
- <li v-for="sBrand in similarBrand" :key="sBrand.code" @click.stop="setBrand(sBrand.code)">{{sBrand.code}}</li>
- </ul>
- </div>
- <ul v-if="compList && compList.length">
- <li class="clearfix" :key="comp.componentid" v-for="comp in compList" @click="goUrl('/mobile/brand/componentDetail/' + comp.componentinfo.uuid)">
- <div class="fl">
- <p>品牌:<span v-text="comp.componentinfo.brand.nameCn || '-'"></span></p>
- <p>物料名称:<span v-text="comp.componentinfo.kind.nameCn || '-'"></span></p>
- <p>型号:<span v-text="comp.componentinfo.code || '-'"></span></p>
- <p>规格:<span v-text="comp.componentinfo.spec || '-'"></span></p>
- <p>产品描述:<span v-text="comp.componentinfo.description || '-'"></span></p>
- </div>
- <div class="vir"></div>
- <div class="fr">
- <i class="iconfont icon-shoucang" @click="cancelFocus(comp, $event)"></i>
- <a class="sa-pub" @click="compInquiry(comp, $event)">立即询价</a>
- </div>
- </li>
- </ul>
- <empty-status :type="'collect'" :showLink="true" :text="'抱歉,暂无器件收藏'" v-else></empty-status>
- </div>
- <remind-box :title="remindText" :timeoutCount="timeoutCount"></remind-box>
- <pull-up :fixId="'mobileFixContent'" :searchMore="fetching" :allPage="allPage" :page="page" @pullUpAction="onPullUpAction"></pull-up>
- <publish-supplier-seek :product="componentSeekObj" :showPublishBox="showPublishBox" @cancelAction="showPublishBox = false" @remindAction="onRemind"></publish-supplier-seek>
- </div>
- </template>
- <script>
- import { RemindBox, PullUp, EmptyStatus } from '~components/mobile/common'
- import { PublishSupplierSeek } from '~components/mobile/applyPurchase'
- export default {
- middleware: 'authenticated',
- layout: 'mobileNoHeader',
- data () {
- return {
- keyword: '',
- showSimilarCodeList: false,
- similarBrand: '',
- remindText: '',
- timeoutCount: 0,
- page: 1,
- count: 10,
- isChange: false,
- compList: [],
- componentSeekObj: {
- standard: 1,
- cmpCode: '',
- pbranden: '',
- spec: null,
- kind: ''
- },
- showPublishBox: false
- }
- },
- watch: {
- 'compCollectList.data': {
- handler: function (val) {
- if (this.isChange) {
- this.compList = val.content
- this.isChange = false
- } else {
- this.compList = [...this.compList, ...val.content]
- }
- },
- immediate: true
- }
- },
- computed: {
- compCollectList () {
- return this.$store.state.product.common.collectListMobile
- },
- fetching () {
- return this.compCollectList.fetching
- },
- allPage () {
- return Math.floor(this.compCollectList.data.totalElements / this.compCollectList.data.size) + Math.floor(this.compCollectList.data.totalElements % this.compCollectList.data.size > 0 ? 1 : 0)
- }
- },
- fetch ({ store }) {
- return Promise.all([
- // 获取器件收藏列表
- store.dispatch('product/getCollectList', { count: 10, page: 1, type: 'component' })
- ])
- },
- components: {
- RemindBox,
- PullUp,
- PublishSupplierSeek,
- EmptyStatus
- },
- methods: {
- onBrandChange: function () {
- this.keyword = this.keyword.trim()
- if ((/[^\x00-\xff]/g).test(this.keyword)) {
- let chineseIndex = -1
- for (let i = 0; i < this.keyword.length; i++) {
- if ((/[^\x00-\xff]/g).test(this.keyword.charAt(i)) && !(/[\u4e00-\u9fa5]/).test(this.keyword.charAt(i))) {
- chineseIndex = i
- break
- }
- }
- if (chineseIndex > -1) {
- this.keyword = this.keyword.substring(0, chineseIndex)
- }
- } else if (this.keyword && this.baseUtils.getRealLen(this.keyword) > 50) {
- this.keyword = this.baseUtils.cutOutString(this.keyword, 50)
- } else {
- this.getSimilarBrand()
- }
- },
- getSimilarBrand: function () {
- if (this.keyword) {
- this.$http.get('/search/similarKeywords', {params: {keyword: this.keyword, type: 'component'}})
- .then(response => {
- this.similarBrand = response.data.result
- this.showSimilarCodeList = response.data.result.length > 0
- })
- } else {
- this.showSimilarCodeList = false
- }
- },
- setBrand: function (brand) {
- this.keyword = brand
- this.showSimilarCodeList = false
- this.searchComplist()
- },
- searchComplist () {
- if (this.keyword !== '') {
- this.showSimilarCodeList = false
- this.$router.push(`/mobile/center/user/collect/component/${this.keyword}`)
- } else {
- this.remindText = '请输入您要查找的型号'
- this.timeoutCount++
- }
- },
- onRemind: function (str) {
- this.remindText = str
- this.timeoutCount++
- },
- cancelFocus: function (item, event) {
- event.stopPropagation()
- this.$http.delete('/trade/collection/' + item.id)
- .then(response => {
- this.onRemind('取消成功')
- this.isChange = true
- this.page = 1
- this.reloadList()
- }, err => {
- this.onRemind(err.response.data || '取消失败')
- })
- },
- reloadList: function () {
- this.$store.dispatch('product/getCollectList', { page: this.page, count: this.count, type: 'component' })
- },
- onPullUpAction: function () {
- this.page++
- this.reloadList()
- },
- compInquiry: function (item, e) {
- if (e) {
- e.stopPropagation()
- }
- this.componentSeekObj.cmpCode = item.componentinfo.code
- this.componentSeekObj.pbranden = item.componentinfo.brand.nameCn
- this.componentSeekObj.spec = null
- this.componentSeekObj.kind = item.componentinfo.kind.nameCn
- this.componentSeekObj = JSON.parse(JSON.stringify(this.componentSeekObj))
- this.showPublishBox = true
- },
- goUrl: function (url) {
- // console.log(url)
- this.$router.push(url)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .mobile-fix-content {
- .similar {
- position: absolute;
- width: 6.5rem;
- max-height: 2.5rem;
- overflow-y: auto;
- z-index: 12;
- border: 1px solid #7e7e7e;
- border-radius: .05rem;
- top: .7rem;
- background: #fff;
- left: 0.1rem;
- right: 0;
- margin: 0 auto;
- li {
- height: .5rem;
- line-height: .5rem;
- font-size: .26rem;
- color: #999;
- padding-left: .19rem;
- text-align: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- &:focus, &:active, &:hover {
- background: #999;
- color: #fff;
- }
- }
- }
- .search-content {
- text-align: center;
- input {
- border: 1px solid #376ff3;
- }
- span{
- top:0;
- }
- }
- > ul {
- width: 7.1rem;
- margin: 0 auto;
- li {
- border-radius: .05rem;
- border: 1px solid #ccc;
- margin: .25rem 0 0 0;
- position: relative;
- background: #fff;
- .fl {
- width: 4.71rem;
- color: #666;
- padding: .25rem .1rem .25rem .23rem;
- p {
- font-size: .3rem;
- line-height: .42rem;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- span {
- color: #333;
- }
- }
- }
- .vir {
- position: absolute;
- top: .28rem;
- bottom: .28rem;
- right: 2.36rem;
- border-right: .01rem dashed #9f9f9f;
- }
- .fr {
- width: 2.34rem;
- text-align: center;
- margin-top: .3rem;
- i {
- display: block;
- color: #ff7800;
- font-size: .5rem;
- width: .6rem;
- height: .6rem;
- line-height: .6rem;
- text-align: center;
- margin: .29rem auto .1rem;
- }
- .sa-pub {
- display: block;
- width: 1.7rem;
- height: .47rem;
- line-height: .47rem;
- text-align: center;
- font-size: .26rem;
- color: #fff;
- background: #008bf7;
- margin: 0 auto;
- border-radius: .05rem;
- }
- }
- }
- }
- }
- </style>
|