第一次上传

This commit is contained in:
Ls
2026-03-09 16:39:03 +08:00
commit 3d9efaf15c
924 changed files with 326227 additions and 0 deletions

View File

@@ -0,0 +1,197 @@
{
"easycom": {
// 注意一定要放在custom里否则无效https://ask.dcloud.net.cn/question/131175
"custom": {
"^u--(.*)": "uview-plus/components/u-$1/u-$1.vue",
"^up-(.*)": "uview-plus/components/u-$1/u-$1.vue",
"^u-([^-].*)": "uview-plus/components/u-$1/u-$1.vue"
}
},
"pages": [ //pages数组中第一项表示应用启动页参考https://uniapp.dcloud.io/collocation/pages
{
"path": "pages/index/index",
"style": {
"navigationBarTitleText": "首页",
"navigationBarBackgroundColor": "#36394D",
"navigationStyle": "custom",
"backgroundColor": "#F8F8F8"
}
},
{
"path": "pages/index/community",
"style": {
"navigationBarTitleText": "社区",
"navigationStyle": "custom"
}
},
{
"path": "pages/index/user",
"style": {
"navigationBarTitleText": "我的",
"navigationStyle": "custom"
}
}
],
"globalStyle": {
"navigationBarTextStyle": "black",
"navigationBarTitleText": "v派商家",
"navigationBarBackgroundColor": "#fff",
"backgroundColor": "#F8F8F8"
},
"subPackages": [{
"root": "pages/community",
"pages": [{
"path": "noticeList",
"style": {
"navigationBarTitleText": "社区公告"
}
},
{
"path": "merchantCom",
"style": {
"navigationBarTitleText": "社区商家"
}
},
{
"path" : "merchantDetail",
"style" :
{
"navigationBarTitleText" : "美食小店"
}
}
]
},
{
"root": "pages/goods",
"pages": [{
"path": "merchant",
"style": {
"navigationBarTitleText": "热门商家"
}
},
{
"path" : "goodsDetail",
"style" :
{
"navigationBarTitleText" : "商品详情"
}
},
{
"path" : "goodsContro",
"style" :
{
"navigationBarTitleText" : "商品管理"
}
},
{
"path" : "addGoods",
"style" :
{
"navigationBarTitleText" : "添加商品"
}
},
{
"path" : "Pay",
"style" :
{
"navigationBarTitleText" : "付款"
}
}]
},
{
"root": "pages/article",
"pages": [{
"path": "articleCom",
"style": {
"navigationBarTitleText": "社区公告"
}
},
{
"path": "newsList",
"style": {
"navigationBarTitleText": "新闻公告"
}
},
{
"path": "news",
"style": {
"navigationBarTitleText": "新闻详情"
}
}
]
}, {
"root": "pages/userFunc",
"pages": [{
"path" : "setData",
"style" :
{
"navigationBarTitleText" : "编辑资料"
}
},
{
"path" : "integration",
"style" :
{
"navigationBarTitleText" : "积分明细"
}
},
{
"path" : "trade",
"style" :
{
"navigationBarTitleText" : "交易记录"
}
},
{
"path" : "editStore",
"style" :
{
"navigationBarTitleText" : "编辑店铺"
}
},
{
"path" : "statistics",
"style" :
{
"navigationBarTitleText" : "数据统计"
}
},
{
"path" : "set",
"style" :
{
"navigationBarTitleText" : "设置"
}
}
]
}
],
"tabBar": {
"color": "#8a8a8a",
"selectedColor": "#EC754B",
"backgroundColor": "#ffffff",
"list": [{
"text": "首页",
"pagePath": "pages/index/index",
"iconPath": "/static/tabBar/home.png",
"selectedIconPath": "/static/tabBar/homed.png"
}, {
"text": "社区",
"pagePath": "pages/index/community",
"iconPath": "/static/tabBar/community.png",
"selectedIconPath": "/static/tabBar/communityed.png"
}, {
"text": "个人中心",
"pagePath": "pages/index/user",
"iconPath": "/static/tabBar/user.png",
"selectedIconPath": "/static/tabBar/usered.png"
}]
}
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.2 KiB

View File

@@ -0,0 +1,62 @@
@import './styles/setting/_variables.scss';
// 间距基础倍数
$uni-space-root: 2;
// 边框半径默认值
$uni-radius-root:5px;
// 主色
$uni-primary: #2979ff;
$uni-primary-disable:mix(#fff,$uni-primary,50%);
$uni-primary-light: mix(#fff,$uni-primary,80%);
// 辅助色
// 除了主色外的场景色,需要在不同的场景中使用(例如危险色表示危险的操作)。
$uni-success: #18bc37;
$uni-success-disable:mix(#fff,$uni-success,50%);
$uni-success-light: mix(#fff,$uni-success,80%);
$uni-warning: #f3a73f;
$uni-warning-disable:mix(#fff,$uni-warning,50%);
$uni-warning-light: mix(#fff,$uni-warning,80%);
$uni-error: #e43d33;
$uni-error-disable:mix(#fff,$uni-error,50%);
$uni-error-light: mix(#fff,$uni-error,80%);
$uni-info: #8f939c;
$uni-info-disable:mix(#fff,$uni-info,50%);
$uni-info-light: mix(#fff,$uni-info,80%);
// 中性色
// 中性色用于文本、背景和边框颜色。通过运用不同的中性色,来表现层次结构。
$uni-main-color: #3a3a3a; // 主要文字
$uni-base-color: #6a6a6a; // 常规文字
$uni-secondary-color: #909399; // 次要文字
$uni-extra-color: #c7c7c7; // 辅助说明
// 边框颜色
$uni-border-1: #F0F0F0;
$uni-border-2: #EDEDED;
$uni-border-3: #DCDCDC;
$uni-border-4: #B9B9B9;
// 常规色
$uni-black: #000000;
$uni-white: #ffffff;
$uni-transparent: rgba($color: #000000, $alpha: 0);
// 背景色
$uni-bg-color: #f7f7f7;
/* 水平间距 */
$uni-spacing-sm: 8px;
$uni-spacing-base: 15px;
$uni-spacing-lg: 30px;
// 阴影
$uni-shadow-sm:0 0 5px rgba($color: #d8d8d8, $alpha: 0.5);
$uni-shadow-base:0 1px 8px 1px rgba($color: #a5a5a5, $alpha: 0.2);
$uni-shadow-lg:0px 1px 10px 2px rgba($color: #a5a4a4, $alpha: 0.5);
// 蒙版
$uni-mask: rgba($color: #000000, $alpha: 0.4);

View File

@@ -0,0 +1 @@
declare module "uview-plus"

View File

@@ -0,0 +1,259 @@
<template>
<view class="page">
<!-- 商品列表 -->
<view class="product-list">
<view class="product-item" style="margin-top: 20rpx;" v-for="(product, index) in products" :key="index">
<view class="product-info">
<image :src="Service.GetMateUrlByImg(product.img)" mode="aspectFill" class="product-image"></image>
<view class="product-details">
<view class="product-header">
<text class="product-name">{{ product.name }}</text>
</view>
<text class="product-price">¥{{ product.price }}</text>
</view>
<view class="tag" :style="{ 'background-color':product.status==0?'#D9D9D9':'#52C41A', } "
style="padding: 7rpx 24rpx;border-radius: 31rpx;font-size: 24rpx; color: #fff; height: fit-content; ">
{{ product.status==0?'已下架':'已上架' }}
</view>
</view>
<view class="product-actions">
<text class="action-btn edit-btn" @click="editProduct(product)">编辑</text>
<text class="action-btn" :class="product.status === 0 ? '上架' : '下架'" @click="toggleStatus(product)">
{{ product.status === 0? '上架' : '下架' }}
</text>
<text class="action-btn delete-btn" @click="deleteProduct(product)">删除</text>
</view>
</view>
<!-- 空状态 -->
<view v-if="products.length === 0" class="empty-state">
<text class="ri-file-list-line empty-icon"></text>
<text class="empty-text">暂无商品</text>
</view>
<up-loadmore v-else :status="status" />
</view>
<!-- 新增商品按钮 -->
<view class="add-product-btn">
<up-button @click="Service.GoPage('/pages/goods/addGoods')" color="var(--nav-mian)"
:customStyle="{'border-radius':'15rpx'}"> + 新增商品 </up-button>
</view>
</view>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { Service } from '@/Service/Service'
import { vpMerchService } from '@/Service/vp/vpMerchService'
import { onLoad, onReachBottom, onShow } from '@dcloudio/uni-app'
// import { vpCommunityService } from '@/Service/vp/vpCommunityService'
// 模拟商品数据
const products = ref<Array<any>>([])
let status = ref('nomore')
let page = ref(1)
onLoad(() => {
})
onShow(() => {
getData()
})
onReachBottom(() => {
getList()
})
const getData = () => {
products.value = []
status.value = 'loadmore'
page.value = 1
getList()
}
const getList = () => {
if (status.value !== 'loadmore') {
return
}
status.value = 'loading'
vpMerchService.GetMerchGoods(page.value).then(res => {
products.value = [...products.value, ...res.data.list]
status.value = res.data.list.length == 10 ? 'loadmore' : 'nomore'
page.value++
})
}
// 编辑商品
const editProduct = (product : any) => {
Service.GoPage('/pages/goods/addGoods?goodsId=' + product.goodsId)
}
// 切换商品状态(上架/下架)
const toggleStatus = (product : any) => {
vpMerchService.UpdateGoodsStatus(product.goodsId).then(res => {
if (res.code == 0) {
Service.Msg('修改成功!')
getData()
} else {
Service.Msg(res.msg)
}
})
}
// 删除商品
const deleteProduct = (product : any) => {
uni.showModal({
title: '提示',
content: '确认删除该商品么?',
success: function (res) {
if (res.confirm) {
vpMerchService.DelGoods(product.goodsId).then(res => {
if (res.code == 0) {
Service.Msg('删除成功!')
getData()
} else {
Service.Msg(res.msg)
}
})
} else {
// 用户点击取消后的操作
}
}
});
}
</script>
<style scoped lang="scss">
.page {
background-color: #f5f5f5;
min-height: 100vh;
padding-bottom: 40rpx;
}
/* 空状态 */
.empty-state {
background: #FFFFFF;
border-radius: 16rpx;
padding: 120rpx 0;
margin: 20rpx 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 16rpx;
}
.empty-icon {
font-size: 96rpx;
color: #CCCCCC;
}
.empty-text {
font-size: 26rpx;
color: #999999;
}
/* 新增商品按钮 */
.add-product-btn {
width: 100%;
border-top: 1rpx solid #e2e2e2;
position: fixed;
bottom: 0;
left: 0;
padding: 30rpx;
background-color: #ffffff;
}
/* 商品列表 */
.product-list {
overflow: hidden;
padding: 0 30rpx;
}
.product-item {
background-color: #ffffff;
border-radius: 20rpx;
margin-bottom: 20rpx;
padding: 30rpx;
}
.product-info {
display: flex;
// align-items: center;
margin-bottom: 20rpx;
}
.product-image {
width: 155rpx;
height: 155rpx;
border-radius: 10rpx;
margin-right: 30rpx;
}
.product-details {
flex: 1;
}
.product-header {
display: flex;
align-items: center;
margin-bottom: 20rpx;
}
.product-name {
font-size: 32rpx;
color: #333333;
font-weight: 500;
}
.product-price {
font-size: 36rpx;
color: #ff6600;
font-weight: bold;
display: block;
margin-bottom: 10rpx;
}
.product-sales {
font-size: 26rpx;
color: #999999;
}
.status-badge {
margin-left: auto;
}
/* 操作按钮 */
.product-actions {
display: flex;
justify-content: flex-end;
padding-top: 20rpx;
border-top: 1rpx solid #f0f0f0;
}
.action-btn {
font-size: 28rpx;
margin-left: 30rpx;
}
.edit-btn {
color: #333333;
}
.online-btn {
color: #4cd964;
}
.offline-btn {
color: #999999;
}
.delete-btn {
color: #ff3b30;
}
</style>