Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
B
bigDataSystem
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张伯涛
bigDataSystem
Commits
74863db9
Commit
74863db9
authored
Dec 26, 2024
by
LiXuyang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
我的异议-处理
parent
a034bb62
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
186 additions
and
58 deletions
+186
-58
detail.vue
src/views/personalCenter/myObjection/detail.vue
+31
-34
objection.data.ts
src/views/personalCenter/myObjection/objection.data.ts
+54
-0
objectionData.ts
src/views/personalCenter/myObjection/objectionData.ts
+101
-24
No files found.
src/views/personalCenter/myObjection/detail.vue
View file @
74863db9
...
...
@@ -3,13 +3,12 @@
:title=
"!isAudit ? '异议详情' : '异议审核'"
dense
contentBackground
fixed-height
headerSticky
@
back=
"handleBack"
>
<step-header
class=
"ml-5"
title=
"登记信息"
/>
<Row
:gutter=
"[16,
30
]"
>
<Row
:gutter=
"[16,
15
]"
>
<Col
:span=
"12"
v-for=
"info in myRegistrationColumnsForDetail"
:key=
"info"
>
<div
class=
"col-item"
>
<div
class=
"item-label"
>
{{
info
.
title
}}
:
</div>
...
...
@@ -30,7 +29,7 @@
</Row>
<step-header
class=
"ml-5 mt-10"
title=
"异议内容"
/>
<Row
:gutter=
"[16,
30
]"
>
<Row
:gutter=
"[16,
15
]"
>
<Col
:span=
"12"
v-for=
"info in objectionColumns"
:key=
"info"
>
<div
class=
"col-item"
>
<div
class=
"item-label"
>
{{
info
.
title
}}
:
</div>
...
...
@@ -44,27 +43,27 @@
</div>
</Col>
</Row>
<!--
<div
style=
"display: flex"
>
-->
<!--
<div
v-if=
"isAudit"
style=
"margin: 40px 60px"
class=
"flex"
>
-->
<!--
<div
style=
"line-height: 35px"
>
证明材料:
</div>
-->
<!--
<div
style=
"margin-left: 100px"
>
-->
<!--
<Upload
style=
"width: 45%"
v-model:file-list=
"fileList"
/>
-->
<!--
</div>
-->
<!--
</div>
-->
<!--
<div
v-if=
"isAudit"
style=
"margin: 40px 0 0 440px"
class=
"flex"
>
-->
<!--
<div
style=
"line-height: 35px"
>
审核意见:
</div>
-->
<!--
<div
style=
"margin-left: 100px"
>
-->
<!--
<Textarea
v-model:value=
"idea"
style=
"width: 300px"
placeholder=
"请输入审核意见"
/>
-->
<!--
</div>
-->
<!--
</div>
-->
<!--
</div>
-->
<!--
<div-->
<!-- v-if="isAudit"-->
<!-- style="justify-content: right; display: flex; gap: 10px; margin-right: 20px"-->
<!-- >-->
<!--
<a-button
@
click=
"handleCancel"
>
驳回
</a-button>
-->
<!--
<a-button
type=
"primary"
@
click=
"handleEdit"
>
审核
</a-button>
-->
<!--
</div>
-->
<!--
<div
style=
"display: flex"
>
-->
<!--
<div
v-if=
"isAudit"
style=
"margin: 40px 60px"
class=
"flex"
>
-->
<!--
<div
style=
"line-height: 35px"
>
证明材料:
</div>
-->
<!--
<div
style=
"margin-left: 100px"
>
-->
<!--
<Upload
style=
"width: 45%"
v-model:file-list=
"fileList"
/>
-->
<!--
</div>
-->
<!--
</div>
-->
<!--
<div
v-if=
"isAudit"
style=
"margin: 40px 0 0 440px"
class=
"flex"
>
-->
<!--
<div
style=
"line-height: 35px"
>
审核意见:
</div>
-->
<!--
<div
style=
"margin-left: 100px"
>
-->
<!--
<Textarea
v-model:value=
"idea"
style=
"width: 300px"
placeholder=
"请输入审核意见"
/>
-->
<!--
</div>
-->
<!--
</div>
-->
<!--
</div>
-->
<!--
<div-->
<!-- v-if="isAudit"-->
<!-- style="justify-content: right; display: flex; gap: 10px; margin-right: 20px"-->
<!-- >-->
<!--
<a-button
@
click=
"handleCancel"
>
驳回
</a-button>
-->
<!--
<a-button
type=
"primary"
@
click=
"handleEdit"
>
审核
</a-button>
-->
<!--
</div>
-->
</PageWrapper>
</
template
>
...
...
@@ -83,10 +82,8 @@
import
{
TableImg
}
from
'@/components/Table'
;
import
{
useMessage
}
from
'@/hooks/web/useMessage'
;
import
{
objectionColumns
}
from
'@/views/personalCenter/myObjection/objection.data'
;
import
StepHeader
from
"@/components/stepHeader.vue"
;
import
{
myRegistrationColumnsForDetail
}
from
"@/views/personalCenter/myRegistration/myRegistration.data"
;
import
StepHeader
from
'@/components/stepHeader.vue'
;
import
{
myRegistrationColumnsForDetail
}
from
'@/views/personalCenter/myObjection/objection.data'
;
const
{
createMessage
}
=
useMessage
();
const
route
=
useRoute
();
...
...
src/views/personalCenter/myObjection/objection.data.ts
View file @
74863db9
...
...
@@ -26,3 +26,57 @@ export const objectionColumns: BasicColumn[] = [
dataIndex
:
'state'
,
},
];
export
const
myRegistrationColumnsForDetail
:
BasicColumn
[]
=
[
{
title
:
'登记编号'
,
dataIndex
:
'enrollNum'
,
},
{
title
:
'数据知识产权名称'
,
dataIndex
:
'dataName'
,
},
{
title
:
'所属行业'
,
dataIndex
:
'sector'
,
},
{
title
:
'数据来源'
,
dataIndex
:
'dataBase'
,
},
{
title
:
'数据规模'
,
dataIndex
:
'dataScale'
,
},
{
title
:
'更新频次'
,
dataIndex
:
'updateFrequency'
,
},
{
title
:
'登记日期'
,
dataIndex
:
'enrollDate'
,
},
{
title
:
'申请人'
,
dataIndex
:
'applicant'
,
},
{
title
:
'存证公证编号'
,
dataIndex
:
'storageNum'
,
},
{
title
:
'存证公证平台'
,
dataIndex
:
'storagePlatform'
,
},
{
title
:
'数据结构'
,
dataIndex
:
'dataStructure'
,
},
{
title
:
'应用场景'
,
dataIndex
:
'applyScene'
,
},
{
title
:
'算法规则简述'
,
dataIndex
:
'ruleExplain'
,
},
];
src/views/personalCenter/myObjection/objectionData.ts
View file @
74863db9
...
...
@@ -6,14 +6,36 @@ export const objectionData: any[] = [
applyScene
:
'大数据分析'
,
applyTime
:
'2024-11-30'
,
state
:
'处理中'
,
enrollNum
:
'ENR001'
,
dataName
:
'智能交通数据'
,
sector
:
'交通运输'
,
dataBase
:
'城市交通监控系统'
,
dataScale
:
'100GB'
,
updateFrequency
:
'每月'
,
enrollDate
:
'2023-01-15'
,
storageNum
:
'ST001'
,
storagePlatform
:
'数据存证平台A'
,
dataStructure
:
'时序数据'
,
ruleExplain
:
'基于深度学习的交通流量预测模型'
,
},
{
"title"
:
"智能交通流量预测"
,
"applicant"
:
"深圳智慧交通研究院"
,
"dataSource"
:
"政府公开数据"
,
"applyScene"
:
"城市规划"
,
"applyTime"
:
"2024-11-28"
,
"state"
:
"处理中"
title
:
'智能交通流量预测'
,
applicant
:
'深圳智慧交通研究院'
,
dataSource
:
'政府公开数据'
,
applyScene
:
'城市规划'
,
applyTime
:
'2024-11-28'
,
state
:
'处理中'
,
enrollNum
:
'ENR002'
,
dataName
:
'气象数据'
,
sector
:
'环境气候'
,
dataBase
:
'全球气象数据库'
,
dataScale
:
'500GB'
,
updateFrequency
:
'每日'
,
enrollDate
:
'2022-09-23'
,
storageNum
:
'ST002'
,
storagePlatform
:
'气象存证平台B'
,
dataStructure
:
'网格化数据'
,
ruleExplain
:
'基于数值天气预报模型的天气数据分析'
,
},
{
title
:
'大数据弹性分析数据'
,
...
...
@@ -22,14 +44,36 @@ export const objectionData: any[] = [
applyScene
:
'大数据分析'
,
applyTime
:
'2024-11-30'
,
state
:
'驳回'
,
enrollNum
:
'ENR003'
,
dataName
:
'金融市场数据'
,
sector
:
'金融行业'
,
dataBase
:
'证券市场'
,
dataScale
:
'2TB'
,
updateFrequency
:
'每小时'
,
enrollDate
:
'2023-05-10'
,
storageNum
:
'ST003'
,
storagePlatform
:
'金融数据存证平台C'
,
dataStructure
:
'表格数据'
,
ruleExplain
:
'股票趋势预测算法,基于历史股市数据的机器学习模型'
,
},
{
"title"
:
"医疗健康数据分析"
,
"applicant"
:
"广州康体生物科技有限公司"
,
"dataSource"
:
"公共数据集"
,
"applyScene"
:
"健康管理"
,
"applyTime"
:
"2024-12-05"
,
"state"
:
"驳回"
title
:
'医疗健康数据分析'
,
applicant
:
'广州康体生物科技有限公司'
,
dataSource
:
'公共数据集'
,
applyScene
:
'健康管理'
,
applyTime
:
'2024-12-05'
,
state
:
'驳回'
,
enrollNum
:
'ENR004'
,
dataName
:
'医疗健康数据'
,
sector
:
'医疗健康'
,
dataBase
:
'医院管理系统'
,
dataScale
:
'10TB'
,
updateFrequency
:
'每周'
,
enrollDate
:
'2023-06-15'
,
storageNum
:
'ST004'
,
storagePlatform
:
'医疗数据存证平台D'
,
dataStructure
:
'结构化数据'
,
ruleExplain
:
'基于患者健康记录的疾病预测模型'
,
},
{
title
:
'大数据弹性分析数据'
,
...
...
@@ -38,21 +82,54 @@ export const objectionData: any[] = [
applyScene
:
'大数据分析'
,
applyTime
:
'2024-11-30'
,
state
:
'已确认'
,
enrollNum
:
'ENR005'
,
dataName
:
'社交媒体数据'
,
sector
:
'互联网'
,
dataBase
:
'微博平台'
,
dataScale
:
'1TB'
,
updateFrequency
:
'实时'
,
enrollDate
:
'2023-08-01'
,
storageNum
:
'ST005'
,
storagePlatform
:
'社交媒体数据存证平台E'
,
dataStructure
:
'非结构化数据'
,
ruleExplain
:
'社交媒体文本情感分析算法'
,
},
{
"title"
:
"用户行为模式分析"
,
"applicant"
:
"北京智联未来科技有限公司"
,
"dataSource"
:
"第三方合作"
,
"applyScene"
:
"市场研究"
,
"applyTime"
:
"2024-12-01"
,
"state"
:
"已确认"
title
:
'用户行为模式分析'
,
applicant
:
'北京智联未来科技有限公司'
,
dataSource
:
'第三方合作'
,
applyScene
:
'市场研究'
,
applyTime
:
'2024-12-01'
,
state
:
'已确认'
,
enrollNum
:
'ENR007'
,
dataName
:
'教育数据'
,
sector
:
'教育行业'
,
dataBase
:
'大学课程管理系统'
,
dataScale
:
'200GB'
,
updateFrequency
:
'每月'
,
enrollDate
:
'2023-04-12'
,
storageNum
:
'ST007'
,
storagePlatform
:
'教育数据存证平台G'
,
dataStructure
:
'关系型数据库'
,
ruleExplain
:
'基于学生学习情况的成绩预测模型'
,
},
{
"title"
:
"实时物流跟踪优化"
,
"applicant"
:
"上海速达物流有限公司"
,
"dataSource"
:
"自行生产"
,
"applyScene"
:
"物流管理"
,
"applyTime"
:
"2024-12-15"
,
"state"
:
"已确认"
title
:
'实时物流跟踪优化'
,
applicant
:
'上海速达物流有限公司'
,
dataSource
:
'自行生产'
,
applyScene
:
'物流管理'
,
applyTime
:
'2024-12-15'
,
state
:
'已确认'
,
enrollNum
:
'ENR009'
,
dataName
:
'供应链数据'
,
sector
:
'物流'
,
dataBase
:
'全球供应链管理系统'
,
dataScale
:
'8TB'
,
updateFrequency
:
'每周'
,
enrollDate
:
'2023-02-05'
,
storageNum
:
'ST009'
,
storagePlatform
:
'供应链数据存证平台I'
,
dataStructure
:
'表格数据'
,
ruleExplain
:
'基于需求预测的供应链优化算法'
,
},
];
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment