Commit 4c60a4be authored by chenqikuai's avatar chenqikuai

也不知道怎么修复这个问题,先提交一点吧

parent 0f7f7970
......@@ -827,9 +827,9 @@
}
},
"cqk-sy-ui": {
"version": "1.2.41",
"resolved": "https://registry.npmjs.org/cqk-sy-ui/-/cqk-sy-ui-1.2.41.tgz",
"integrity": "sha512-ouB5CtNjdawsWinqJlfAn4YdsUb2O9hMWmmg2SOPPQRxxpmkxmNc5yPPmn34KASajpN9PihGWDkzH40sdfVmrQ==",
"version": "1.2.43",
"resolved": "https://registry.npmjs.org/cqk-sy-ui/-/cqk-sy-ui-1.2.43.tgz",
"integrity": "sha512-qjU3EwP+e4hJWvbR47E42c4oCmGcGn9sOXa8jVHujBqyXgEZawtsJXnrAzrOHg+OsvVQOKPRGd410HVBKiFnJg==",
"requires": {
"axios": "^0.26.1",
"crypto-js": "^4.1.1",
......
......@@ -16,7 +16,7 @@
"dependencies": {
"axios": "^0.26.1",
"comlink": "^4.3.1",
"cqk-sy-ui": "^1.2.41",
"cqk-sy-ui": "^1.2.43",
"crypto-js": "^4.1.1",
"element-plus": "^2.1.9",
"js-md5": "^0.7.3",
......
......@@ -10,9 +10,9 @@
/>
<Icon
v-if="TheBox.icon.tag === 'icon'"
:icon-name="TheBox.icon.iconName"
:icon-name="TheBox?.icon?.iconName"
style="font-size: 51px"
:style="TheBox.icon.style"
:style="TheBox?.icon?.style"
class="mx-auto"
></Icon>
<img
......@@ -20,7 +20,7 @@
:src="TheBox.icon.url"
class="mx-auto select-none"
draggable="false"
:style="TheBox.icon.style"
:style="TheBox?.icon?.style"
alt=""
/>
<div
......
......@@ -87,7 +87,13 @@ const menuList = [
type: "menuItem",
name: "藏品管理",
path: "/collectionManagement",
otherActivePath: ["/albumManagement", "/albumDetail", "/transferRecords"],
otherActivePath: [
"/albumManagement",
"/albumDetail",
"/transferRecords",
"/issuedAlbumDetail",
"/issuedDerivativesDetail",
],
icon: {
active: { iconName: "iconzichan21", props: { color: "#3A3A3A" } },
notActive: {
......
......@@ -8,7 +8,7 @@
<div
class="flex items-center justify-between overflow-hidden flex-shrink-0"
style="margin-top: 26px"
>
>
<Title
:title="[
{
......
......@@ -37,7 +37,7 @@ export default defineConfig({
rollupOptions: {
output: {
manualChunks: {
__SignIn: ["./src/views/SignIn.vue"],
// __SignIn: ["./src/views/SignIn.vue"],
// __category: ["./src/views/category/Index.vue"],
__recycleBin: ["./src/views/category/recycleBin.vue"],
__templateManagement: ["./src/views/category/templateManagement.vue"],
......@@ -50,6 +50,9 @@ export default defineConfig({
__AlbumManagement: [
"./src/views/Collection/AlbumManagement/index.vue",
],
__issuedBatchesDetail: [
"./src/views/Collection/IssuedBatchesDetail/index.vue",
],
__AlbumDetail: ["./src/views/Collection/AlbumDetail/index.vue"],
__TransferRecords: [
"./src/views/Collection/TransferRecords/index.vue",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment