From 57f334ce8c79887612fd9aafbd9618e6e43f62e4 Mon Sep 17 00:00:00 2001
From: huminmin <mac@MacBook-Pro.local>
Date: 星期四, 19 三月 2026 14:09:24 +0800
Subject: [PATCH] 库存详情中,序号改为对应的产品类型(仓库是原材料、成品,耗材对应的是耗材),下面添加备注展示

---
 src/utils/auth.ts |   13 +++++++++++++
 1 files changed, 13 insertions(+), 0 deletions(-)

diff --git a/src/utils/auth.ts b/src/utils/auth.ts
new file mode 100644
index 0000000..7a2d227
--- /dev/null
+++ b/src/utils/auth.ts
@@ -0,0 +1,13 @@
+const TokenKey = 'App-Token'
+
+export function getToken():string {
+  return uni.getStorageSync(TokenKey)
+}
+
+export function setToken(token:string) {
+  return uni.setStorageSync(TokenKey, token)
+}
+
+export function removeToken() {
+  return uni.removeStorageSync(TokenKey)
+}

--
Gitblit v1.9.3