实现订单管理核心功能,包括订单创建、查询、取消和状态管理

This commit is contained in:
ylweng
2025-09-18 08:55:32 +08:00
parent 90cdd713ba
commit 7b6dd95fa5
26 changed files with 16633 additions and 5 deletions

View File

@@ -0,0 +1,13 @@
{
"name": "supplier-mp",
"version": "1.0.0",
"description": "活牛供应商小程序",
"main": "main.js",
"scripts": {
"dev": "uni -p mp-weixin"
},
"dependencies": {
"@dcloudio/uni-app": "^3.0.0",
"pinia": "^2.0.0"
}
}

View File

@@ -0,0 +1,15 @@
<script setup lang="ts">
// 供应商小程序首页
</script>
<template>
<view class="container">
<text>供应商小程序首页</text>
</view>
</template>
<style lang="scss">
.container {
padding: 20rpx;
}
</style>