diff --git a/src/storage/storage.js b/src/storage/storage.js
new file mode 100644
index 0000000..7111106
--- /dev/null
+++ b/src/storage/storage.js
@@ -0,0 +1,12 @@
+export const storage = {
+ set(key, value) {
+ localStorage.setItem(key, JSON.stringify(value));
+ },
+ get(key) {
+ const value = localStorage.getItem(key);
+ return value ? JSON.parse(value) : null;
+ },
+ remove(key) {
+ localStorage.removeItem(key);
+ }
+}
\ No newline at end of file
diff --git a/src/views/product/index.vue b/src/views/product/index.vue
index 25e3823..51719a8 100644
--- a/src/views/product/index.vue
+++ b/src/views/product/index.vue
@@ -1,7 +1,9 @@
@@ -162,6 +245,7 @@ onMounted(
{{
scope.row.prd_doc_link.length > 30 ? scope.row.prd_doc_link.slice(0, 30) + '...' : scope.row.prd_doc_link
@@ -170,7 +254,7 @@ onMounted(
-
+
-
+
+
+ {{ scope.row.update_at }}有更新
+
+