修改工作区下载逻辑;云端文件夹基本功能已完成。

This commit is contained in:
2026-07-01 11:35:20 +08:00
parent 488bebcc87
commit 3544208baa
8 changed files with 3722 additions and 863 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -62,7 +62,10 @@
"<uses-permission android:name=\"android.permission.WAKE_LOCK\"/>",
"<uses-permission android:name=\"android.permission.FLASHLIGHT\"/>",
"<uses-feature android:name=\"android.hardware.camera\"/>",
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>"
"<uses-permission android:name=\"android.permission.WRITE_SETTINGS\"/>",
"<uses-permission android:name=\"android.permission.READ_EXTERNAL_STORAGE\"/>",
"<uses-permission android:name=\"android.permission.WRITE_EXTERNAL_STORAGE\"/>",
"<uses-permission android:name=\"android.permission.MANAGE_EXTERNAL_STORAGE\"/>"
]
},
"apple": {

View File

@@ -878,6 +878,28 @@
background: #3b86ff;
font-weight: 500;
}
.team-info[data-v-51006ffb] {
margin-top: 0.4375rem;
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.375rem;
}
.team-type-tag[data-v-51006ffb] {
font-size: 0.6875rem;
color: #3b86ff;
background: rgba(59, 134, 255, 0.1);
padding: 0.1875rem 0.5rem;
border-radius: 0.25rem;
font-weight: 500;
}
.team-desc-text[data-v-51006ffb] {
font-size: 0.75rem;
color: #999;
line-height: 1.5;
flex: 1;
min-width: 0;
}
.select-team-tip[data-v-51006ffb] {
padding: 2.5rem 0;
}
@@ -1052,6 +1074,10 @@
color: #3b86ff;
background: rgba(59, 134, 255, 0.1);
}
.member-role.member[data-v-51006ffb] {
color: #67c23a;
background: rgba(103, 194, 58, 0.1);
}
.member-actions-right[data-v-51006ffb] {
display: flex;
gap: 0.25rem;
@@ -1065,6 +1091,10 @@
color: #3b86ff;
border: 0.03125rem solid #3b86ff;
}
.demote-admin[data-v-51006ffb] {
color: #e6a23c;
border: 0.03125rem solid #e6a23c;
}
.remove-member[data-v-51006ffb] {
color: #f56c6c;
border: 0.03125rem solid #f56c6c;
@@ -1094,6 +1124,78 @@
font-size: 0.75rem;
padding: 0.4375rem 1rem;
}
/* 搜索结果列表 */
.search-result-list[data-v-51006ffb] {
margin-top: 0.5rem;
border-radius: 0.4375rem;
overflow: hidden;
background: #f8f9fc;
}
.search-result-item[data-v-51006ffb] {
display: flex;
align-items: center;
padding: 0.5625rem 0.625rem;
border-bottom: 0.03125rem solid #eee;
}
.search-result-item[data-v-51006ffb]:last-child {
border-bottom: none;
}
.search-result-item[data-v-51006ffb]:active {
background: rgba(59, 134, 255, 0.05);
}
.result-avatar[data-v-51006ffb] {
width: 2rem;
height: 2rem;
border-radius: 50%;
flex-shrink: 0;
margin-right: 0.5rem;
}
.result-default-avatar[data-v-51006ffb] {
width: 2rem;
height: 2rem;
border-radius: 50%;
background: linear-gradient(135deg, #3b86ff, #6db3ff);
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-right: 0.5rem;
}
.result-info[data-v-51006ffb] {
flex: 1;
min-width: 0;
display: flex;
flex-direction: column;
gap: 0.125rem;
}
.result-name[data-v-51006ffb] {
font-size: 0.875rem;
color: #333;
font-weight: 500;
}
.result-email[data-v-51006ffb] {
font-size: 0.6875rem;
color: #999;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.result-add-btn[data-v-51006ffb] {
flex-shrink: 0;
font-size: 0.75rem;
color: #3b86ff;
padding: 0.3125rem 0.75rem;
border: 0.03125rem solid #3b86ff;
border-radius: 0.625rem;
}
.search-empty[data-v-51006ffb] {
margin-top: 0.5rem;
text-align: center;
font-size: 0.75rem;
color: #bbb;
padding: 0.625rem 0;
}
.folder-null[data-v-51006ffb] {
display: flex;
flex-direction: column;
@@ -1108,9 +1210,69 @@
font-size: 2rem;
color: #ddd;
}
/* 删除团队 */
.delete-team-section[data-v-51006ffb] {
border-top: 0.03125rem solid #eee;
padding-top: 0.625rem;
margin-top: 0.3125rem;
}
.delete-team-btn[data-v-51006ffb] {
text-align: center;
padding: 0.5625rem;
font-size: 0.8125rem;
color: #e74c3c;
background: rgba(231, 76, 60, 0.06);
border-radius: 0.4375rem;
border: 0.03125rem solid rgba(231, 76, 60, 0.2);
}
.delete-team-btn[data-v-51006ffb]:active {
background: rgba(231, 76, 60, 0.12);
}
/* 修改团队信息 */
.edit-team-section[data-v-51006ffb] {
border-top: 0.03125rem solid #eee;
padding-top: 0.625rem;
margin-top: 0.3125rem;
}
.edit-team-btn[data-v-51006ffb] {
text-align: center;
padding: 0.5625rem;
font-size: 0.8125rem;
color: #3b86ff;
background: rgba(59, 134, 255, 0.06);
border-radius: 0.4375rem;
border: 0.03125rem solid rgba(59, 134, 255, 0.2);
}
.edit-team-btn[data-v-51006ffb]:active {
background: rgba(59, 134, 255, 0.12);
}
.edit-team-form[data-v-51006ffb] {
margin-bottom: 0.3125rem;
}
.form-label[data-v-51006ffb] {
font-size: 0.8125rem;
color: #666;
margin-bottom: 0.25rem;
margin-top: 0.5625rem;
}
.text-btn[data-v-51006ffb] {
padding: 0.25rem 0.625rem;
border-radius: 0.9375rem;
font-size: 14px;
font-weight: 500;
}
/* ===== 上传文件弹窗 ===== */
.upload-path-label[data-v-51006ffb] {
font-size: 0.8125rem;
color: #666;
margin-bottom: 0.3125rem;
}
.upload-path-hint[data-v-51006ffb] {
font-size: 0.6875rem;
color: #999;
margin-bottom: 0.625rem;
text-align: center;
}