2048cd38 by lihua

添加入表评估备注

1 parent 978d7fb5
......@@ -101,6 +101,7 @@ const expandSwicthHandler = () => {
color: var(--el-text-color-primary);
line-height: 21px;
font-weight: 600;
flex-shrink: 0;
}
.desc {
......
......@@ -9,7 +9,7 @@ const routes: RouteRecordRaw[] = [
path: '/data-entry/entry-consult',
component: Layout,
meta: {
title: '入表咨询',
title: '入表预估',
icon: 'sidebar-videos',
},
children: [
......@@ -18,7 +18,7 @@ const routes: RouteRecordRaw[] = [
name: 'entryConsult',
component: () => import('@/views/data_entry/index.vue'),
meta: {
title: '入表咨询',
title: '入表预估',
sidebar: false,
breadcrumb: false,
cache: true
......
......@@ -1377,7 +1377,15 @@ watch(showLevel4, (newVal, oldVal) => {
<Form ref="entryFormRef" :itemList="entryForm.items" formId="dam-base-form" :rules="entryForm.rules"
col="col3" @selectChange="selectChange" />
</ContentWrap>
<ContentWrap :title="step == 0 ? '设置成本项' : step == 1 ? '填写成本明细' : '文件预览'" description="" :expandSwicth="false">
<div class="v-tip" v-show="step == 0">
<div class="tip-icon"></div>
<div class="tip-des">
本工具提供的入表评估结果仅为初步测算参考,基于用户输入参数生成,不代表最终入表金额。实际入表需遵循《企业数据资源相关会计处理暂行规定》及会计准则要求,经专业审计机构确认后方可生效。
</div>
</div>
<ContentWrap :title="step == 0 ? '设置成本项' : step == 1 ? '填写成本明细' : '文件预览'"
description=""
:expandSwicth="false" :style="step == 1 ? { 'margin-top': '16px' } : {}">
<div class="table_tool_wrap">
<Form ref="costFormRef" :itemList="costForm.items" formId="dam-base-form" :rules="costForm.rules" col="col3"
@btnClick="btnClick" @selectChange="selectChange" />
......@@ -1832,6 +1840,32 @@ watch(showLevel4, (newVal, oldVal) => {
transform: translateY(-50%);
}
}
.v-tip {
display: flex;
min-height: 40px;
align-items: center;
background: #FFFBF2;
border: 1px solid rgba(255, 241, 212, 1);
border-radius: 4px;
margin: 5px 0px 8px;
padding: 2px 0px;
.tip-icon {
width: 16px;
height: 16px;
background: url('@/assets/icons/waring.svg') no-repeat;
background-size: 100% 100%;
margin: 0 10px;
}
.tip-des {
font-size: 14px;
color: #FF991C;
line-height: 21px;
font-weight: 400;
}
}
}
}
......
......@@ -221,6 +221,12 @@ onActivated(() => {
<el-button @click="batchDelete">批量删除</el-button>
</div>
</div>
<div class="v-tip">
<div class="tip-icon"></div>
<div class="tip-des">
本工具提供的估值评估结果仅为初步测算参考,基于用户输入参数及预设的模型生成,不代表最终估值金额。实际估值金额则需专业的资产评估机构进行评估确认后方可生效。
</div>
</div>
<div class="table_panel_wrap">
<Table :tableInfo="tableInfo" @tablePageChange="tablePageChange" @tableSelectionChange="tableSelectionChange" />
</div>
......@@ -238,9 +244,34 @@ onActivated(() => {
}
}
.v-tip {
display: flex;
height: 40px;
align-items: center;
background: #FFFBF2;
border: 1px solid rgba(255, 241, 212, 1);
border-radius: 4px;
margin: 0px 8px 8px 8px;
.tip-icon {
width: 16px;
height: 16px;
background: url('@/assets/icons/waring.svg') no-repeat;
background-size: 100% 100%;
margin: 0 10px;
}
.tip-des {
font-size: 14px;
color: #FF991C;
line-height: 20px;
font-weight: 400;
}
}
.table_panel_wrap {
width: 100%;
height: calc(100% - 84px);
height: calc(100% - 132px);
padding: 0px 8px 0;
}
</style>
\ No newline at end of file
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!