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
37612864
Commit
37612864
authored
Dec 09, 2020
by
obt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
接口修复
parent
5109062d
Changes
6
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
617 additions
and
45 deletions
+617
-45
singleImageX.vue
src/components/Upload/singleImageX.vue
+0
-3
index.vue
...eManagement/industryApplication/applicationCate/index.vue
+10
-5
index.vue
...nt/industryApplication/applicationList/addUpApp/index.vue
+392
-0
index.vue
...ent/industryApplication/applicationList/appList/index.vue
+210
-34
index.vue
...eManagement/industryApplication/applicationList/index.vue
+3
-2
index.vue
...s/webSiteManagement/newsCategory/nebulaDynamics/index.vue
+2
-1
No files found.
src/components/Upload/singleImageX.vue
View file @
37612864
...
@@ -66,7 +66,6 @@ export default {
...
@@ -66,7 +66,6 @@ export default {
onUploadRequest
(
data
)
{
onUploadRequest
(
data
)
{
this
.
uploading
=
true
;
this
.
uploading
=
true
;
let
fileObj
=
data
.
file
;
let
fileObj
=
data
.
file
;
//获取图片详情信息
//获取图片详情信息
let
imgInfo
=
{};
let
imgInfo
=
{};
let
temp
=
URL
.
createObjectURL
(
fileObj
)
let
temp
=
URL
.
createObjectURL
(
fileObj
)
...
@@ -78,8 +77,6 @@ export default {
...
@@ -78,8 +77,6 @@ export default {
}
}
imgInfo
.
size
=
fileObj
.
size
;
imgInfo
.
size
=
fileObj
.
size
;
imgInfo
.
type
=
fileObj
.
type
;
imgInfo
.
type
=
fileObj
.
type
;
// FormData 对象
// FormData 对象
let
form
=
new
FormData
();
let
form
=
new
FormData
();
// 文件对象
// 文件对象
...
...
src/views/webSiteManagement/industryApplication/applicationCate/index.vue
View file @
37612864
<!--
<!--
* @Author: your name
* @Author: your name
* @Date: 2020-12-02 10:27:53
* @Date: 2020-12-02 10:27:53
* @LastEditTime: 2020-12-0
8 17:56:34
* @LastEditTime: 2020-12-0
9 11:24:17
* @LastEditors: Please set LastEditors
* @LastEditors: Please set LastEditors
* @Description: 类别管理
* @Description: 类别管理
* @FilePath: \rs-cloud-platform-ui\src\views\webSiteManagement\industryApplication\applicationList\index.vue
* @FilePath: \rs-cloud-platform-ui\src\views\webSiteManagement\industryApplication\applicationList\index.vue
...
@@ -446,10 +446,11 @@ export default {
...
@@ -446,10 +446,11 @@ export default {
message
:
"删除成功!!!"
,
message
:
"删除成功!!!"
,
type
:
'success'
type
:
'success'
});
});
let
index
=
this
.
tableData
.
findIndex
(
ele
=>
ele
.
id
==
type
.
id
)
this
.
pullListApplicationType
()
if
(
index
!=-
1
){
// let index = this.tableData.findIndex(ele => ele.id == type.id)
this
.
tableData
.
splice
(
index
,
1
)
// if(index!=-1){
}
// this.tableData.splice(index,1)
// }
}
else
{
}
else
{
this
.
$message
.
error
(
'操作失败,请稍后重试!!!'
);
this
.
$message
.
error
(
'操作失败,请稍后重试!!!'
);
}
}
...
@@ -483,6 +484,7 @@ export default {
...
@@ -483,6 +484,7 @@ export default {
message
:
message
,
message
:
message
,
type
:
'success'
type
:
'success'
});
});
this
.
pullAllApplicationType
()
}
else
{
}
else
{
this
.
$message
.
error
(
'操作失败,请稍后重试!!!'
);
this
.
$message
.
error
(
'操作失败,请稍后重试!!!'
);
}
}
...
@@ -491,10 +493,12 @@ export default {
...
@@ -491,10 +493,12 @@ export default {
changeHandleSize
(
val
)
{
changeHandleSize
(
val
)
{
// console.log(`每页 ${val} 条`);
// console.log(`每页 ${val} 条`);
this
.
typePagination
.
pageSize
=
val
this
.
typePagination
.
pageSize
=
val
this
.
pullListApplicationType
()
},
},
changeHandleCurrent
(
val
)
{
changeHandleCurrent
(
val
)
{
// console.log(`当前页: ${val}`);
// console.log(`当前页: ${val}`);
this
.
typePagination
.
currentPage
=
val
this
.
typePagination
.
currentPage
=
val
this
.
pullListApplicationType
()
},
},
onPreview
(
url
){
onPreview
(
url
){
this
.
form
.
coverImg
=
url
this
.
form
.
coverImg
=
url
...
@@ -648,6 +652,7 @@ export default {
...
@@ -648,6 +652,7 @@ export default {
width
:
50px
;
width
:
50px
;
height
:
50px
;
height
:
50px
;
object-fit
:
cover
;
object-fit
:
cover
;
cursor
:
pointer
;
}
}
.operators
{
.operators
{
width
:
300px
;
width
:
300px
;
...
...
src/views/webSiteManagement/industryApplication/applicationList/addApp/index.vue
→
src/views/webSiteManagement/industryApplication/applicationList/add
Up
App/index.vue
View file @
37612864
This diff is collapsed.
Click to expand it.
src/views/webSiteManagement/industryApplication/applicationList/appList/index.vue
View file @
37612864
This diff is collapsed.
Click to expand it.
src/views/webSiteManagement/industryApplication/applicationList/index.vue
View file @
37612864
<!--
<!--
* @Author: your name
* @Author: your name
* @Date: 2020-12-02 10:27:53
* @Date: 2020-12-02 10:27:53
* @LastEditTime: 2020-12-0
8 14:32:42
* @LastEditTime: 2020-12-0
9 09:43:51
* @LastEditors: Please set LastEditors
* @LastEditors: Please set LastEditors
* @Description: 应用详情
* @Description: 应用详情
* @FilePath: \rs-cloud-platform-ui\src\views\webSiteManagement\industryApplication\applicationList\index.vue
* @FilePath: \rs-cloud-platform-ui\src\views\webSiteManagement\industryApplication\applicationList\index.vue
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
<
script
>
<
script
>
import
appList
from
'./appList/index'
import
appList
from
'./appList/index'
import
addApp
from
'./addApp/index'
import
addApp
from
'./add
Up
App/index'
export
default
{
export
default
{
name
:
'Container'
,
name
:
'Container'
,
components
:
{
components
:
{
...
@@ -26,6 +26,7 @@ export default {
...
@@ -26,6 +26,7 @@ export default {
data
(){
data
(){
return
{
return
{
componentName
:
"appList"
,
componentName
:
"appList"
,
info
:
null
,
}
}
},
},
mounted
()
{
mounted
()
{
...
...
src/views/webSiteManagement/newsCategory/nebulaDynamics/index.vue
View file @
37612864
<!--
<!--
* @Author: Jenkins
* @Author: Jenkins
* @Date: 2020-12-01 09:54:12
* @Date: 2020-12-01 09:54:12
* @LastEditTime: 2020-12-0
8 14:24:04
* @LastEditTime: 2020-12-0
9 11:14:35
* @LastEditors: Please set LastEditors
* @LastEditors: Please set LastEditors
* @Description: 星云动态
* @Description: 星云动态
* @FilePath: \rs-cloud-platform-ui\src\views\webSiteManagement\newsCategory\index.vue
* @FilePath: \rs-cloud-platform-ui\src\views\webSiteManagement\newsCategory\index.vue
...
@@ -1031,6 +1031,7 @@ export default {
...
@@ -1031,6 +1031,7 @@ export default {
width
:
50px
;
width
:
50px
;
height
:
50px
;
height
:
50px
;
object-fit
:
cover
;
object-fit
:
cover
;
cursor
:
pointer
;
}
}
.operators
{
.operators
{
width
:
300px
;
width
:
300px
;
...
...
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