fix: 修复构建命令和恢复订单列表功能
将构建命令中的pnpm改为npm以兼容环境 恢复个人中心页面的订单列表功能入口
This commit is contained in:
parent
d610d3cebc
commit
45ac3a9bd2
|
|
@ -8,7 +8,7 @@
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build:staging": "vue-tsc && vite build --mode staging",
|
"build:staging": "vue-tsc && vite build --mode staging",
|
||||||
"build": "vue-tsc && vite build && pnpm run zip",
|
"build": "vue-tsc && vite build && npm run zip",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"lint": "eslint . --fix",
|
"lint": "eslint . --fix",
|
||||||
"prepare": "husky",
|
"prepare": "husky",
|
||||||
|
|
|
||||||
|
|
@ -103,13 +103,13 @@ wxStore.refreshBalance();
|
||||||
<van-col span="24">
|
<van-col span="24">
|
||||||
<div class="section-title text-sm font-bold pb-2">个人中心</div>
|
<div class="section-title text-sm font-bold pb-2">个人中心</div>
|
||||||
</van-col>
|
</van-col>
|
||||||
<!-- <van-col span="8">
|
<van-col span="8">
|
||||||
<div class="custom-btn" @click="router.push('/order-list')">
|
<div class="custom-btn" @click="router.push('/order-list')">
|
||||||
<van-icon name="orders-o" size="20px" />
|
<van-icon name="orders-o" size="20px" />
|
||||||
<span>订单列表</span>
|
<span>订单列表</span>
|
||||||
</div>
|
</div>
|
||||||
</van-col>
|
</van-col>
|
||||||
<van-col span="8">
|
<!-- <van-col span="8">
|
||||||
<div class="custom-btn" @click="router.push('/rental-list')">
|
<div class="custom-btn" @click="router.push('/rental-list')">
|
||||||
<van-icon name="orders-o" size="20px" />
|
<van-icon name="orders-o" size="20px" />
|
||||||
<span>我的柜子</span>
|
<span>我的柜子</span>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue