Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
jeecg
jeecg-boot
提交
c2db7691
J
jeecg-boot
项目概览
jeecg
/
jeecg-boot
上一次同步 3 年多
通知
880
Star
24375
Fork
84
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
J
jeecg-boot
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
c2db7691
编写于
11月 30, 2020
作者:
JEECG低代码平台
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
JeecgBoot 2.4 微服务正式版本发布,基于SpringBoot的低代码平台
上级
543a49fc
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
12 addition
and
11 deletion
+12
-11
ant-design-vue-jeecg/src/components/jeecg/JImageUpload.vue
ant-design-vue-jeecg/src/components/jeecg/JImageUpload.vue
+6
-4
ant-design-vue-jeecg/src/views/examples/list/CardList.vue
ant-design-vue-jeecg/src/views/examples/list/CardList.vue
+3
-4
ant-design-vue-jeecg/src/views/system/modules/GateWayRouteModal.vue
...-vue-jeecg/src/views/system/modules/GateWayRouteModal.vue
+0
-3
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/controller/SysUploadController.java
.../jeecg/modules/system/controller/SysUploadController.java
+3
-0
未找到文件。
ant-design-vue-jeecg/src/components/jeecg/JImageUpload.vue
浏览文件 @
c2db7691
...
...
@@ -15,10 +15,12 @@
@change="handleChange"
@preview="handlePreview"
:class="!isMultiple?'imgupload':''">
<img
v-if=
"!isMultiple && picUrl"
:src=
"getAvatarView()"
style=
"height:104px;max-width:300px"
/>
<div
v-else
class=
"iconp"
>
<a-icon
:type=
"uploadLoading ? 'loading' : 'plus'"
/>
<div
class=
"ant-upload-text"
>
{{
text
}}
</div>
<div
style=
"width:104px;height:104px"
>
<img
v-if=
"!isMultiple && picUrl"
:src=
"getAvatarView()"
style=
"width:100%;height:100%"
/>
<div
v-else
class=
"iconp"
>
<a-icon
:type=
"uploadLoading ? 'loading' : 'plus'"
/>
<div
class=
"ant-upload-text"
>
{{
text
}}
</div>
</div>
</div>
<a-modal
:visible=
"previewVisible"
:footer=
"null"
@
cancel=
"handleCancel()"
>
<img
alt=
"example"
style=
"width: 100%"
:src=
"previewImage"
/>
...
...
ant-design-vue-jeecg/src/views/examples/list/CardList.vue
浏览文件 @
c2db7691
...
...
@@ -5,7 +5,7 @@
:dataSource="dataSource"
>
<a-list-item
slot=
"renderItem"
slot-scope=
"item, index"
>
<template
v-if=
"i
tem === null
"
>
<template
v-if=
"i
ndex === 0
"
>
<a-button
class=
"new-btn"
type=
"dashed"
>
<a-icon
type=
"plus"
/>
新增产品
...
...
@@ -32,8 +32,7 @@
<
script
>
const
dataSource
=
[]
dataSource
.
push
(
null
)
for
(
let
i
=
0
;
i
<
11
;
i
++
)
{
for
(
let
i
=
0
;
i
<
12
;
i
++
)
{
dataSource
.
push
({
title
:
'
Alipay
'
,
avatar
:
'
https://gw.alipayobjects.com/zos/rmsportal/WdGqmHpayyMjiEhcKoVE.png
'
,
...
...
@@ -95,7 +94,7 @@
background-color: #fff;
border-radius: 2px;
width: 100%;
height: 18
8
px;
height: 18
6
px;
}
.meta-content {
...
...
ant-design-vue-jeecg/src/views/system/modules/GateWayRouteModal.vue
浏览文件 @
c2db7691
...
...
@@ -174,9 +174,6 @@
showInput
(
item
,
index
)
{
this
.
inputVisible
=
true
this
.
currentNameIndex
=
index
this
.
$nextTick
(
function
()
{
this
.
$refs
.
input
.
focus
()
})
},
//路由选项输入框失去焦点事件
handleInputChange
(
e
)
{
...
...
jeecg-boot/jeecg-boot-module-system/src/main/java/org/jeecg/modules/system/controller/SysUploadController.java
浏览文件 @
c2db7691
...
...
@@ -42,6 +42,9 @@ public class SysUploadController {
String
orgName
=
file
.
getOriginalFilename
();
// 获取文件名
orgName
=
CommonUtils
.
getFileName
(
orgName
);
String
file_url
=
MinioUtil
.
upload
(
file
,
bizPath
);
if
(
oConvertUtils
.
isEmpty
(
file_url
)){
return
Result
.
error
(
"上传失败,请检查配置信息是否正确!"
);
}
//保存文件信息
OSSFile
minioFile
=
new
OSSFile
();
minioFile
.
setFileName
(
orgName
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录