Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
rs-cloud-platform-ui
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
2
Merge Requests
2
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
周健威
rs-cloud-platform-ui
Commits
394bbdf3
Commit
394bbdf3
authored
Jan 14, 2021
by
rencs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.14 bug
parent
943895ad
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
137 additions
and
77 deletions
+137
-77
index.vue
src/views/archiveDataManagement/dataList/index.vue
+4
-1
index.vue
...eManagement/industryApplication/applicationCate/index.vue
+8
-5
list.vue
src/views/webSiteManagement/satelliteIntroduction/list.vue
+125
-71
No files found.
src/views/archiveDataManagement/dataList/index.vue
View file @
394bbdf3
...
...
@@ -60,7 +60,7 @@
align=
"center"
>
</el-table-column>
<el-table-column
prop=
"imageResolution"
label=
"分辨率"
align=
"center"
>
<el-table-column
prop=
"imageResolution
Str
"
label=
"分辨率"
align=
"center"
>
</el-table-column>
<el-table-column
prop=
"imageTakeTimeStr"
label=
"拍摄时间"
align=
"center"
>
</el-table-column>
...
...
@@ -142,7 +142,10 @@ export default {
if
(
res
.
status
==
200
)
{
this
.
total
=
res
.
data
.
totalCount
;
this
.
list
=
res
.
data
.
data
;
this
.
list
.
map
((
item
)
=>
{
console
.
log
(
item
);
item
.
imageResolutionStr
=
item
.
imageResolution
.
join
(
"m,"
)
+
"m"
;
item
.
imageTakeTimeStr
=
timestamp2DateAuto
(
item
.
imageTakeTime
,
"yyyy-MM-dd hh:mm:ss"
...
...
src/views/webSiteManagement/industryApplication/applicationCate/index.vue
View file @
394bbdf3
...
...
@@ -163,13 +163,13 @@
}}
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"父级"
align=
"center"
>
<
!-- <
el-table-column label="父级" align="center">
<template slot-scope="scope">
<span class="typelevel">{{
getFatherTypeName(scope.row.pid)
}}</span>
</template>
</el-table-column>
</el-table-column>
-->
<el-table-column
label=
"排序"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
sort
}}
</span>
...
...
@@ -529,9 +529,12 @@ export default {
}
});
}
this
.
tableData
.
forEach
((
obj
,
index
)
=>
{
obj
.
index
=
((
this
.
typePagination
.
currentPage
-
1
)
*
this
.
typePagination
.
pageSize
)
+
(
++
index
)
})
this
.
tableData
.
forEach
((
obj
,
index
)
=>
{
obj
.
index
=
(
this
.
typePagination
.
currentPage
-
1
)
*
this
.
typePagination
.
pageSize
+
++
index
;
});
}
},
// 删除类型
...
...
src/views/webSiteManagement/satelliteIntroduction/list.vue
View file @
394bbdf3
This diff is collapsed.
Click to expand it.
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