Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
01b062e6
提交
01b062e6
编写于
12月 13, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update: 安永文件上传
上级
65f005eb
变更
2
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
138 行增加
和
3 行删除
+138
-3
app-ey-upload.scss
src/components/app-ey-upload/app-ey-upload.scss
+65
-1
app-ey-upload.vue
src/components/app-ey-upload/app-ey-upload.vue
+73
-2
未找到文件。
src/components/app-ey-upload/app-ey-upload.scss
浏览文件 @
01b062e6
.app-ey-upload
{
.app-ey-upload
{
>
.el-row
{
display
:
flex
;
flex-direction
:
column
;
align-items
:
flex-start
;
.app-ey-upload__item
+
.app-ey-upload__item
{
margin-top
:
10px
;
}
}
.el-upload
{
height
:
34px
;
width
:
270px
;
.el-button
{
height
:
100%
;
width
:
100%
;
padding
:
4px
10px
;
border-radius
:
0
;
background-color
:
var
(
--
app-color-white
);
border
:
1px
solid
var
(
--
app-color-gray-235
);
&
:hover
{
color
:
var
(
--
app-color-blue
);
}
span
{
font-size
:
12px
;
line-height
:
20px
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
}
}
}
.app-ey-upload__item
{
height
:
34px
;
display
:
flex
;
align-items
:
center
;
>
div
{
height
:
100%
;
}
}
.app-ey-upload__buttons
{
width
:
30px
;
display
:
flex
;
justify-content
:
center
;
align-items
:
center
;
img
{
height
:
20px
;
width
:
20px
;
cursor
:
pointer
;
}
}
.app-ey-upload__preview
{
font-size
:
12px
;
line-height
:
20px
;
display
:
flex
;
align-items
:
center
;
gap
:
30px
;
.file-title
{
color
:
var
(
--
app-color-blue
);
cursor
:
pointer
;
}
.file-icon
{
cursor
:
pointer
;
display
:
flex
;
align-items
:
center
;
}
}
}
}
\ No newline at end of file
src/components/app-ey-upload/app-ey-upload.vue
浏览文件 @
01b062e6
<
template
>
<
template
>
<div
class=
"app-ey-upload"
>
安永文件上传
</div>
<div
class=
"app-ey-upload"
>
<el-row>
<el-col
v-for=
"(item,index) in uploadFileList"
:key=
"index"
class=
"app-ey-upload__item app-ey-upload__preview"
>
<span
class=
"file-title"
@
click=
"onDownload(item)"
>
<span>
{{
item
.
name
}}
</span>
</span>
<span
class=
"file-version"
>
<span>
文件版本号:v1.0
</span>
</span>
<span
class=
"file-size"
>
<span>
文件大小:
{{
getFileSize
(
item
.
size
)
}}
</span>
</span>
<span
class=
"file-owner"
>
<span>
文件上传人:Na Na Zhang
</span>
</span>
<span
class=
"file-time"
>
<span>
文件上传时间:2022/10/31 18:49:12
</span>
</span>
<div
class=
"file-icon"
>
<img
v-if=
"!buttonCount"
src=
"assets/img/ey_switch.svg"
@
click=
"onRemove(item,index, true)"
>
<img
v-else
src=
"assets/img/remove_circle.svg"
@
click=
"onRemove(item,index)"
>
</div>
</el-col>
<el-col
v-for=
"count in buttonCount"
:key=
"count"
class=
"app-ey-upload__item"
>
<el-upload
ref=
"upload"
list-type=
"text"
:disabled=
"disabled"
:action=
"getAction()"
:headers=
"myHeaders"
:file-list=
"uploadFileList"
:show-file-list=
"false"
:http-request=
"customUploadFile"
>
<el-button
size=
"small"
:disabled=
"disabled"
>
<img
src=
"assets/img/ey_upload.svg"
>
文件上传
</el-button>
</el-upload>
<div
class=
"app-ey-upload__buttons"
>
<img
v-if=
"count === buttonCount"
src=
"assets/img/ic_add_circle.svg"
@
click=
"buttonCount++"
>
<img
v-else
src=
"assets/img/remove_circle.svg"
@
click=
"buttonCount--"
>
</div>
</el-col>
</el-row>
</div>
</
template
>
</
template
>
<
script
lang=
"ts"
>
<
script
lang=
"ts"
>
...
@@ -194,6 +238,14 @@ export default class AppEYUpload extends Vue {
...
@@ -194,6 +238,14 @@ export default class AppEYUpload extends Vue {
*/
*/
public
iframeUrl
:
any
=
""
;
public
iframeUrl
:
any
=
""
;
/**
* 按钮数量
*
* @type {number}
* @memberof AppEYUpload
*/
public
buttonCount
:
number
=
1
;
/**
/**
* 关闭自定义弹框
* 关闭自定义弹框
*
*
...
@@ -207,6 +259,21 @@ export default class AppEYUpload extends Vue {
...
@@ -207,6 +259,21 @@ export default class AppEYUpload extends Vue {
iframe
.
parentNode
.
removeChild
(
"fileIframe"
);
iframe
.
parentNode
.
removeChild
(
"fileIframe"
);
}
}
/**
* 获取文件大小
*
* @memberof AppEYUpload
*/
public
getFileSize
(
size
:
number
)
{
if
(
size
<
1024
)
{
return
`
${
size
}
Byte`
;
}
else
if
(
size
<
1024
*
1024
)
{
return
`
${
size
/
1024
}
KB`
;
}
else
{
return
`
${
size
/
1024
/
1024
}
MB`
;
}
}
/**
/**
* 拼接上传路径
* 拼接上传路径
*
*
...
@@ -343,6 +410,7 @@ export default class AppEYUpload extends Vue {
...
@@ -343,6 +410,7 @@ export default class AppEYUpload extends Vue {
if
(
this
.
isCreate
==
true
)
{
if
(
this
.
isCreate
==
true
)
{
this
.
isUpdateBatch
=
true
;
this
.
isUpdateBatch
=
true
;
}
}
this
.
buttonCount
--
;
// 保存到文件列表进行显示
// 保存到文件列表进行显示
this
.
uploadFileList
.
push
(
response
.
data
);
this
.
uploadFileList
.
push
(
response
.
data
);
// persistence=true时需要持久化表单属性
// persistence=true时需要持久化表单属性
...
@@ -493,7 +561,7 @@ export default class AppEYUpload extends Vue {
...
@@ -493,7 +561,7 @@ export default class AppEYUpload extends Vue {
* @param index
* @param index
* @memberof AppEYUpload
* @memberof AppEYUpload
*/
*/
public
onRemove
(
item
:
any
,
index
:
number
)
{
public
onRemove
(
item
:
any
,
index
:
number
,
isSwitch
:
boolean
=
false
)
{
let
_this
:
any
=
this
;
let
_this
:
any
=
this
;
if
(
item
)
{
if
(
item
)
{
MessageBox
.
confirm
(
_this
.
$t
(
"components.diskFileUpload.deleteFile"
),
_this
.
$t
(
"components.diskFileUpload.deleteFilePrompt"
),
{
MessageBox
.
confirm
(
_this
.
$t
(
"components.diskFileUpload.deleteFile"
),
_this
.
$t
(
"components.diskFileUpload.deleteFilePrompt"
),
{
...
@@ -511,6 +579,9 @@ export default class AppEYUpload extends Vue {
...
@@ -511,6 +579,9 @@ export default class AppEYUpload extends Vue {
}
}
// 从文件列表中删除
// 从文件列表中删除
this
.
uploadFileList
.
splice
(
index
,
1
);
this
.
uploadFileList
.
splice
(
index
,
1
);
if
(
isSwitch
)
{
this
.
buttonCount
++
;
}
// persistence=true时需要持久化表单属性
// persistence=true时需要持久化表单属性
if
(
this
.
persistence
==
true
)
{
if
(
this
.
persistence
==
true
)
{
const
value
=
JSON
.
stringify
(
this
.
uploadFileList
);
const
value
=
JSON
.
stringify
(
this
.
uploadFileList
);
...
...
编辑
预览
Markdown
格式
0%
请重试
or
添加新附件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录