Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
N
nse-ui
概览
Overview
Details
Activity
Cycle Analytics
版本库
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
问题
0
Issues
0
列表
Board
标记
里程碑
合并请求
0
Merge Requests
0
CI / CD
CI / CD
流水线
作业
日程表
图表
维基
Wiki
代码片段
Snippets
成员
Members
Collapse sidebar
Close sidebar
活动
图像
聊天
创建新问题
作业
提交
Issue Boards
Open sidebar
吴超
nse-ui
Commits
88e2a25d
Commit
88e2a25d
authored
Sep 26, 2025
by
ningjihai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
13123
parent
db33f6e9
显示空白字符变更
内嵌
并排
正在显示
5 个修改的文件
包含
31 行增加
和
17 行删除
+31
-17
src/views/classification/Verification/index.vue
+7
-2
src/views/discover/Discover/list.vue
+12
-8
src/views/itemLogSet/DesensitizationItemLog/index.vue
+6
-1
src/views/itemLogSet/ProjectEncryptedLog/index.vue
+4
-1
src/views/project/Project/list.vue
+2
-5
没有找到文件。
src/views/classification/Verification/index.vue
View file @
88e2a25d
<
script
setup
name=
"
ProjectManageList
"
>
<
script
setup
name=
"
ClassificationVerification
"
>
import
{
getCurrentInstance
,
reactive
,
ref
,
watch
,
onMounted
,
computed
,
nextTick
}
from
'vue'
import
{
ElMessage
,
ElMessageBox
}
from
'element-plus'
import
{
useRouter
}
from
'vue-router'
...
...
@@ -398,7 +398,12 @@ const resetSummary = () => {
})
}
function
pageProjectManage
()
{
changeRoute
()
router
.
push
({
path
:
'/project/Project'
})
}
</
script
>
<
template
>
...
...
src/views/discover/Discover/list.vue
View file @
88e2a25d
...
...
@@ -410,17 +410,19 @@ const handleAddEditConfirm = (submitData, isEditMode) =>{
</PageTitle>
<div
class=
"app-container__body"
>
<div>
<query-form
ref=
"QueryFormRef"
v-model=
"queryParams"
@
query=
"onQuery"
@
reset=
"onReset"
@
add=
"handleAdd"
/>
@
add=
"handleAdd"
/>
<div
style=
"flex:1;"
>
<el-table
:data=
"tableData"
stripe
height=
"100%"
style=
"width: 100%"
>
<el-table-column
...
...
@@ -608,6 +610,7 @@ const handleAddEditConfirm = (submitData, isEditMode) =>{
</template>
</el-table-column>
</el-table>
</div>
<pagination
v-show=
"total > 0"
:total=
"total"
...
...
@@ -615,18 +618,19 @@ const handleAddEditConfirm = (submitData, isEditMode) =>{
v-model:limit=
"queryParams.pagesize"
@
pagination=
"getList"
/>
</div>
</div>
<!-- 新增/编辑发现任务弹窗 -->
<!-- <AddDiscoveryDialog ref="addDiscoveryDialogRef" @confirm="handleAddEditConfirm" /> -->
</div>
<SmartDiscoveryDialog
v-model=
"smartDiscoveryDialogVisible"
ref=
"smartDiscoveryDialogRef"
@
discover=
"disCoverSmart"
/>
</div>
<!-- 新增/编辑发现任务弹窗 -->
<!-- <AddDiscoveryDialog ref="addDiscoveryDialogRef" @confirm="handleAddEditConfirm" /> -->
</template>
<
style
lang=
"scss"
scoped
>
...
...
src/views/itemLogSet/DesensitizationItemLog/index.vue
View file @
88e2a25d
...
...
@@ -90,12 +90,17 @@ onMounted(() => {
</PageTitle>
<div
class=
"app-container__body"
>
<query-form
ref=
"QueryFormRef"
v-model=
"queryParams"
@
query=
"onQuery"
@
reset=
"onReset"
/>
<el-table
v-loading=
"loading"
:data=
"logList"
border
style=
"width: 100%"
>
<div
style=
"flex:1;"
>
<el-table
v-loading=
"loading"
:data=
"logList"
stripe
height=
"100%"
style=
"width: 100%"
>
<el-table-column
prop=
"createuser"
label=
"用户"
align=
"center"
width=
"200"
/>
<el-table-column
prop=
"createtime"
label=
"时间"
align=
"center"
width=
"180"
/>
<el-table-column
prop=
"code"
label=
"操作代码"
align=
"center"
width=
"180"
/>
<el-table-column
prop=
"operationMassage"
label=
"操作信息"
align=
"center"
show-overflow-tooltip
/>
</el-table>
</div>
<pagination
v-show=
"total > 0"
:total=
"total"
v-model:page=
"queryParams.page"
v-model:limit=
"queryParams.rows"
@
pagination=
"getList"
/>
...
...
src/views/itemLogSet/ProjectEncryptedLog/index.vue
View file @
88e2a25d
...
...
@@ -90,12 +90,15 @@ onMounted(() => {
</PageTitle>
<div
class=
"app-container__body"
>
<query-form
ref=
"QueryFormRef"
v-model=
"queryParams"
@
query=
"onQuery"
@
reset=
"onReset"
/>
<el-table
v-loading=
"loading"
:data=
"logList"
border
style=
"width: 100%"
>
<div
style=
"flex:1;"
>
<el-table
v-loading=
"loading"
:data=
"logList"
stripe
height=
"100%"
style=
"width: 100%"
>
<el-table-column
prop=
"operptionUser"
label=
"用户"
align=
"center"
width=
"200"
/>
<el-table-column
prop=
"code"
label=
"操作代码"
align=
"center"
width=
"180"
/>
<el-table-column
prop=
"operModule"
label=
"操作模块"
align=
"center"
width=
"200"
/>
<el-table-column
prop=
"operptionMassage"
label=
"操作信息"
align=
"center"
show-overflow-tooltip
/>
</el-table>
</div>
<pagination
v-show=
"total > 0"
:total=
"total"
v-model:page=
"queryParams.page"
v-model:limit=
"queryParams.rows"
@
pagination=
"getList"
/>
...
...
src/views/project/Project/list.vue
View file @
88e2a25d
...
...
@@ -421,9 +421,7 @@ onMounted(()=>{
</
template
>
</PageTitle>
<div
class=
"app-container__body"
>
<query-form
ref=
"QueryFormRef"
v-model=
"queryParams"
...
...
@@ -437,7 +435,7 @@ onMounted(()=>{
:data=
"tableList"
v-loading=
"loading"
stripe
style=
"width: 100%; margin-top: 20px
"
style=
"width: 100%;
"
>
<el-table-column
type=
"index"
...
...
@@ -540,7 +538,7 @@ onMounted(()=>{
/>
</div>
</div>
<ProjectEditDialog
v-model:visible=
"dialogVisible"
:mode=
"dialogMode"
...
...
@@ -567,7 +565,6 @@ onMounted(()=>{
:project-id=
"currentImportProjectId"
@
success=
"handleImportSuccess"
/>
</div>
</template>
<
style
lang=
"scss"
scoped
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论