新增物料模块

This commit is contained in:
yangjun 2024-07-02 19:51:10 +08:00
parent ceb82a778e
commit d9291d3922
1 changed files with 511 additions and 0 deletions

View File

@ -0,0 +1,511 @@
<template>
<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 style="display: flex;flex-wrap: wrap;">
<view
style="width: 345upx;height: 550upx;background-color: #FFFFFF; border-radius: 20upx;margin:20upx 0 0upx 20upx; padding-bottom: 10upx; box-shadow: rgba(183, 183, 183, 0.3) 1px 1px 10px 1px;"
@tap='goDetail(item.id)' v-for="(item,index) in list" :key='index' v-if="list.length > 0">
<image :src="item.coverImg" lazy-load="true"
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.price}}</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 v-if="list.length === 0" des="暂无数据" show="false"></empty> -->
</view>
</view>
</template>
<script>
export default {
data() {
return {
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: 'commissionPrice'
// },
{
name: '超低价',
id: '2',
status: 'price'
}
],
page: 0,
size: 10,
loadingType: 0,
type: 1,
barTitleName: '',
scrollTop: false,
contentText: {
contentdown: '上拉显示更多',
contentrefresh: '正在加载...',
contentnomore: '没有更多数据了'
}
}
},
onLoad(d) {
let relation_id = this.$queue.getData('relation_id');
if (relation_id && relation_id !== 'undefined') {
this.relation = true;
} else {
this.relation = false;
}
this.getmrsc('', this.tabStatus);
},
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;
}
},
methods: {
getmrsc(type, sort) {
this.loadingType = 1;
uni.showLoading({
title: '加载中...'
});
this.$Request.getT('/app/goods/wlcglist?page=' + this.page + '&size=' + this.size + '&sort=' + sort).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(); //
}
});
},
getNews(type, sort) {
this.loadingType = 1;
uni.showLoading({
title: '加载中...'
});
this.$Request.getT('/app/goods/news?page=' + this.page + '&size=' + this.size + '&sort=' + sort).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);
// }
// }
// }
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(); //
}
});
},
getSelectGoods(type, sort) {
this.loadingType = 1;
uni.showLoading({
title: '加载中...'
});
this.$Request.getT('/app/goods/selectGoods?page=' + this.page + '&size=' + this.size + '&sort=' + sort).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);
// }
// }
// }
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(); //
}
});
},
getSellingList(type, sort) {
this.loadingType = 1;
uni.showLoading({
title: '加载中...'
});
this.$Request.getT('/app/goods/selling?page=' + this.page + '&size=' + this.size + '&sort=' + sort).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);
// }
// }
// }
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(); //
}
});
},
getList() {
this.$Request.getT('/app/goods/list?page=' + this.page + '&size=' + this.size + '&status=' + 1).then(res => {
if (res.status === 0) {
if (this.page === 0 || res.status) {
this.list = [];
}
res.data.content.forEach(d => {
this.list.push(d);
});
}
});
},
goDetail(id) {
uni.navigateTo({
url: './commoditydetail?ordersId=' + id
});
},
tabSlect(item) {
this.switchTab(item.id);
},
switchTab(index) {
this.page = 0;
this.tabIndex = index;
this.tabStatus = this.tabBars[index].status;
this.list = [];
this.getList1('switch', this.tabStatus);
},
topScrollTap: function() {
uni.pageScrollTo({
scrollTop: 0,
duration: 300
});
},
getList1(type, sort) {
if (this.barTitleName === '精选好物') {
this.getSelectGoods(type, sort);
} else if (this.barTitleName === '热卖榜单') {
this.getSellingList(type, sort);
} else if (this.barTitleName === '每日上新') {
this.getNews(type, sort);
} else if (this.barTitleName === '推荐商品') {
this.getmrsc('', this.tabStatus);
}
}
},
onPageScroll: function(e) {
this.scrollTop = e.scrollTop > 200;
},
onReachBottom: function() {
this.page = this.page + 1;
this.getList1('', this.tabStatus);
},
onPullDownRefresh: function() {
this.page = 0;
this.getList1('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;
background: #05C25C;
font-size: 22upx;
padding-left: 12upx;
display: inline-block;
padding-right: 13upx;
border-radius: 8upx;
margin-right: 8upx;
padding-top: 4upx;
padding-bottom: 2upx;
}
.tui-tabs {
flex: 1;
flex-direction: column;
overflow: hidden;
background-color: #fafafa;
/* #ifdef MP-ALIPAY || MP-BAIDU */
height: 100vh;
/* #endif */
}
.tui-scroll-h {
width: 750rpx;
height: 80rpx;
background-color: #ffffff;
flex-direction: row;
/* #ifndef H5 */
position: fixed;
top: 0;
left: 0;
z-index: 999;
/* #endif */
/* #ifndef APP-PLUS */
white-space: nowrap;
/* #endif */
/* #ifdef H5 */
position: fixed;
top: 44px;
left: 0;
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 */
// flex-wrap: nowrap;
// padding-left: 34rpx;
// padding-right: 34rpx;
}
.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>