添加入表评估备注
Showing
4 changed files
with
70 additions
and
4 deletions
| ... | @@ -101,6 +101,7 @@ const expandSwicthHandler = () => { | ... | @@ -101,6 +101,7 @@ const expandSwicthHandler = () => { |
| 101 | color: var(--el-text-color-primary); | 101 | color: var(--el-text-color-primary); |
| 102 | line-height: 21px; | 102 | line-height: 21px; |
| 103 | font-weight: 600; | 103 | font-weight: 600; |
| 104 | flex-shrink: 0; | ||
| 104 | } | 105 | } |
| 105 | 106 | ||
| 106 | .desc { | 107 | .desc { | ... | ... |
| ... | @@ -9,7 +9,7 @@ const routes: RouteRecordRaw[] = [ | ... | @@ -9,7 +9,7 @@ const routes: RouteRecordRaw[] = [ |
| 9 | path: '/data-entry/entry-consult', | 9 | path: '/data-entry/entry-consult', |
| 10 | component: Layout, | 10 | component: Layout, |
| 11 | meta: { | 11 | meta: { |
| 12 | title: '入表咨询', | 12 | title: '入表预估', |
| 13 | icon: 'sidebar-videos', | 13 | icon: 'sidebar-videos', |
| 14 | }, | 14 | }, |
| 15 | children: [ | 15 | children: [ |
| ... | @@ -18,7 +18,7 @@ const routes: RouteRecordRaw[] = [ | ... | @@ -18,7 +18,7 @@ const routes: RouteRecordRaw[] = [ |
| 18 | name: 'entryConsult', | 18 | name: 'entryConsult', |
| 19 | component: () => import('@/views/data_entry/index.vue'), | 19 | component: () => import('@/views/data_entry/index.vue'), |
| 20 | meta: { | 20 | meta: { |
| 21 | title: '入表咨询', | 21 | title: '入表预估', |
| 22 | sidebar: false, | 22 | sidebar: false, |
| 23 | breadcrumb: false, | 23 | breadcrumb: false, |
| 24 | cache: true | 24 | cache: true | ... | ... |
| ... | @@ -1377,7 +1377,15 @@ watch(showLevel4, (newVal, oldVal) => { | ... | @@ -1377,7 +1377,15 @@ watch(showLevel4, (newVal, oldVal) => { |
| 1377 | <Form ref="entryFormRef" :itemList="entryForm.items" formId="dam-base-form" :rules="entryForm.rules" | 1377 | <Form ref="entryFormRef" :itemList="entryForm.items" formId="dam-base-form" :rules="entryForm.rules" |
| 1378 | col="col3" @selectChange="selectChange" /> | 1378 | col="col3" @selectChange="selectChange" /> |
| 1379 | </ContentWrap> | 1379 | </ContentWrap> |
| 1380 | <ContentWrap :title="step == 0 ? '设置成本项' : step == 1 ? '填写成本明细' : '文件预览'" description="" :expandSwicth="false"> | 1380 | <div class="v-tip" v-show="step == 0"> |
| 1381 | <div class="tip-icon"></div> | ||
| 1382 | <div class="tip-des"> | ||
| 1383 | 本工具提供的入表评估结果仅为初步测算参考,基于用户输入参数生成,不代表最终入表金额。实际入表需遵循《企业数据资源相关会计处理暂行规定》及会计准则要求,经专业审计机构确认后方可生效。 | ||
| 1384 | </div> | ||
| 1385 | </div> | ||
| 1386 | <ContentWrap :title="step == 0 ? '设置成本项' : step == 1 ? '填写成本明细' : '文件预览'" | ||
| 1387 | description="" | ||
| 1388 | :expandSwicth="false" :style="step == 1 ? { 'margin-top': '16px' } : {}"> | ||
| 1381 | <div class="table_tool_wrap"> | 1389 | <div class="table_tool_wrap"> |
| 1382 | <Form ref="costFormRef" :itemList="costForm.items" formId="dam-base-form" :rules="costForm.rules" col="col3" | 1390 | <Form ref="costFormRef" :itemList="costForm.items" formId="dam-base-form" :rules="costForm.rules" col="col3" |
| 1383 | @btnClick="btnClick" @selectChange="selectChange" /> | 1391 | @btnClick="btnClick" @selectChange="selectChange" /> |
| ... | @@ -1832,6 +1840,32 @@ watch(showLevel4, (newVal, oldVal) => { | ... | @@ -1832,6 +1840,32 @@ watch(showLevel4, (newVal, oldVal) => { |
| 1832 | transform: translateY(-50%); | 1840 | transform: translateY(-50%); |
| 1833 | } | 1841 | } |
| 1834 | } | 1842 | } |
| 1843 | |||
| 1844 | .v-tip { | ||
| 1845 | display: flex; | ||
| 1846 | min-height: 40px; | ||
| 1847 | align-items: center; | ||
| 1848 | background: #FFFBF2; | ||
| 1849 | border: 1px solid rgba(255, 241, 212, 1); | ||
| 1850 | border-radius: 4px; | ||
| 1851 | margin: 5px 0px 8px; | ||
| 1852 | padding: 2px 0px; | ||
| 1853 | |||
| 1854 | .tip-icon { | ||
| 1855 | width: 16px; | ||
| 1856 | height: 16px; | ||
| 1857 | background: url('@/assets/icons/waring.svg') no-repeat; | ||
| 1858 | background-size: 100% 100%; | ||
| 1859 | margin: 0 10px; | ||
| 1860 | } | ||
| 1861 | |||
| 1862 | .tip-des { | ||
| 1863 | font-size: 14px; | ||
| 1864 | color: #FF991C; | ||
| 1865 | line-height: 21px; | ||
| 1866 | font-weight: 400; | ||
| 1867 | } | ||
| 1868 | } | ||
| 1835 | } | 1869 | } |
| 1836 | } | 1870 | } |
| 1837 | 1871 | ... | ... |
| ... | @@ -221,6 +221,12 @@ onActivated(() => { | ... | @@ -221,6 +221,12 @@ onActivated(() => { |
| 221 | <el-button @click="batchDelete">批量删除</el-button> | 221 | <el-button @click="batchDelete">批量删除</el-button> |
| 222 | </div> | 222 | </div> |
| 223 | </div> | 223 | </div> |
| 224 | <div class="v-tip"> | ||
| 225 | <div class="tip-icon"></div> | ||
| 226 | <div class="tip-des"> | ||
| 227 | 本工具提供的估值评估结果仅为初步测算参考,基于用户输入参数及预设的模型生成,不代表最终估值金额。实际估值金额则需专业的资产评估机构进行评估确认后方可生效。 | ||
| 228 | </div> | ||
| 229 | </div> | ||
| 224 | <div class="table_panel_wrap"> | 230 | <div class="table_panel_wrap"> |
| 225 | <Table :tableInfo="tableInfo" @tablePageChange="tablePageChange" @tableSelectionChange="tableSelectionChange" /> | 231 | <Table :tableInfo="tableInfo" @tablePageChange="tablePageChange" @tableSelectionChange="tableSelectionChange" /> |
| 226 | </div> | 232 | </div> |
| ... | @@ -238,9 +244,34 @@ onActivated(() => { | ... | @@ -238,9 +244,34 @@ onActivated(() => { |
| 238 | } | 244 | } |
| 239 | } | 245 | } |
| 240 | 246 | ||
| 247 | .v-tip { | ||
| 248 | display: flex; | ||
| 249 | height: 40px; | ||
| 250 | align-items: center; | ||
| 251 | background: #FFFBF2; | ||
| 252 | border: 1px solid rgba(255, 241, 212, 1); | ||
| 253 | border-radius: 4px; | ||
| 254 | margin: 0px 8px 8px 8px; | ||
| 255 | |||
| 256 | .tip-icon { | ||
| 257 | width: 16px; | ||
| 258 | height: 16px; | ||
| 259 | background: url('@/assets/icons/waring.svg') no-repeat; | ||
| 260 | background-size: 100% 100%; | ||
| 261 | margin: 0 10px; | ||
| 262 | } | ||
| 263 | |||
| 264 | .tip-des { | ||
| 265 | font-size: 14px; | ||
| 266 | color: #FF991C; | ||
| 267 | line-height: 20px; | ||
| 268 | font-weight: 400; | ||
| 269 | } | ||
| 270 | } | ||
| 271 | |||
| 241 | .table_panel_wrap { | 272 | .table_panel_wrap { |
| 242 | width: 100%; | 273 | width: 100%; |
| 243 | height: calc(100% - 84px); | 274 | height: calc(100% - 132px); |
| 244 | padding: 0px 8px 0; | 275 | padding: 0px 8px 0; |
| 245 | } | 276 | } |
| 246 | </style> | 277 | </style> |
| ... | \ No newline at end of file | ... | \ No newline at end of file | ... | ... |
-
Please register or sign in to post a comment