Initial commit: 积分兑换电商平台多商户版 MER-2.2

Made-with: Cursor
This commit is contained in:
apple
2026-03-08 20:07:52 +08:00
commit de02c8a3e1
4954 changed files with 703009 additions and 0 deletions

View File

@@ -0,0 +1,138 @@
<template>
<!-- 分类 -->
<view>
<view class="category">
<view v-for="item in category" :key="item.id" class="section">
<view class="head" @click="goCategoryGoods(item)">
<view class="title">{{ item.name }}</view>
<view class="iconfont icon-ic_rightarrow"></view>
</view>
<view v-if="item.childList" class="body">
<view v-for="value in item.childList" :key="value.id" class="item" @click="goCategoryGoods(value)">
{{ value.name }}</view>
</view>
</view>
</view>
<view :hidden="!categoryLoading" class="acea-row row-center-wrapper loadingicon">
<text class="iconfont icon-jiazai loading"></text>
</view>
<emptyPage v-if="category.length == 0 && !categoryLoading" mTop="35%" title="暂无商品分类~"
:imgSrc="urlDomain+'crmebimage/presets/noSearch.png'"></emptyPage>
</view>
</template>
<script>
import {
getMerCategoryApi
} from '@/api/merchant.js';
import emptyPage from '@/components/emptyPage.vue'
export default {
components: {
emptyPage
},
props: {
merId: { // 商户id
type: Number,
default: 0
},
},
data() {
return {
category: [],
categoryLoading: false,
urlDomain: this.$Cache.get("imgHost"),
}
},
mounted() {
this.getMerCategory()
},
methods: {
goCategoryGoods(item) {
uni.navigateTo({
url: '/pages/goods/goods_list/index?merId=' + this.merId + '&cid=' +
item.id
})
},
getMerCategory() {
this.categoryLoading = true
getMerCategoryApi(this.merId).then(res => {
this.category = res.data
this.categoryLoading = false
}).catch(err => {
return this.$util.Tips({
title: err
});
this.categoryLoading = false
});
},
}
}
</script>
<style lang="scss" scoped>
.category {
padding: 20rpx 24rpx 0 24rpx;
.section {
border-radius: 24rpx;
margin-bottom: 20rpx;
background-color: #FFFFFF;
.head {
position: relative;
display: flex;
align-items: center;
height: 90rpx;
padding-right: 20rpx;
padding-left: 36rpx;
font-weight: bold;
color: #282828;
&::before {
content: " ";
position: absolute;
top: 50%;
left: 20rpx;
width: 6rpx;
height: 24rpx;
@include main_bg_color(theme);
transform: translateY(-50%);
}
.title {
flex: 1;
min-width: 0;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-size: 30rpx;
}
}
.body {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
padding: 9rpx 24rpx 0;
.item {
width: 314rpx;
height: 84rpx;
padding-right: 30rpx;
padding-left: 30rpx;
border-radius: 16rpx;
background-color: #F5F5F5;
margin-bottom: 24rpx;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
font-weight: 500;
font-size: 26rpx;
line-height: 84rpx;
color: #282828;
}
}
}
}
</style>

File diff suppressed because one or more lines are too long

View File

@@ -0,0 +1,277 @@
<template>
<div :data-theme="theme" class="store-home productSort"
:style="{backgroundImage: `linear-gradient(360deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.9) 100%),url(${merchantAPPInfo.backImage})`}">
<tui-skeleton v-if="skeletonShow"></tui-skeleton>
<view>
<view class="sys-head skeleton-rect" :style="{ height: statusBarHeight + 'px' }"></view>
<view class="fixed-top">
<view class='navbarCon acea-row' :style="{ paddingRight: navbarRight + 'px',width:leftWindowWidth+ 'px' }">
<view class="select_nav acea-row row-around tui-skeleton-rect homeBox" id="home" ref="selectNav">
<text class="iconfont icon-ic_leftarrow px-20" @tap="returns"></text>
<text class="nav_line"></text>
<text class="iconfont icon-ic_home px-20" @tap="goIndex"></text>
</view>
<!-- #ifndef MP -->
<navigator :url="'/pages/goods/goods_list/index?merId='+merId" class="input tui-skeleton-rect searchIpt"
hover-class="none" :style="{ top: homeTop + 'rpx',width:searchIptWindowWidth+ 'px' }"><text
class="iconfont icon-ic_search"></text>
输入商品名称搜索</navigator>
<!-- #endif -->
<!-- #ifdef MP -->
<navigator :url="'/pages/goods/goods_list/index?merId='+merId" class="input tui-skeleton-rect searchIpt"
hover-class="none" :style="{ top: searchTop + 'px',width:searchIptWindowWidth+ 'px' ,height:searchHeight+'px'}"><text
class="iconfont icon-ic_search"></text>
输入商品名称搜索</navigator>
<!-- #endif -->
</view>
</view>
<merHome class="tui-skeleton-rect" :merchantInfo="merchantAPPInfo" :merId="merId" type="detail"></merHome>
</view>
<view class="tab-cont">
<!-- 分类 -->
<view v-if="tabActive === 'classify'">
<mer-classify :merId="merId"></mer-classify>
</view>
<!-- 优惠券 -->
<view v-if="tabActive === 'coupon'" class="couponBox">
<mer-coupon :merId="merId"></mer-coupon>
</view>
</view>
</div>
</template>
<script>
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 https://www.crmeb.com All rights reserved.
// +----------------------------------------------------------------------
// | Licensed CRMEB并不是自由软件未经许可不能去掉CRMEB相关版权
// +----------------------------------------------------------------------
// | Author: CRMEB Team <admin@crmeb.com>
// +----------------------------------------------------------------------
import WaterfallsFlow from '@/components/WaterfallsFlow/WaterfallsFlow.vue'
import WaterfallsFlowItem from '@/components/WaterfallsFlowItem/WaterfallsFlowItem.vue'
import merCoupon from '../coupon/index.vue';
import merClassify from '../classify/index.vue';
import {
mapGetters
} from "vuex";
import emptyPage from '@/components/emptyPage.vue'
import merHome from '@/components/merHome/index.vue'
import tuiSkeleton from '@/components/base/tui-skeleton.vue';
import easyLoadimage from '@/components/base/easy-loadimage.vue';
var statusBarHeight = uni.getSystemInfoSync().statusBarHeight;
let app = getApp();
export default {
components: {
WaterfallsFlow,
emptyPage,
merHome,
tuiSkeleton,
easyLoadimage,
WaterfallsFlowItem,
merClassify,
merCoupon
},
props: {
merId: { // 商户id
type: Number,
default: 0
}, //底部菜单选中的索引
tabActive: {
type: String,
default: ''
}
},
data() {
return {
statusBarHeight: 0,
scrollTop: 0,
skeletonShow: true, //骨架屏显示隐藏
homeTop: 20,
navbarRight: 0,
theme: app.globalData.theme,
leftWindowWidth: 0, //小程序头部左侧除去右上角的胶囊菜单宽度的长度
searchIptWindowWidth: 0, //小程序端搜索框长度
searchTop:0,
searchHeight:0,
}
},
computed: {
...mapGetters(["merchantClassify", "merchantType", 'isLogin', 'uid', 'merchantAPPInfo']),
},
// 滚动监听
onPageScroll(e) {
// 传入scrollTop值并触发所有easy-loadimage组件下的滚动监听事件
uni.$emit('scroll');
},
onShow() {
// #ifdef MP || APP-PLUS
this.statusBarHeight = statusBarHeight;
// #endif
// #ifdef H5
this.statusBarHeight = 20;
// #endif
},
created() {
// #ifdef MP
// 获取窗口信息
const windowInfo = uni.getWindowInfo()
// 获取胶囊左边界坐标
this.leftWindowWidth = uni.getMenuButtonBoundingClientRect().left;
const query = uni.createSelectorQuery().in(this);
const homeWidth = 0
//搜索框宽度
query.select('#home').boundingClientRect(data => {
this.searchIptWindowWidth = this.leftWindowWidth - data.width - 60
}).exec();
// #endif
// #ifdef MP
const res = uni.getMenuButtonBoundingClientRect()
const statusHeight = res.top //胶囊距离顶部
const jnHeight = res.height //胶囊高度
this.searchTop=statusHeight-this.statusBarHeight
this.searchHeight=jnHeight
// #endif
},
onLoad() {
// #ifdef MP || APP-PLUS
this.statusBarHeight = statusBarHeight;
// #endif
// #ifdef H5
this.statusBarHeight = 20;
// #endif
},
mounted: function() {
// #ifdef MP || APP-PLUS
this.statusBarHeight = statusBarHeight;
// #endif
// #ifdef H5
this.statusBarHeight = 20;
// #endif
this.$store.dispatch('MerTypeList');
this.skeletonShow = false;
},
methods: {
goIndex() {
this.$util.navigateTo('/pages/index/index');
},
// 后退
returns: function() {
uni.navigateBack()
},
},
}
</script>
<style lang="scss" scoped>
.select_nav {
border-radius: 33rpx;
border: 1px solid rgba(255, 255, 255, .5);
color: #fff;
font-size: 18px;
line-height: 60rpx;
align-items: center;
}
.nav_line {
content: '';
display: inline-block;
width: 1px;
height: 34rpx;
background: #b3b3b3 !important;
color: #b3b3b3 !important;
}
.navbarCon {
padding: 10rpx 20rpx 0 20rpx;
/* #ifdef H5 || APP */
width: 800rpx !important;
/* #endif */
}
.input {
display: flex;
align-items: center;
/* #ifdef MP */
//width: 42%;
/* #endif */
/* #ifndef MP */
width: 538rpx;
/* #endif */
height: 55rpx;
padding: 0 0 0 30rpx;
border: 1px solid rgba(0, 0, 0, 0.07);
border-radius: 33rpx;
color: #D9D9D9;
font-size: 26rpx;
// margin: auto;
background: rgba(255, 255, 255, 0.3);
margin-left: 20rpx;
.iconfont {
margin-right: 20rpx;
font-size: 26rpx;
color: #D9D9D9;
}
}
.tab-cont {
background: #f5f5f5;
min-height: 500rpx;
overflow: auto;
}
.couponBox {
/deep/.empty-box {
padding-top: 200rpx;
margin-top: 0 !important;
}
}
.store-home {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
display: flex;
flex-direction: column;
padding-bottom: 100rpx;
background: left top/750rpx 390rpx no-repeat fixed;
overflow: hidden;
}
.fixed-top {
top: 0;
left: 0;
z-index: 9;
margin-bottom: 24rpx;
}
.searchIpt {
/* #ifdef H5 || APP */
width: 550rpx !important;
height: 60rpx;
line-height: 60rpx;
/* #endif */
}
</style>

File diff suppressed because one or more lines are too long