feat:增加 ts:check 优化,避免 ai 校验 oom 报错
parent
4f4c64cfff
commit
1f47e3c9d6
|
|
@ -91,7 +91,7 @@ const include = [
|
||||||
'element-plus/es/components/dropdown-menu/style/css',
|
'element-plus/es/components/dropdown-menu/style/css',
|
||||||
'element-plus/es/components/dropdown-item/style/css',
|
'element-plus/es/components/dropdown-item/style/css',
|
||||||
'element-plus/es/components/skeleton/style/css',
|
'element-plus/es/components/skeleton/style/css',
|
||||||
'element-plus/es/components/skeleton/style/css',
|
'element-plus/es/components/skeleton-item/style/css',
|
||||||
'element-plus/es/components/backtop/style/css',
|
'element-plus/es/components/backtop/style/css',
|
||||||
'element-plus/es/components/menu/style/css',
|
'element-plus/es/components/menu/style/css',
|
||||||
'element-plus/es/components/sub-menu/style/css',
|
'element-plus/es/components/sub-menu/style/css',
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,7 @@
|
||||||
"i": "pnpm install",
|
"i": "pnpm install",
|
||||||
"dev": "vite --mode env.local",
|
"dev": "vite --mode env.local",
|
||||||
"dev-server": "vite --mode dev",
|
"dev-server": "vite --mode dev",
|
||||||
"ts:check": "vue-tsc --noEmit",
|
"ts:check": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vue-tsc --noEmit",
|
||||||
"build:local": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build --mode env.local",
|
"build:local": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build --mode env.local",
|
||||||
"build:dev": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build --mode dev",
|
"build:dev": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build --mode dev",
|
||||||
"build:test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build --mode test",
|
"build:test": "cross-env NODE_OPTIONS=--max-old-space-size=8192 vite build --mode test",
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,6 @@
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="WMS 手册(功能开启)" url="https://doc.iocoder.cn/wms/build/" />
|
||||||
|
|
||||||
<div class="[--wms-card-radius:8px]">
|
<div class="[--wms-card-radius:8px]">
|
||||||
<div
|
<div
|
||||||
class="mb-16px flex flex-wrap justify-between gap-16px rounded-[var(--wms-card-radius)] border border-[var(--el-border-color-light)] border-solid bg-[var(--el-bg-color)] p-16px"
|
class="mb-16px flex flex-wrap justify-between gap-16px rounded-[var(--wms-card-radius)] border border-[var(--el-border-color-light)] border-solid bg-[var(--el-bg-color)] p-16px"
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 库存流水 -->
|
<!-- WMS 库存流水 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【库存】库存记录、流水、统计" url="https://doc.iocoder.cn/wms/inventory/" />
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
@ -154,7 +156,10 @@
|
||||||
<span>单价:</span>
|
<span>单价:</span>
|
||||||
<span>{{ formatPrice(scope.row.price) }}</span>
|
<span>{{ formatPrice(scope.row.price) }}</span>
|
||||||
</div>
|
</div>
|
||||||
<div v-if="scope.row.totalPrice || scope.row.totalPrice === 0" class="flex justify-between">
|
<div
|
||||||
|
v-if="scope.row.totalPrice || scope.row.totalPrice === 0"
|
||||||
|
class="flex justify-between"
|
||||||
|
>
|
||||||
<span>金额:</span>
|
<span>金额:</span>
|
||||||
<span>{{ formatPrice(scope.row.totalPrice) }}</span>
|
<span>{{ formatPrice(scope.row.totalPrice) }}</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 库存统计 -->
|
<!-- WMS 库存统计 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【库存】库存记录、流水、统计" url="https://doc.iocoder.cn/wms/inventory/" />
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 商品管理 -->
|
<!-- WMS 商品管理 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【基础】商品、SKU、分类、品牌" url="https://doc.iocoder.cn/wms/md/item/" />
|
||||||
|
|
||||||
<el-row :gutter="20">
|
<el-row :gutter="20">
|
||||||
<el-col :span="4" :xs="24">
|
<el-col :span="4" :xs="24">
|
||||||
<ContentWrap class="h-1/1">
|
<ContentWrap class="h-1/1">
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,10 @@
|
||||||
<!-- WMS 往来企业 -->
|
<!-- WMS 往来企业 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert
|
||||||
|
title="【基础】往来企业(供应商、客户)"
|
||||||
|
url="https://doc.iocoder.cn/wms/md/merchant/"
|
||||||
|
/>
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 仓库管理 -->
|
<!-- WMS 仓库管理 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【基础】仓库" url="https://doc.iocoder.cn/wms/md/warehouse/" />
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 盘库单 -->
|
<!-- WMS 盘库单 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【单据】盘库" url="https://doc.iocoder.cn/wms/order/check/" />
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 移库单 -->
|
<!-- WMS 移库单 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【单据】移库" url="https://doc.iocoder.cn/wms/order/movement/" />
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 入库单 -->
|
<!-- WMS 入库单 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【单据】入库" url="https://doc.iocoder.cn/wms/order/receipt/" />
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,7 @@
|
||||||
<!-- WMS 出库单 -->
|
<!-- WMS 出库单 -->
|
||||||
<template>
|
<template>
|
||||||
|
<doc-alert title="【单据】出库" url="https://doc.iocoder.cn/wms/order/shipment/" />
|
||||||
|
|
||||||
<ContentWrap>
|
<ContentWrap>
|
||||||
<!-- 搜索工作栏 -->
|
<!-- 搜索工作栏 -->
|
||||||
<el-form
|
<el-form
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue