This commit is contained in:
IT 老营长 @云轩领航-创始人 2025-06-13 09:38:41 +08:00
parent db7fbdfa1c
commit e769815ce6
7 changed files with 490 additions and 17 deletions

15
go.mod
View File

@ -3,15 +3,16 @@ module shylinux.com/x/community
go 1.21
require (
shylinux.com/x/enterprise v0.0.14
shylinux.com/x/golang-story v0.0.32
shylinux.com/x/mysql-story v0.6.32
shylinux.com/x/enterprise v0.0.17
shylinux.com/x/golang-story v0.0.33
shylinux.com/x/mysql-story v0.6.33
shylinux.com/x/operation v0.0.14
)
require (
shylinux.com/x/ice v1.5.74
shylinux.com/x/icebergs v1.9.76
shylinux.com/x/toolkits v1.0.19
shylinux.com/x/ice v1.5.75
shylinux.com/x/icebergs v1.9.77
shylinux.com/x/toolkits v1.0.20
)
require (
@ -30,6 +31,8 @@ require (
)
require (
2025-dev.shylinux.com/x/20250211-service v0.0.6 // indirect
2025-dev.shylinux.com/x/20250215-cluster v0.0.7 // indirect
filippo.io/edwards25519 v1.1.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/emersion/go-imap v1.2.1 // indirect

32
go.sum
View File

@ -1,3 +1,8 @@
2025-dev.shylinux.com/x/20250211-service v0.0.6 h1:FOQ6Z+eHsY+3qfIoKHjblbIs6BUyHPq1xGK1wvFdfXo=
2025-dev.shylinux.com/x/20250211-service v0.0.6/go.mod h1:iHH7uHRP7WasG19pNjujlXwZFjJqzX3dS0/T1imfsj0=
2025-dev.shylinux.com/x/20250215-cluster v0.0.6/go.mod h1:4sbNfB+nBVmIpRSzVlY+uiEQv44JdPfwwBpwWzbQktw=
2025-dev.shylinux.com/x/20250215-cluster v0.0.7 h1:GhQImaF6RbliJ6467gdeB4AVzCNyz5LwmA9AeCphEvo=
2025-dev.shylinux.com/x/20250215-cluster v0.0.7/go.mod h1:rhNacwQogLrmiNkmoptqpKY9ieRXAhVHenHwZRcdBB8=
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
github.com/agiledragon/gomonkey v2.0.2+incompatible h1:eXKi9/piiC3cjJD1658mEE2o3NjkJ5vDLgYjCQu0Xlw=
@ -190,25 +195,30 @@ modernc.org/strutil v1.1.3/go.mod h1:MEHNA7PdEnEwLvspRMtWTNnp2nnyvMfkimT1NKNAGbw
modernc.org/tcl v1.15.2/go.mod h1:3+k/ZaEbKrC8ePv8zJWPtBSW0V7Gg9g8rkmhI1Kfs3c=
modernc.org/token v1.0.1/go.mod h1:UGzOrNV1mAFSEB63lOFHIpNRUVMvYTc6yu1SMY/XTDM=
modernc.org/z v1.7.3/go.mod h1:Ipv4tsdxZRbQyLq9Q1M6gdbkxYzdlrciF2Hi/lS7nWE=
shylinux.com/x/enterprise v0.0.14 h1:gxxAtMt4sLy8+HN10jJipZ6xa0it/rllZZGKwWILJ2Q=
shylinux.com/x/enterprise v0.0.14/go.mod h1:RR4LfgQMgy8ckZuga6pEvEl9TxF3gbfHN+Mh3Jhk1GI=
shylinux.com/x/enterprise v0.0.17 h1:29VjNHt4YiPryQGNtVTnYqiXNHxau4EnkoUDzlxgB6Y=
shylinux.com/x/enterprise v0.0.17/go.mod h1:+DmZbYMykX5U65BJ7DYOcwFubslKa2b78DyRaqUYuH4=
shylinux.com/x/go-git/v5 v5.6.7 h1:WD5QSco7m3QooPCgdvQ6/GyGIFPun8C+hex5N41LYlk=
shylinux.com/x/go-git/v5 v5.6.7/go.mod h1:Qb0lA+uIrofZg8NQerhYcJHgGWixFqvS6p3aJ/L5Nlk=
shylinux.com/x/go-qrcode v0.0.3 h1:RMo+Vidbgq3HatLBj7DDXcTbTLFUwzis5K7TqBkD38U=
shylinux.com/x/go-qrcode v0.0.3/go.mod h1:KAbtU+KwiiABMZ/CJ0zh9PI2AX82Uf9rRYcQ4ODm4po=
shylinux.com/x/go-sql-mysql v0.0.2/go.mod h1:lHjRMZz5Lii6U+49fhkbCWgsnL+yux54SYJYWqASN8Y=
shylinux.com/x/golang-story v0.0.32 h1:7xu28iREL2cuZzf80luJwI9BWptow+ME00L1lgyjmDI=
shylinux.com/x/golang-story v0.0.32/go.mod h1:NsI5fULu3q7o2b+VzZ5tiJ3+0pUTjE9DdQxa870htmw=
shylinux.com/x/golang-story v0.0.33 h1:QRu21+smDBEfEf5lczmu4T6lOZynm7LA4pys3bolo9s=
shylinux.com/x/golang-story v0.0.33/go.mod h1:/QdUqQzP/O0h3UCi29LUYv1K6beSe9sll+KlgvQJK3M=
shylinux.com/x/ice v1.5.72/go.mod h1:ouTMN0stkJu1RGAQrMHrGj/BqDynyD1VV53shR9zQm4=
shylinux.com/x/ice v1.5.73/go.mod h1:uGI73gYkk+FiJt5qmy/aYhoKRJ4wobcJk3WrPGh8Waw=
shylinux.com/x/ice v1.5.74 h1:5hTPmchO79b1d2+/DwBDLiG2WkTL65G/hOEAcGJVeB8=
shylinux.com/x/ice v1.5.74/go.mod h1:/XAib8Ha+z6jzLRs2Pig+qxDx4C8dT8Vfaq2InJ/lkU=
shylinux.com/x/ice v1.5.75 h1:lYsJRNaO5XAC4hX/TK3xNrCG9Mxvsr1MJVBALg3p1H4=
shylinux.com/x/ice v1.5.75/go.mod h1:94PDujxSBOYfNOgT85JoUXT1phLiMXde2i1fAup6+ZM=
shylinux.com/x/icebergs v1.9.73/go.mod h1:3Bdp3tjzw+hUKJF+kR8pfsrbjAf72DVZmCaE8/MPFtk=
shylinux.com/x/icebergs v1.9.75/go.mod h1:3Bdp3tjzw+hUKJF+kR8pfsrbjAf72DVZmCaE8/MPFtk=
shylinux.com/x/icebergs v1.9.76 h1:SHOTbiO+jh09GEFzoo8t8kmR1BCu+zkNCpdfxPCLeu0=
shylinux.com/x/icebergs v1.9.76/go.mod h1:3Bdp3tjzw+hUKJF+kR8pfsrbjAf72DVZmCaE8/MPFtk=
shylinux.com/x/mysql-story v0.6.32 h1:Q274WFJ09ocnf8nhlQnKr02FMMdPYBLWqu2IjTVqGiM=
shylinux.com/x/mysql-story v0.6.32/go.mod h1:8HCeDUV6ghaIeJD1IEhSeSOfVC9wEI93y2G9QBLtJJY=
shylinux.com/x/icebergs v1.9.77 h1:wkgm77t0s3M/IBQMlfwhjlYcGJo9C3ZrVHuYQtTOz8w=
shylinux.com/x/icebergs v1.9.77/go.mod h1:F0sIQU0OP3YBMdd2goC6EKAQHAKzq1I08MMIfBo0yLo=
shylinux.com/x/mysql-story v0.6.33 h1:BdJf6mtKmXsKa+AasPtVU+m7EAjVKPzVqxNap0dPQj8=
shylinux.com/x/mysql-story v0.6.33/go.mod h1:pVmBXAbOUHduFvskriplrEIfbK+kCMBxStgfgc5Rxl8=
shylinux.com/x/operation v0.0.14 h1:tS8JOJwrM6ZpO6WmvQ0Fpl4vOOx0PcyC+7eq1j5aFwY=
shylinux.com/x/operation v0.0.14/go.mod h1:QYPjnjzoWh9VMpU8GJU2wL06djzBHhZzif5nhnjJMCE=
shylinux.com/x/toolkits v0.7.10/go.mod h1:CHDJarGlDkg60kVsvMLYL/a5hAnRLEOShiEsMOuEp0Q=
shylinux.com/x/toolkits v1.0.19 h1:Nrx0xYRc5ph1WS66EZ1hJUCe+2FdSWQ4QP6tBlguikQ=
shylinux.com/x/toolkits v1.0.19/go.mod h1:CHDJarGlDkg60kVsvMLYL/a5hAnRLEOShiEsMOuEp0Q=
shylinux.com/x/toolkits v1.0.20 h1:uBnfyyqDsbSWYsXfXmBugZ8ZWp5QQ8sthrzRdJ6ET90=
shylinux.com/x/toolkits v1.0.20/go.mod h1:CHDJarGlDkg60kVsvMLYL/a5hAnRLEOShiEsMOuEp0Q=
shylinux.com/x/websocket v0.0.4 h1:AJpwblePoOpiE6C8NrvgNYpKTotXMLrDDX2chTvx44Q=
shylinux.com/x/websocket v0.0.4/go.mod h1:3UGWkjTu3ie5NAZen7J+uLPBrO7DFeKloj6Jxo13Oiw=

View File

@ -12,6 +12,18 @@
"type": "view"
}
},
"1acab83a5952361da7a970ce996e9a5b": {
"meta": {
"index": "web.team.jiaowuxitong.portal",
"name": "教务系统",
"river": "2",
"scene": "main",
"space": "20240724-education",
"storm": "2",
"time": "2024-08-27 22:18:56.908",
"type": "view"
}
},
"40ba2f5011f0b96119fcd3cc0063d407": {
"meta": {
"args": "?story_uid=7d3880d3f70acec5337d5f832ef71103#:web.team.production.market",

View File

@ -18,6 +18,17 @@
"time": "2025-06-03 12:37:47.975"
}
},
"22574299a657140d473f0216b8d83710": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/documents.png",
"index": "web.team.gonganxitong.document",
"name": "在线文档",
"order": "94",
"role": "landlord,tenant,admin",
"time": "2024-11-25 15:33:24.095"
}
},
"27c6988eeb07c78cbb49aa15c577cfa4": {
"meta": {
"icons": "bi bi-pencil-square",
@ -38,6 +49,18 @@
"time": "2025-06-04 13:20:29.448"
}
},
"2f80f1821b55a90555f630def20387be": {
"meta": {
"auth": "issued",
"enable": "false",
"icons": "https://img.icons8.com/officel/80/agreement.png",
"index": "web.team.gonganxitong.contract",
"name": "在线合同",
"order": "95",
"role": "landlord,tenant",
"time": "2024-11-24 09:19:03.732"
}
},
"3971882ea4f32c86386ad04b39d3e3d4": {
"meta": {
"icons": "bi bi-ubuntu",
@ -47,6 +70,28 @@
"time": "2025-06-03 12:35:46.315"
}
},
"55ff6002f602327674ed6d4616023184": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/online-store.png",
"index": "web.team.gonganxitong.goodslist",
"name": "在线商城",
"order": "91",
"role": "landlord,tenant",
"time": "2024-12-04 16:39:42.225"
}
},
"882a999b4a72a9866d9e4eef110d335a": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/ios-photos.png",
"index": "web.team.gonganxitong.photo",
"name": "在线相册",
"order": "96",
"role": "landlord,tenant,admin",
"time": "2024-11-25 16:22:57.607"
}
},
"8ce4dfb877e04e3be5144253fdd5d8ff": {
"meta": {
"icons": "bi bi-clipboard-check",
@ -75,6 +120,22 @@
"time": "2025-06-03 12:37:47.974"
}
},
"b07b1f652f5b2557c0b20e813fcf99d2": {
"meta": {
"icons": "https://img.icons8.com/officel/80/qr-code.png",
"index": "web.team.gonganxitong.street",
"name": "街道信息",
"time": "2024-09-24 20:44:05.455"
}
},
"ba00879066bbcea83e30cda292d28a91": {
"meta": {
"icons": "https://img.icons8.com/officel/80/qr-code.png",
"index": "web.team.gonganxitong.user",
"name": "用户信息",
"time": "2024-09-24 20:44:05.458"
}
},
"bdec92d5849b2a60a8811cff494f2391": {
"meta": {
"icons": "bi bi-calendar4-week",
@ -104,6 +165,25 @@
"time": "2025-06-03 12:37:47.974"
}
},
"cbfda09ef49108ad9addf5117bcb54ce": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/online-payment-with-a-credit-card.png",
"index": "web.team.gonganxitong.paymentlist",
"name": "在线支付",
"order": "92",
"role": "landlord,tenant",
"time": "2024-11-22 11:37:54.098"
}
},
"d8443c1034bfe5917c52126a3306c328": {
"meta": {
"icons": "https://img.icons8.com/officel/80/qr-code.png",
"index": "web.team.gonganxitong.city",
"name": "城市信息",
"time": "2024-09-24 20:44:05.449"
}
},
"d86e4e63183c8fae4ceb50498b0bcfde": {
"meta": {
"icons": "bi bi-grid-3x2-gap",
@ -124,6 +204,17 @@
"time": "2025-06-03 12:37:47.975"
}
},
"f24b53f61852f58734f9ef8488705026": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/video-conference.png",
"index": "web.team.gonganxitong.meeting",
"name": "在线会议",
"order": "93",
"role": "landlord,tenant,admin",
"time": "2024-11-19 15:35:47.453"
}
},
"f28c03b5bdbbe92ebc89dabca5e7d4de": {
"meta": {
"icons": "/p/src/gonganxitong/member.png",
@ -142,5 +233,15 @@
"order": "902",
"time": "2025-06-03 12:35:46.287"
}
},
"fd86aad80a667152781bb188fb1249a2": {
"meta": {
"enable": "false",
"icons": "https://img.icons8.com/officel/80/reading-confirmation.png",
"index": "web.team.gonganxitong.email",
"name": "邮箱配置",
"order": "2",
"time": "2024-12-05 21:10:27.441"
}
}
}

View File

@ -1,4 +1,22 @@
{
"1e158e9083bfe07ac5a35353fdcdf62e": {
"meta": {
"icons": "/p/src/huodongzuzhi/src/gonganxitong/spendlist.png",
"index": "web.team.huodongzuzhi.spendlist",
"time": "2025-04-19 08:28:11.641"
}
},
"2c5f42d846b438a22e62b19617ebf511": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/online-store.png",
"index": "web.team.huodongzuzhi.goodslist",
"name": "在线商城",
"order": "91",
"role": "leader,worker",
"time": "2024-12-04 16:43:56.566"
}
},
"3229a1bc7aa326822c4f4f267e038185": {
"meta": {
"icons": "/p/src/gonganxitong/member.png?pod=20240724-community",
@ -9,6 +27,35 @@
"time": "2025-06-04 14:05:39.363"
}
},
"3745803fab1393312d3e1d2e589e1e9f": {
"meta": {
"icons": "/p/src/huodongzuzhi/src/gonganxitong/quotalist.png",
"index": "web.team.huodongzuzhi.quotalist",
"time": "2025-04-19 08:28:11.635"
}
},
"3e9e80db9ae3768b7a44774c7afa5f65": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/agreement.png",
"index": "web.team.huodongzuzhi.contract",
"name": "在线合同",
"order": "94",
"role": "leader,worker",
"time": "2024-11-25 18:11:44.294"
}
},
"49432b349d456f4108dcfa7d28435bac": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/documents.png",
"index": "web.team.huodongzuzhi.document",
"name": "在线文档",
"order": "93",
"role": "leader,worker",
"time": "2024-11-25 18:19:23.750"
}
},
"595eb34d7ebe62e160c02ed5b127d637": {
"meta": {
"icons": "bi bi-card-checklist",
@ -112,6 +159,39 @@
"time": "2025-06-04 14:05:39.329"
}
},
"dc71c0eee278a0f9eb9bbb9ee3d9d6f0": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/video-conference.png",
"index": "web.team.huodongzuzhi.meeting",
"name": "在线会议",
"order": "91",
"role": "leader,worker",
"time": "2024-11-19 15:35:47.287"
}
},
"e5ce14fa8331355abad8cc68c25c74a4": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/ios-photos.png",
"index": "web.team.huodongzuzhi.photo",
"name": "在线相册",
"order": "95",
"role": "leader,worker",
"time": "2024-11-25 18:11:44.292"
}
},
"ed9cb73417ae9e3e63526f1c459e9c7b": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/online-payment-with-a-credit-card.png",
"index": "web.team.huodongzuzhi.paymentlist",
"name": "在线支付",
"order": "92",
"role": "leader,worker",
"time": "2024-11-22 17:42:50.775"
}
},
"ee364ed77eb0383868d48260f8b5aeb2": {
"meta": {
"icons": "bi bi-megaphone",

View File

@ -1,4 +1,16 @@
{
"015b4784c16b63975824abbb3ff4ec9f": {
"meta": {
"auth": "issued",
"enable": "false",
"icons": "https://img.icons8.com/officel/80/ios-photos.png",
"index": "web.team.renzhengshouquan.photo",
"name": "在线相册",
"order": "96",
"role": "leader,worker",
"time": "2024-11-25 18:11:44.117"
}
},
"0d7f068029dbf7f9f0d307070cc3a79b": {
"meta": {
"icons": "bi bi-clipboard-check",
@ -9,6 +21,55 @@
"time": "2025-06-04 14:05:39.240"
}
},
"1c4fee90e6a7bdb8ab6f1ccb23f3273f": {
"meta": {
"auth": "issued",
"enable": "false",
"icons": "https://img.icons8.com/officel/80/documents.png",
"index": "web.team.renzhengshouquan.document",
"name": "在线文档",
"order": "95",
"role": "leader,worker",
"time": "2024-11-25 18:19:23.561"
}
},
"1d15ae175ffe375630da1466417d2d5d": {
"meta": {
"auth": "issued",
"enable": "false",
"icons": "https://img.icons8.com/officel/80/agreement.png",
"index": "web.team.renzhengshouquan.contract",
"name": "在线合同",
"order": "94",
"role": "leader,worker",
"time": "2024-11-25 18:11:44.121"
}
},
"1d5fb457d3223d26afd076c38d7daf66": {
"meta": {
"icons": "/p/src/renzhengshouquan/src/gonganxitong/quotalist.png",
"index": "web.team.renzhengshouquan.quotalist",
"time": "2025-04-19 08:28:11.519"
}
},
"1d7c44014bc23b3db4551534359c95c4": {
"meta": {
"icons": "https://img.icons8.com/officel/80/video-conference.png",
"index": "web.team.renzhengshouquan.external.tencentmeeting.tencentmeeting",
"name": "腾讯会议",
"order": "12",
"role": "leader,worker",
"time": "2024-11-19 11:33:13.771",
"type": "company,school,street"
}
},
"21887f37ce8dabe4c52648ea096f8e4d": {
"meta": {
"icons": "/p/src/renzhengshouquan/src/gonganxitong/spendlist.png",
"index": "web.team.renzhengshouquan.spendlist",
"time": "2025-04-19 08:28:11.518"
}
},
"26c6b80577a23afcd2c10fcfea0c0f63": {
"meta": {
"auth": "issued",
@ -41,6 +102,17 @@
"time": "2025-06-04 14:05:39.277"
}
},
"46e7154975448d8835e3ab1ff48ea89a": {
"meta": {
"icons": "https://img.icons8.com/officel/80/stack-of-photos.png",
"index": "web.team.renzhengshouquan.external.tencentcloud.smh.smh",
"name": "智能媒资托管",
"order": "16",
"role": "leader,worker",
"time": "2024-11-29 11:19:22.807",
"type": "company,school,street"
}
},
"4cac9ca99ccb8db395f703434647f5f3": {
"meta": {
"icons": "/p/src/gonganxitong/setting.png?pod=20240724-community",
@ -51,6 +123,18 @@
"time": "2025-06-04 14:05:39.240"
}
},
"4f39828c162621991f20cce2454cb5e3": {
"meta": {
"icons": "https://img.icons8.com/officel/80/weixing.png",
"index": "web.team.renzhengshouquan.external.weixinpayment.weixinpayment",
"name": "微信支付",
"order": "11",
"role": "leader,worker",
"time": "2024-11-22 10:58:05.763",
"type": "root",
"view": "tech"
}
},
"52fb3a7d85d879b638cc246850b236f6": {
"meta": {
"icons": "bi bi-qr-code",
@ -61,6 +145,31 @@
"time": "2025-06-04 14:05:39.237"
}
},
"6806548eeea33ee2118c520a60bc7e4b": {
"meta": {
"auth": "issued",
"enable": "true",
"icons": "https://img.icons8.com/officel/80/online-store.png",
"index": "web.team.renzhengshouquan.goodslist",
"name": "在线商城",
"order": "91",
"role": "leader,worker",
"time": "2024-12-04 16:43:56.540",
"type": "company,school,street,service"
}
},
"692895230d60d29c2a56531f81927efb": {
"meta": {
"icons": "https://img.icons8.com/officel/80/cloud.png",
"index": "web.team.renzhengshouquan.external.tencentcloud.tencentcloud",
"name": "腾讯云",
"order": "15",
"role": "leader,worker",
"time": "2024-11-25 20:45:31.111",
"type": "root",
"view": "tech"
}
},
"732373815fa26c85ad04dd57ca57db39": {
"meta": {
"icons": "bi bi-pencil-square",
@ -92,6 +201,19 @@
"type": "company"
}
},
"7a3a6cdf6eebd575950694ee28a8452e": {
"meta": {
"auth": "issued",
"enable": "true",
"icons": "https://img.icons8.com/officel/80/online-payment-with-a-credit-card.png",
"index": "web.team.renzhengshouquan.paymentlist",
"name": "在线支付",
"order": "92",
"role": "leader,worker",
"time": "2024-11-22 17:42:50.659",
"type": "company,school,street,service"
}
},
"83f5f7ed321eeee6827add7a03947102": {
"meta": {
"auth": "issued",
@ -102,6 +224,18 @@
"time": "2025-06-04 14:05:39.275"
}
},
"8780d5d1b9b5608cef9098e9393c0cb4": {
"meta": {
"icons": "https://img.icons8.com/officel/80/video-conference.png",
"index": "web.team.renzhengshouquan.external.tencentcloud.realname.realname",
"name": "实名验证",
"order": "18",
"role": "leader,worker",
"time": "2024-11-26 14:42:04.095",
"type": "root",
"view": "tech"
}
},
"89cf6f6cc69c13b7d541a0d61eae66e1": {
"meta": {
"icons": "https://img.icons8.com/officel/80/identification-documents--v2.png",
@ -143,6 +277,35 @@
"time": "2025-06-04 14:05:39.279"
}
},
"b0a322b1aeb3772b09477be3e47c8e89": {
"meta": {
"index": "web.team.renzhengshouquan.domain",
"time": "2024-09-07 08:23:04.033"
}
},
"b8ed900b12de88d7bc186649bef1108b": {
"meta": {
"icons": "https://img.icons8.com/officel/80/documents.png",
"index": "web.team.renzhengshouquan.external.tencentdocument.tencentdocument",
"name": "腾讯文档",
"order": "13",
"role": "leader,worker",
"time": "2024-12-01 21:29:51.770",
"type": "company,school,street"
}
},
"bdf8a62a495ddba04e61bc457ed5fc25": {
"meta": {
"icons": "https://img.icons8.com/officel/80/sms.png",
"index": "web.team.renzhengshouquan.external.tencentcloud.sms.sms",
"name": "发送短信",
"order": "17",
"role": "leader,worker",
"time": "2024-11-26 20:23:46.898",
"type": "root",
"view": "tech"
}
},
"bfecb55b11fe68186270fe1b4b8de8cf": {
"meta": {
"icons": "/p/src/gonganxitong/member.png?pod=20240724-community",
@ -153,6 +316,18 @@
"time": "2025-06-04 14:05:39.234"
}
},
"c9eeca8509b5b055149a5593312436cd": {
"meta": {
"auth": "issued",
"enable": "false",
"icons": "https://img.icons8.com/officel/80/video-conference.png",
"index": "web.team.renzhengshouquan.meeting",
"name": "在线会议",
"order": "93",
"role": "leader,worker",
"time": "2024-11-19 15:35:47.185"
}
},
"d9f55b517f4b2579693523ed3b5bd088": {
"meta": {
"icons": "bi bi-ubuntu",
@ -162,6 +337,18 @@
"time": "2025-06-04 14:05:39.281"
}
},
"dcdc0894036f440763b00cad63e6d649": {
"meta": {
"icons": "https://img.icons8.com/officel/80/stack-of-photos.png",
"index": "web.team.renzhengshouquan.external.tencentcloud.tke.tke",
"name": "容器服务",
"order": "17",
"role": "leader,worker",
"time": "2025-02-24 14:42:58.192",
"type": "root",
"view": "tech"
}
},
"e038450591f3c8e7babc0c21b1c6fa6d": {
"meta": {
"icons": "bi bi-clock-history",

View File

@ -7,6 +7,17 @@
"time": "2025-06-04 14:04:37.901"
}
},
"182e191dda10c617c12a7c9147737dc6": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/agreement.png",
"index": "web.team.yuehaoxitong.contract",
"name": "在线合同",
"order": "94",
"role": "leader,worker",
"time": "2024-11-25 18:11:44.106"
}
},
"1931ecf1d36391b72df54d374a91c8ed": {
"meta": {
"icons": "https://img.icons8.com/officel/80/meeting-room.png",
@ -33,6 +44,17 @@
"time": "2025-06-04 14:04:37.902"
}
},
"30440192e9e1730d1d899dcc16bd5cab": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/video-conference.png",
"index": "web.team.yuehaoxitong.meeting",
"name": "在线会议",
"order": "91",
"role": "leader,worker",
"time": "2024-11-19 15:35:47.179"
}
},
"377f3c0dae9dbf423a8e188bfd245b7a": {
"meta": {
"icons": "bi bi-clock-history",
@ -72,6 +94,17 @@
"time": "2025-06-04 14:04:37.899"
}
},
"59c5421cb9edd56bf243924daf55d891": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/online-store.png",
"index": "web.team.yuehaoxitong.goodslist",
"name": "在线商城",
"order": "91",
"role": "leader,worker",
"time": "2024-12-04 16:43:56.282"
}
},
"75c5c1863c1bdaf0bcbd3065b661528d": {
"meta": {
"icons": "https://img.icons8.com/officel/80/calling.png",
@ -88,6 +121,24 @@
"time": "2025-06-04 14:04:37.844"
}
},
"79934714b27083087d2ea771e19192d3": {
"meta": {
"icons": "/p/src/yuehaoxitong/src/gonganxitong/spendlist.png",
"index": "web.team.yuehaoxitong.spendlist",
"time": "2025-04-19 08:28:11.381"
}
},
"8d3a66184c4da374081216d6c4d491b5": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/online-payment-with-a-credit-card.png",
"index": "web.team.yuehaoxitong.paymentlist",
"name": "在线支付",
"order": "92",
"role": "leader,worker",
"time": "2024-11-22 17:42:50.642"
}
},
"98d6d53a44113b33a82c4e914cb23489": {
"meta": {
"icons": "bi bi-card-checklist",
@ -97,6 +148,17 @@
"time": "2025-06-04 14:04:37.847"
}
},
"a3d526b8fc09121a7186775cca6d9026": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/ios-photos.png",
"index": "web.team.yuehaoxitong.photo",
"name": "在线相册",
"order": "95",
"role": "leader,worker",
"time": "2024-11-25 18:11:44.112"
}
},
"a4ec355ea73596847448805be1610cb4": {
"meta": {
"icons": "bi bi-recycle",
@ -170,6 +232,24 @@
"time": "2025-06-04 14:04:37.896"
}
},
"ca139b34295fc6d13d97430764cf3334": {
"meta": {
"icons": "/p/src/yuehaoxitong/src/gonganxitong/quotalist.png",
"index": "web.team.yuehaoxitong.quotalist",
"time": "2025-04-19 08:28:11.483"
}
},
"cb5d53223069ec8d9914ec30ca84ec4a": {
"meta": {
"auth": "issued",
"icons": "https://img.icons8.com/officel/80/documents.png",
"index": "web.team.yuehaoxitong.document",
"name": "在线文档",
"order": "93",
"role": "leader,worker",
"time": "2024-11-25 18:19:23.441"
}
},
"d1e03d214890c9a4b9557d3f6a36c7e9": {
"meta": {
"icons": "bi bi-box",