Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
csbr-daop
/
fe-data-trusted-space
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
047a7495
authored
2025-03-31 17:28:52 +0800
by
lihua
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
添加入表评估备注
1 parent
d9538513
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
70 additions
and
4 deletions
src/components/ContentWrap/src/ContentWrap.vue
src/router/modules/dataEntry.ts
src/views/data_entry/index.vue
src/views/data_transaction/valuationModel.vue
src/components/ContentWrap/src/ContentWrap.vue
View file @
047a749
...
...
@@ -101,6 +101,7 @@ const expandSwicthHandler = () => {
color
:
var
(
--el-text-color-primary
);
line-height
:
21px
;
font-weight
:
600
;
flex-shrink
:
0
;
}
.desc
{
...
...
src/router/modules/dataEntry.ts
View file @
047a749
...
...
@@ -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
...
...
src/views/data_entry/index.vue
View file @
047a749
...
...
@@ -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
;
}
}
}
}
...
...
src/views/data_transaction/valuationModel.vue
View file @
047a749
...
...
@@ -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%
-
84
px
);
height
:
calc
(
100%
-
132
px
);
padding
:
0px
8px
0
;
}
</
style
>
\ No newline at end of file
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment