123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550 |
- <template>
- <view>
- <view class="search-pop">
- <view class="main-title" style="background: #05C25C;">
- <view class="search-tab">
- <view class="close-src" @tap="navigateBack"><text class="iconfont icon-zuojiantou"></text></view>
- <view class="search">
- <input type="text" :value="keywords" :placeholder="placeholder" class="search_area" @input="searchInput" @confirm="submitSearch" />
- <text v-if="keywords !== ''" class="cuIcon-close clear" @tap="clearInput"></text>
- <view class="search_submit" @tap="submitSearch">搜 索</view>
- </view>
-
- <image class="image-src" src="/static/image/icon_fenlei.png" style="width: 40upx;height: 40upx;margin-top: -50upx;"
- @tap='openPopus'></image>
- </view>
- </view>
- <view class="tui-tabs">
- <scroll-view id="tab-bar" scroll-with-animation class="tui-scroll-h" :scroll-x="true" :show-scrollbar="false" style="border-bottom: 2upx solid #F8F8F8;">
- <view style="display: flex;">
- <view v-for="(tab, index) in tabBars" :id="tab.id" :data-current="index" @tap='tabSlect(tab)'>
- <view class="tui-tab-item-title" style="margin-left: 130upx;" :class="{ 'tui-tab-item-title-active': tabIndex == tab.id }">{{ tab.name }}</view>
- </view>
- </view>
- </scroll-view>
- </view>
- </view>
-
- <uni-popup ref="popus" type="top">
- <view style="width: 100%;height: max-content;background: #FFFFFF;padding: 20upx 20upx 100upx 20upx;margin-top: 120upx;">
- <view class="">品牌</view>
- <view style="display: flex;flex-wrap: wrap;flex-wrap: wrap;">
- <view style="display: flex;flex-wrap: wrap;margin-left: 10upx;" v-for="(item,ind) in brandList" @tap='checkState(item)'>
- <view :style="item.brandId == brandIndex?
- 'width: 150rpx; height: 50rpx;background: #F2F2F2;text-align: center;border-radius: 50rpx;line-height: 50rpx;margin: 20rpx 0rpx 0rpx 10rpx;border: 1rpx solid #e10a07;'
- : 'width: 150rpx; height: 50rpx;background: #F2F2F2;text-align: center;border-radius: 50rpx;line-height: 50rpx;margin: 20rpx 0rpx 0rpx 10rpx;'">{{item.brandName}}</view>
- </view>
- </view>
- </view>
- </uni-popup>
-
- <view style="display: flex;flex-wrap: wrap;padding-top: 70upx;">
- <view style="width: 345upx;height: 550upx;background-color: #FFFFFF; border-radius: 20upx;margin-left: 20upx; margin-top: 20upx;box-shadow: rgba(183, 183, 183, 0.3) 1px 1px 10px 1px;"
- @tap='goDetail(item.id)' v-for="(item,index) in list" :key='index'>
- <image :src="item.coverImg" style="width: 345upx;height: 340upx;border-top-left-radius:20upx;border-top-right-radius:20upx;"></image>
- <view style="padding: 16upx 2upx 16upx 16upx;">
- <view style="width: 100%;height: 60upx;">
- <text class="limapboxqing2"><text class="indexr" style=""><text>自营</text></text>{{ item.title }}</text>
- </view>
- </view>
- <view>
- <view style="padding: 0rpx 15rpx;display: flex;margin:60rpx 0">
- <view style="width: 40%;font-size: 38upx;color: #05C25C;font-weight: 700;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;">¥{{item.memberPrice}}</view>
- <view style="width: 60%;font-size: 24upx;color: #999999;margin-top: 10upx;overflow: hidden;white-space: nowrap;text-overflow: ellipsis;text-align: right;">{{item.sales}}人已购买</view>
- </view>
- </view>
- </view>
- <!-- 悬浮上拉 -->
- <view class="scroll_top" @tap="topScrollTap" v-bind:class="[scrollTop ? 'active' : '','']" style="bottom: 56px;">
- <text class="iconfont icon-shangla"></text>
- </view>
- <!-- 加载更多提示 -->
- <view class="s-col is-col-24" v-if="list.length > 0">
- <load-more :loadingType="loadingType" :contentText="contentText"></load-more>
- </view>
- <!-- 加载更多提示 -->
- <empty style="width: 100%;" v-if="list.length === 0" des="暂无数据" show="false"></empty>
- </view>
- </view>
- </template>
- <script>
- export default {
- onShareAppMessage(res) {
- return {};
- },
- data() {
- return {
- placeholder: '输入关键字或粘贴宝贝标题',
- keywords: '',
- keywordlist: [],
- recentKeyword: [],
- copyTklStatus: '',
- localKeyword: 'orange-tyh-keyword',
- current: 0,
- tabIndex: '0',
- tabStatus: 'createAt',
- list: [],
- relation: false,
- isEnable: '否',
- //综合createAt 销量sales 佣金比例commissionPrice 超低价price
- tabBars: [{
- name: '综合',
- id: '0',
- status: 'createAt'
- },
- {
- name: '销量',
- id: '1',
- status: 'sales'
- },
- {
- name: '超低价',
- id: '2',
- status: 'price'
- }
- ],
- page: 0,
- size: 10,
- brandId: '',
- brandIndex: 0,
- brandList: [],
- loadingType: 0,
- type: '',
- title: '',
- scrollTop: false,
- contentText: {
- contentdown: '上拉显示更多',
- contentrefresh: '正在加载...',
- contentnomore: '没有更多数据了'
- }
- };
- },
- onShow() {
- let a = this.$queue.getData("isEnable")
- if (a === '是') {
- let b = this.$queue.getData('isLieBiaoEnable');
- if (b) {
- this.isEnable = b;
- } else {
- this.isEnable = a;
- }
- } else {
- this.isEnable = a;
- }
- },
- onLoad(e) {
- let relation_id = this.$queue.getData('relation_id');
- if (relation_id && relation_id !== 'undefined') {
- this.relation = true;
- } else {
- this.relation = false;
- }
- if (e.keyword) {
- this.keywords = e.keyword;
- }
- this.getList('', this.tabStatus);
- this.getBrandList();
- },
- methods: {
- checkState(item) {
- if (item.brandId === this.brandIndex) {
- this.brandIndex = 0;
- this.brandId = '';
- } else {
- this.brandIndex = item.brandId;
- this.brandId = item.brandId;
- }
- this.getList('', this.tabStatus);
- this.$refs.popus.close();
- },
- getBrandList() {
- this.$Request.getT('/goods/brandList?title=' + this.keywords).then(res => {
- if (res.status === 0) {
- res.data.forEach(d => {
- this.brandList.push(d);
- });
- }
- });
- },
- openPopus() {
- this.filter = true;
- this.$refs.popus.open();
- },
- hindPopus() {
- this.$refs.popus.close();
- },
- goDetail(id) {
- uni.navigateTo({
- url: './commoditydetail?ordersId=' + id
- });
- },
- getList(type, sort) {
- this.loadingType = 1;
- uni.showLoading({
- title: '加载中...',
- });
- this.$Request.getT('/app/goods/userList?page=' + this.page + '&size=' + this.size + '&type=' + this.type + '&title=' +
- this.keywords + '&sort=' + sort + '&brandId=' + this.brandId).then(res => {
- if (res.status === 0) {
- if (this.page === 0 || res.status) {
- this.list = [];
- }
- let grade = this.$queue.getData('grade');
- res.data.content.forEach(d => {
- d.descrition = '';
- // if (d.commissionPrice != 0) {
- // if (grade) {
- // if (this.relation) {
- // d.descrition = ((parseFloat(d.memberPrice) * parseFloat(d.commissionPrice)) * parseFloat(grade)).toFixed(
- // 2);
- // } else {
- // d.descrition = ((parseFloat(d.price) * parseFloat(d.commissionPrice)) * parseFloat(grade)).toFixed(2);
- // }
- // } else {
- // if (this.relation) {
- // d.descrition = ((parseFloat(d.memberPrice) * parseFloat(d.commissionPrice)) * parseFloat(this.$queue.minMoney()))
- // .toFixed(2);
- // } else {
- // d.descrition = ((parseFloat(d.price) * parseFloat(d.commissionPrice)) * parseFloat(this.$queue.minMoney()))
- // .toFixed(2);
- // }
- // }
- // }
- d.sales = d.sales > 10000 ? (d.sales / 10000).toFixed(1) + '万' : d.sales;
- this.list.push(d);
- });
- if (res.data.content.length === this.size) {
- this.loadingType = 0;
- } else {
- this.loadingType = 3;
- }
- } else {
- this.loadingType = 2;
- }
- uni.hideLoading();
- if (type === 'Refresh') {
- uni.stopPullDownRefresh(); // 停止刷新
- }
- });
- },
- searchInput: function(e) {
- this.keywords = e.detail.value;
- },
- submitSearch: function() {
- this.getList('', this.tabStatus)
- // if (this.$queue.getSearchKeys(this.keywords) != -1) {
- // uni.showToast({
- // title: "输入内容带有非法关键字请重新输入",
- // mask: false,
- // duration: 1500,
- // icon: "none"
- // });
- // this.keywords = '';
- // } else {
- // this.getList('', this.tabStatus)
- // }
- },
- clearInput() {
- this.keywords = '';
- this.getList('', this.tabStatus);
- },
- navigateBack() {
- uni.navigateBack();
- },
- tabSlect(item) {
- this.switchTab(item.id);
- },
- switchTab(index) {
- this.page = 0;
- this.tabIndex = index;
- this.tabStatus = this.tabBars[index].status;
- this.list = [];
- this.getList('', this.tabStatus);
- },
- topScrollTap: function() {
- uni.pageScrollTo({
- scrollTop: 0,
- duration: 300
- });
- }
- },
- onPageScroll: function(e) {
- this.scrollTop = e.scrollTop > 200;
- },
- onReachBottom: function() {
- this.page = this.page + 1;
- this.getList('', this.tabStatus);
- },
- onPullDownRefresh: function() {
- this.page = 0;
- this.getList('Refresh', this.tabStatus);
- }
- };
- </script>
- <style lang="less">
- @import '../../../../static/less/index.less';
- @import '../../../../static/css/index.css';
- page {
- background: #F8F8F8;
- }
- .limapboxqing2 {
- font-size: 28upx;
- color: #333333;
- overflow: hidden;
- text-overflow: ellipsis;
- display: -webkit-box;
- -webkit-line-clamp: 2;
- -webkit-box-orient: vertical;
- }
- .indexr {
- color: #FFFFFF;
- font-size: 22upx;
- padding-left: 12upx;
- display: inline-block;
- padding-right: 13upx;
- border-radius: 8upx;
- margin-right: 8upx;
- padding-top: 4upx;
- line-height: 38upx;
- background: #05C25C
- }
- .main-title {
- background: -webkit-linear-gradient(left, #e10a07 0, #f15b6c 100%);
- background: -o-linear-gradient(left, #e10a07 0, #f15b6c 100%);
- background: -ms-linear-gradient(left, #e10a07 0, #f15b6c 100%);
- background: -webkit-gradient(linear, right top, left top, color-stop(0, #e10a07), to(#f15b6c));
- background: -o-linear-gradient(right, #e10a07 0, #f15b6c 100%);
- background: linear-gradient(to left, #e10a07 0, #f15b6c 100%);
-
- border-bottom-color: transparent;
- padding: 16upx 20upx;
- position: fixed;
- top: 0;
- left: 0;
- width: 100%;
- z-index: 120;
- display: block;
- box-sizing: border-box;
- }
-
- .search-pop .search-tab {
- /* #ifdef APP-PLUS */
- margin: 50upx 0 20upx;
- /* #endif */
- /* #ifndef APP-PLUS */
- margin: 10upx 0 20upx;
- /* #endif */
- color: #fff;
- font-size: 32upx;
- text-align: center;
- }
-
- .search-pop .search-tab .my-sub-src {
- margin: 0 auto 0 40upx;
- display: inline-block;
- color: #fff;
- line-height: 60upx;
- margin-bottom: 20upx !important;
- }
-
- .search-pop .search-tab .my-sub-src:nth-child(1) {
- margin-left: 0px !important;
- }
-
- .main-title .search-tab .cur {
- opacity: 1;
- border-bottom: 2upx solid #fff;
- }
-
- .main-title .search-tab .close-src {
- position: absolute;
- left: 20upx;
- display: block;
- float: left;
- color: #ffffff;
- margin-top: 10upx;
- }
-
- .main-title .search-tab .image-src {
- position: fixed;
- left: 680upx;
- display: block;
- float: right;
- color: #ffffff;
- }
-
- .main-title .search-tab .close-src .iconfont {
- font-size: 40upx;
- }
-
- .main-title .search {
- background-color: #fff;
- border-radius: 40upx;
- width: 76%;
- margin-left: 10%;
- position: relative;
- padding: 0 18upx;
- height: 64upx;
- line-height: 64upx;
- font-size: 26upx;
- margin-top: 20upx;
- /* #ifdef APP-PLUS */
- margin-top: 50upx;
- /* #endif */
- }
-
- .search_submit {
- width: 25%;
- height: 64upx;
- background: #ffb925;
- color: #fff;
- float: right;
- margin-top: -64upx;
- position: relative;
- border-radius: 32upx;
- margin-right: -32upx;
- z-index: 30;
- }
-
- .clear {
- width: 70upx;
- background: white;
- color: crimson;
- position: absolute;
- z-index: 999;
- font-size: 32upx;
- /* height: 56upx; */
- margin-left: 86upx;
- margin-top: -64upx;
- }
-
- .main-title .search input {
- border: none;
- outline: 0;
- height: 64upx;
- font-size: 26upx;
- line-height: 60upx;
- background: #fff;
- color: #666;
- border-radius: 10upx;
- padding: 0 0 0 10upx;
- text-align: left;
- }
-
- .main-title .search input.search_area {
- background-color: transparent;
- position: relative;
- z-index: 99;
- width: 80%;
- color: #333;
- font-size: 28upx;
- }
-
- .tui-tabs {
- flex: 1;
- flex-direction: column;
- overflow: hidden;
- background-color: #fafafa;
- /* #ifdef MP-ALIPAY || MP-BAIDU */
- height: 100vh;
- /* #endif */
- padding-top: 130upx;
- /* #ifdef APP-PLUS */
- padding-top: 160upx;
- /* #endif */
- }
-
- .tui-scroll-h {
- width: 750rpx;
- height: 80rpx;
- background-color: #ffffff;
- flex-direction: row;
- /* #ifndef APP-PLUS */
- white-space: nowrap;
- /* #endif */
- /* #ifdef APP-PLUS */
- position: fixed;
- top: 44px;
- left: 0;
- margin-top: 60upx;
- z-index: 999;
- /* #endif */
- /* #ifdef H5 */
- position: fixed;
- top: 44px;
- left: 0;
- margin-top: 40upx;
- z-index: 999;
- /* #endif */
- /* #ifdef MP-WEIXIN */
- position: fixed;
- top: 44px;
- left: 0;
- margin-top: 40upx;
- z-index: 999;
- /* #endif */
- }
-
- .tui-line-h {
- /* #ifdef APP-PLUS */
- height: 1rpx;
- background-color: #cccccc;
- /* #endif */
- position: relative;
- }
-
- /* #ifndef APP-PLUS*/
- .tui-line-h::after {
- content: '';
- position: absolute;
- border-bottom: 1rpx solid #cccccc;
- -webkit-transform: scaleY(0.5);
- transform: scaleY(0.5);
- bottom: 0;
- right: 0;
- left: 0;
- }
-
- /* #endif */
-
- .tui-tab-item {
- /* #ifndef APP-PLUS */
- display: flex;
- /* #endif */
- }
-
- .tui-tab-item-title {
- color: #555;
- font-size: 30rpx;
- height: 80rpx;
- line-height: 80rpx;
- flex-wrap: nowrap;
- /* #ifndef APP-PLUS */
- white-space: nowrap;
- /* #endif */
- }
-
- .tui-tab-item-title-active {
- color: #05C25C;
- font-size: 32upx;
- font-weight: bold;
- border-bottom-width: 6upx;
- text-align: center;
- }
- </style>
|