Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
lmp_web
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
lmp
lmp_web
Commits
71b2ad6e
You need to sign in or sign up before continuing.
Commit
71b2ad6e
authored
Apr 09, 2024
by
mhw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bug修复
parent
ba227b4e
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
9 deletions
+13
-9
cleaningTable.vue
...ining/dataServices/dataCleansing/dialog/cleaningTable.vue
+1
-1
editOrAdd.vue
...tTraining/dataServices/dataCleansing/dialog/editOrAdd.vue
+5
-5
index.vue
src/views/gptTraining/dataServices/dataCleansing/index.vue
+7
-3
No files found.
src/views/gptTraining/dataServices/dataCleansing/dialog/cleaningTable.vue
View file @
71b2ad6e
...
...
@@ -68,7 +68,7 @@ export default {
.
then
((
res
)
=>
{
resolve
({
dataList
:
res
.
data
.
dataList
,
totalCount
:
0
totalCount
:
res
.
data
.
totalCount
})
})
.
catch
((
e
)
=>
{
...
...
src/views/gptTraining/dataServices/dataCleansing/dialog/editOrAdd.vue
View file @
71b2ad6e
...
...
@@ -142,7 +142,7 @@ export default {
}
},
isopen
:
true
,
value
:
0
value
:
1000
0
},
{
icon
:
''
,
...
...
@@ -159,7 +159,7 @@ export default {
}
},
isopen
:
true
,
value
:
0
value
:
0
.2
},
{
icon
:
''
,
...
...
@@ -176,7 +176,7 @@ export default {
}
},
isopen
:
true
,
value
:
0
value
:
0
.96
},
{
icon
:
''
,
...
...
@@ -193,7 +193,7 @@ export default {
}
},
isopen
:
true
,
value
:
0
value
:
0
.3
},
{
icon
:
''
,
...
...
@@ -210,7 +210,7 @@ export default {
}
},
isopen
:
true
,
value
:
0
value
:
0
.001
}
],
desensitiveConfig
:
[
...
...
src/views/gptTraining/dataServices/dataCleansing/index.vue
View file @
71b2ad6e
...
...
@@ -32,8 +32,11 @@
<el-form-item
label-width=
"0px"
>
<el-button
class=
"add"
type=
"primary"
icon=
"el-icon-plus"
:size=
"defaultFormItemSize"
@
click=
"add()"
>
创建任务
</el-button>
</el-form-item>
<el-form-item
label=
"清洗数据集名称"
prop=
"formFilter.dataName"
label-width=
"120px"
>
<el-input
class=
"filter-item"
v-model=
"myDataSetPage.formFilter.dataName"
:clearable=
"true"
placeholder=
"清洗数据集名称"
/>
<el-form-item
label=
"清洗数据集名称"
prop=
"formFilter.datasetName"
label-width=
"120px"
>
<el-input
class=
"filter-item"
v-model=
"myDataSetPage.formFilter.datasetName"
:clearable=
"true"
placeholder=
"清洗数据集名称"
/>
</el-form-item>
<el-form-item
label=
"任务名称"
prop=
"formFilter.taskName"
label-width=
"120px"
>
<el-input
class=
"filter-item"
v-model=
"myDataSetPage.formFilter.taskName"
:clearable=
"true"
placeholder=
"任务名称"
/>
</el-form-item>
</filter-box>
</el-form>
...
...
@@ -41,6 +44,7 @@
<vxe-table
border
show-header-overflow
show-overflow
:row-config=
"{ isHover: true }"
:data=
"myDataSetPage.tableData.impl.dataList"
min-height=
"96"
>
<vxe-column
field=
"cleanId"
title=
"任务序号"
></vxe-column>
<vxe-column
field=
"taskName"
title=
"任务名称"
></vxe-column>
<vxe-column
field=
"cleanStatus"
title=
"清洗状态"
>
<
template
slot-scope=
"scope"
>
{{
CleanStatus
.
getValue
(
scope
.
row
.
cleanStatus
)
}}
...
...
@@ -161,7 +165,7 @@ export default {
.
then
((
res
)
=>
{
resolve
({
dataList
:
res
.
data
.
dataList
,
totalCount
:
0
totalCount
:
res
.
data
.
totalCount
}
)
}
)
.
catch
((
e
)
=>
{
...
...
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