This commit is contained in:
unknown
2026-08-01 16:17:33 +08:00
parent 85489c4778
commit c2d72d891f
6 changed files with 6530 additions and 11304 deletions
+6400 -11232
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -424,8 +424,8 @@ export default {
.hero-bg { .hero-bg {
background-position: center top; background-position: center top;
background-repeat: no-repeat; background-repeat: no-repeat;
background-size: cover; background-size: 100%;
width: 1920px; width: 100%;
height: 1080px; height: 1080px;
} }
+48 -26
View File
@@ -193,8 +193,8 @@ export default {
.notice-box { .notice-box {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 12px; gap: 10px;
margin-top: 10px; margin-top: 24px;
padding: 12px 18px; padding: 12px 18px;
border: 1px solid #a89eff; border: 1px solid #a89eff;
border-radius: 12px; border-radius: 12px;
@@ -214,11 +214,12 @@ export default {
display: flex; display: flex;
align-items: center; align-items: center;
gap: 14px; gap: 14px;
justify-content: center;
} }
.toolbar { .toolbar {
justify-content: space-between; justify-content: space-between;
margin-top: 36px; margin-top: 48px;
} }
.search-input { .search-input {
@@ -252,6 +253,8 @@ export default {
height: 40px; height: 40px;
} }
.new-btn { .new-btn {
min-width: 110px; min-width: 110px;
height: 40px; height: 40px;
@@ -272,22 +275,27 @@ export default {
.asset-table th, .asset-table th,
.asset-table td { .asset-table td {
height: 56px; height: 54px;
padding: 0 12px; padding: 0 10px;
border-bottom: 1px solid #dfe4f0; border-bottom: 1px solid #d6d7d9;
text-align: center; text-align: center;
color: #344054; font-size: 14px;
font-size: 15px; color: #1E293B;
} }
.asset-table thead tr { .asset-table thead tr {
background: #f6f8fc; background: #F8FAFC;
height: 45px;
} }
.asset-table th { .asset-table th {
color: #65708d; height: 45px;
font-size: 16px; font-family: Source Han Sans, Source Han Sans;
font-weight: 600; font-weight: 400;
font-size: 15px;
color: #64748B;
line-height: 20px;
} }
.asset-table tbody tr:last-child td { .asset-table tbody tr:last-child td {
@@ -295,7 +303,7 @@ export default {
} }
.asset-name { .asset-name {
color: #5f66ec; color: #4F46E5 !important;
} }
.status-pill { .status-pill {
@@ -309,18 +317,30 @@ export default {
} }
.rejected { .rejected {
background: #ffe8e5; color: #ED2D2D;
color: #ff5f58; font-size: 13px;
width: 70px;
height: 30px;
background: #FFDCDC;
border-radius: 50px 50px 50px 50px;
} }
.approved { .approved {
background: #e6faf0; width: 70px;
color: #2fa269; height: 30px;
background: #ECFDF5;
border-radius: 50px 50px 50px 50px;
color: #059669;
font-size: 13px;
} }
.reviewing { .reviewing {
background: #e6efff; width: 70px;
color: #4f74ff; height: 30px;
background: #DEE8FF;
border-radius: 50px 50px 50px 50px;
color: #2564F6;
font-size: 13px;
} }
.draft { .draft {
@@ -329,19 +349,21 @@ export default {
} }
.table-btn { .table-btn {
min-width: 62px; min-width: 58px;
height: 32px; height: 31px;
font-size: 14px; font-size: 13px;
border-radius: 6px;
} }
.table-btn.ghost { .table-btn.ghost {
background: #e8f1ff; background: #E6F2FF;
color: #4f74ff; color: #2564F6;
} }
.table-btn.wide { .table-btn.wide {
min-width: 92px; min-width: 92px;
background: #eef2ff; background: rgba(79,70,229,0.06);
color: #4F46E5;
} }
.empty-cell { .empty-cell {
@@ -243,7 +243,7 @@
</ul> </ul>
</div> </div>
<el-checkbox v-model="form.step6.confirmAgreement" :disabled="readonlyMode">我已阅读并同意资产评估服务协议数据授权协议</el-checkbox> <el-checkbox v-model="form.step6.confirmAgreement" class="push-t-10" :disabled="readonlyMode">我已阅读并同意资产评估服务协议数据授权协议</el-checkbox>
</template> </template>
</section> </section>
@@ -262,9 +262,10 @@
import UserShell from './components/UserShell.vue'; import UserShell from './components/UserShell.vue';
import sidebarBg from '@/assets/img/user/背景卡图.png'; import sidebarBg from '@/assets/img/user/背景卡图.png';
import userAvatar from '@/assets/img/user/avatar.png'; import userAvatar from '@/assets/img/user/avatar.png';
import overviewActiveIcon from '@/assets/img/user/工作台icon-选中.png'; import overviewActiveIcon from '@/assets/img/user/griconxz.png';
import talentActiveIcon from '@/assets/img/user/griconxz.png'; import overviewActiveIconIn from '@/assets/img/user/gricon.png';
import talentInactiveIcon from '@/assets/img/user/gricon.png'; import talentActiveIcon from '@/assets/img/user/zbglxz.png';
import talentInactiveIcon from '@/assets/img/user/zbgl.png';
import assetActiveIcon from '@/assets/img/user/申请icon.png'; import assetActiveIcon from '@/assets/img/user/申请icon.png';
import assetInactiveIcon from '@/assets/img/user/申请未选中.png'; import assetInactiveIcon from '@/assets/img/user/申请未选中.png';
import tipIcon from '@/assets/img/user/提示.png'; import tipIcon from '@/assets/img/user/提示.png';
@@ -281,7 +282,7 @@ const API_ENDPOINTS = {
function createMenu() { function createMenu() {
return [ return [
{ key: 'overview', label: '首页概览', path: '/user/org', activeIcon: overviewActiveIcon }, { key: 'overview', label: '首页概览', path: '/user/org', activeIcon: overviewActiveIcon,inactiveIcon: overviewActiveIconIn},
{ key: 'talent', label: '主播管理', path: '/user/org/talents', activeIcon: talentActiveIcon, inactiveIcon: talentInactiveIcon }, { key: 'talent', label: '主播管理', path: '/user/org/talents', activeIcon: talentActiveIcon, inactiveIcon: talentInactiveIcon },
{ key: 'asset', label: '资产评估申请', path: '/user/org/assets', activeIcon: assetActiveIcon, inactiveIcon: assetInactiveIcon } { key: 'asset', label: '资产评估申请', path: '/user/org/assets', activeIcon: assetActiveIcon, inactiveIcon: assetInactiveIcon }
]; ];
@@ -706,9 +707,12 @@ export default {
display: flex; display: flex;
gap: 12px; gap: 12px;
padding: 16px 18px; padding: 16px 18px;
border: 1px solid #cfd4ff; border: 1px solid #a89eff;
border-radius: 12px; border-radius: 12px;
background: rgba(111, 104, 243, 0.04); background: rgba(111, 104, 243, 0.04);
margin-top: 34px;
color: #6f68f3;
font-size: 15px;
} }
.notice-icon { .notice-icon {
@@ -719,8 +723,8 @@ export default {
.notice-box strong { .notice-box strong {
display: block; display: block;
color: #5f66ec; color: #6f68f3;
font-size: 16px; font-size: 15px;
} }
.notice-box p { .notice-box p {
@@ -788,8 +792,8 @@ export default {
} }
.panel-title { .panel-title {
color: #293044; color: #3D3D3D;
font-size: 24px; font-size: 20px;
font-weight: 700; font-weight: 700;
} }
@@ -802,8 +806,8 @@ export default {
.sub-section { .sub-section {
margin-top: 24px; margin-top: 24px;
padding-left: 10px; padding-left: 10px;
border-left: 4px solid #6f68f3; border-left: 2px solid #4F46E5;
color: #5f66ec; color: #4F46E5;
font-size: 18px; font-size: 18px;
font-weight: 600; font-weight: 600;
} }
@@ -837,8 +841,8 @@ export default {
.upload-title { .upload-title {
display: block; display: block;
margin-bottom: 10px; margin-bottom: 10px;
color: #1e293b; color: #3D3D3D;
font-size: 15px; font-size: 16px;
font-weight: 600; font-weight: 600;
} }
@@ -908,7 +912,9 @@ export default {
background: #f0edff; background: #f0edff;
color: #5f66ec; color: #5f66ec;
} }
.push-t-10{
margin-top: 10px;
}
.dual-inputs { .dual-inputs {
display: grid; display: grid;
grid-template-columns: 1fr 1fr; grid-template-columns: 1fr 1fr;
@@ -1080,7 +1086,11 @@ export default {
.footer-btn.submit { .footer-btn.submit {
border: 0; border: 0;
background: #15b89a; color: #fff;
width: 114px;
height: 40px;
background: #6F68F3;
border-radius: 8px 8px 8px 8px;
color: #fff; color: #fff;
} }
+11 -4
View File
@@ -398,15 +398,22 @@ export default {
} }
.action-btn.ghost { .action-btn.ghost {
border: 1px solid #d8dfef; width: 86px;
background: #fff; height: 40px;
color: #61697e; background: #FFFFFF;
border-radius: 8px 8px 8px 8px;
border: 1px solid #D6D7D9;
font-size: 13px;
color: #606266;
} }
.action-btn.primary { .action-btn.primary {
border: 0; border: 0;
background: #625ae8;
color: #fff; color: #fff;
width: 114px;
height: 40px;
background: #6F68F3;
border-radius: 8px 8px 8px 8px;
} }
@media (max-width: 760px) { @media (max-width: 760px) {
+42 -23
View File
@@ -26,11 +26,9 @@
<div class="upload-row"> <div class="upload-row">
<button type="button" class="upload-card" @click="triggerUpload('idFront')"> <button type="button" class="upload-card" @click="triggerUpload('idFront')">
<img :src="idFrontImage" alt="身份证正面" /> <img :src="idFrontImage" alt="身份证正面" />
<span>{{ form.idFrontName || '上传身份证人像面' }}</span>
</button> </button>
<button type="button" class="upload-card" @click="triggerUpload('idBack')"> <button type="button" class="upload-card" @click="triggerUpload('idBack')">
<img :src="idBackImage" alt="身份证背面" /> <img :src="idBackImage" alt="身份证背面" />
<span>{{ form.idBackName || '上传身份证国徽面' }}</span>
</button> </button>
</div> </div>
<div class="upload-tip">请提供信息清晰可见的证件照片支持jpgpngjpeg 格式的图片大小不能大于5M</div> <div class="upload-tip">请提供信息清晰可见的证件照片支持jpgpngjpeg 格式的图片大小不能大于5M</div>
@@ -68,9 +66,10 @@
import UserShell from './components/UserShell.vue'; import UserShell from './components/UserShell.vue';
import sidebarBg from '@/assets/img/user/背景卡图.png'; import sidebarBg from '@/assets/img/user/背景卡图.png';
import userAvatar from '@/assets/img/user/avatar.png'; import userAvatar from '@/assets/img/user/avatar.png';
import overviewActiveIcon from '@/assets/img/user/工作台icon-选中.png'; import overviewActiveIcon from '@/assets/img/user/griconxz.png';
import talentActiveIcon from '@/assets/img/user/griconxz.png'; import overviewActiveIconIn from '@/assets/img/user/gricon.png';
import talentInactiveIcon from '@/assets/img/user/gricon.png'; import talentActiveIcon from '@/assets/img/user/zbglxz.png';
import talentInactiveIcon from '@/assets/img/user/zbgl.png';
import assetActiveIcon from '@/assets/img/user/申请icon.png'; import assetActiveIcon from '@/assets/img/user/申请icon.png';
import assetInactiveIcon from '@/assets/img/user/申请未选中.png'; import assetInactiveIcon from '@/assets/img/user/申请未选中.png';
import idFrontImage from '@/assets/img/user/身份证正面.png'; import idFrontImage from '@/assets/img/user/身份证正面.png';
@@ -86,7 +85,7 @@ const categoryOptions = ['美妆护肤', '服饰穿搭', '食品饮料', '3C数
function createMenu() { function createMenu() {
return [ return [
{ key: 'overview', label: '首页概览', path: '/user/org', activeIcon: overviewActiveIcon }, { key: 'overview', label: '首页概览', path: '/user/org', activeIcon: overviewActiveIcon,inactiveIcon: overviewActiveIconIn},
{ key: 'talent', label: '主播管理', path: '/user/org/talents', activeIcon: talentActiveIcon, inactiveIcon: talentInactiveIcon }, { key: 'talent', label: '主播管理', path: '/user/org/talents', activeIcon: talentActiveIcon, inactiveIcon: talentInactiveIcon },
{ key: 'asset', label: '资产评估申请', path: '/user/org/assets', activeIcon: assetActiveIcon, inactiveIcon: assetInactiveIcon } { key: 'asset', label: '资产评估申请', path: '/user/org/assets', activeIcon: assetActiveIcon, inactiveIcon: assetInactiveIcon }
]; ];
@@ -264,7 +263,9 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.back-row { .back-row {
margin-bottom: 10px; display: flex;
justify-content: flex-end;
margin-top: -52px;
} }
.back-btn { .back-btn {
@@ -277,6 +278,7 @@ export default {
.form-wrap { .form-wrap {
max-width: 520px; max-width: 520px;
margin-top: 60px;
} }
.field-block { .field-block {
@@ -284,7 +286,7 @@ export default {
} }
.wide-block { .wide-block {
max-width: 760px; width: 800px;
} }
.small-block { .small-block {
@@ -293,7 +295,7 @@ export default {
.field-label { .field-label {
margin-bottom: 10px; margin-bottom: 10px;
color: #1e293b; color: #3D3D3D;
font-size: 16px; font-size: 16px;
font-weight: 600; font-weight: 600;
} }
@@ -302,11 +304,19 @@ export default {
margin-bottom: 0; margin-bottom: 0;
} }
.minor-tip, .minor-tip{
color: #98a1bb;
font-size: 12px;
font-weight: 400;
}
.upload-tip { .upload-tip {
color: #98a1bb; font-family: Source Han Sans, Source Han Sans;
font-size: 12px; font-weight: 400;
font-weight: 400; font-size: 14px;
color: #A1A1A1;
line-height: 22px;
text-align: left;
margin-top: 10px;
} }
.required { .required {
@@ -327,20 +337,20 @@ export default {
.upload-row { .upload-row {
display: flex; display: flex;
gap: 16px; gap: 14px;
} }
.upload-card { .upload-card {
width: 148px; width: 144px;
border: 1px dashed #d8dfef; height: 112px;
border:0;
background: #fff; background: #fff;
padding: 10px;
cursor: pointer; cursor: pointer;
} }
.upload-card img { .upload-card img {
width: 100%; width: 144px;
height: 90px; height: 112px;
object-fit: contain; object-fit: contain;
} }
@@ -414,17 +424,26 @@ export default {
} }
.footer-btn.ghost { .footer-btn.ghost {
border: 1px solid #d8dfef; width: 86px;
background: #fff; height: 40px;
color: #646b80; background: #FFFFFF;
border-radius: 8px 8px 8px 8px;
border: 1px solid #D6D7D9;
font-size: 13px;
color: #606266;
} }
.footer-btn.primary { .footer-btn.primary {
border: 0; border: 0;
background: #6f68f3;
color: #fff; color: #fff;
width: 114px;
height: 40px;
background: #6F68F3;
border-radius: 8px 8px 8px 8px;
} }
@media (max-width: 760px) { @media (max-width: 760px) {
.field-control, .field-control,
.form-wrap { .form-wrap {