Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
iBiz-Vue-R7-Res
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
iBiz-R7前端标准模板
iBiz-Vue-R7-Res
提交
f8ae7a25
提交
f8ae7a25
编写于
12月 13, 2022
作者:
RedPig97
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update:文件上传样式
上级
ee8db3b9
变更
2
显示空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
30 行增加
和
8 行删除
+30
-8
app-ey-upload.scss
src/components/app-ey-upload/app-ey-upload.scss
+14
-1
app-ey-upload.vue
src/components/app-ey-upload/app-ey-upload.vue
+16
-7
未找到文件。
src/components/app-ey-upload/app-ey-upload.scss
浏览文件 @
f8ae7a25
...
@@ -53,15 +53,28 @@
...
@@ -53,15 +53,28 @@
line-height
:
20px
;
line-height
:
20px
;
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
gap
:
3
0px
;
gap
:
1
0px
;
.file-title
{
.file-title
{
color
:
var
(
--
app-color-blue
);
color
:
var
(
--
app-color-blue
);
cursor
:
pointer
;
cursor
:
pointer
;
min-width
:
270px
;
}
}
.file-icon
{
.file-icon
{
cursor
:
pointer
;
cursor
:
pointer
;
display
:
flex
;
display
:
flex
;
align-items
:
center
;
align-items
:
center
;
}
}
.file-version
{
min-width
:
150px
;
}
.file-size
{
min-width
:
120px
;
}
.file-owner
{
min-width
:
180px
;
}
.file-time
{
min-width
:
210px
;
}
}
}
}
}
\ No newline at end of file
src/components/app-ey-upload/app-ey-upload.vue
浏览文件 @
f8ae7a25
...
@@ -18,8 +18,8 @@
...
@@ -18,8 +18,8 @@
<span>
文件上传时间:2022/10/31 18:49:12
</span>
<span>
文件上传时间:2022/10/31 18:49:12
</span>
</span>
</span>
<div
class=
"file-icon"
>
<div
class=
"file-icon"
>
<
img
v-if=
"!buttonCount"
src=
"assets/img/ey_switch.svg"
@
click=
"onRemove(item,index, true)"
>
<
!--
<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)"
>
<img
src=
"assets/img/remove_circle.svg"
@
click=
"onRemove(item,index)"
>
</div>
</div>
</el-col>
</el-col>
<el-col
v-for=
"count in buttonCount"
:key=
"count"
class=
"app-ey-upload__item"
>
<el-col
v-for=
"count in buttonCount"
:key=
"count"
class=
"app-ey-upload__item"
>
...
@@ -158,6 +158,14 @@ export default class AppEYUpload extends Vue {
...
@@ -158,6 +158,14 @@ export default class AppEYUpload extends Vue {
*/
*/
@
Prop
({
default
:
false
})
public
showOcrview
?:
boolean
;
@
Prop
({
default
:
false
})
public
showOcrview
?:
boolean
;
/**
* 是否显示预览按钮
*
* @type {boolean}
* @memberof AppEYUpload
*/
@
Prop
({
default
:
false
})
public
previewMode
?:
boolean
;
/**
/**
* 表单是否处于编辑状态(有真实主键,srfuf='1';srfuf='0'时处于新建未保存)
* 表单是否处于编辑状态(有真实主键,srfuf='1';srfuf='0'时处于新建未保存)
*
*
...
@@ -410,9 +418,13 @@ export default class AppEYUpload extends Vue {
...
@@ -410,9 +418,13 @@ export default class AppEYUpload extends Vue {
if
(
this
.
isCreate
==
true
)
{
if
(
this
.
isCreate
==
true
)
{
this
.
isUpdateBatch
=
true
;
this
.
isUpdateBatch
=
true
;
}
}
if
(
this
.
buttonCount
>
1
)
{
this
.
buttonCount
--
;
this
.
buttonCount
--
;
}
// 保存到文件列表进行显示
// 保存到文件列表进行显示
this
.
uploadFileList
.
push
(
response
.
data
);
this
.
uploadFileList
.
push
(
response
.
data
);
console
.
log
(
this
.
uploadFileList
);
// persistence=true时需要持久化表单属性
// persistence=true时需要持久化表单属性
if
(
this
.
persistence
==
true
&&
this
.
uploadFileList
.
length
>
0
)
{
if
(
this
.
persistence
==
true
&&
this
.
uploadFileList
.
length
>
0
)
{
const
value
=
JSON
.
stringify
(
this
.
uploadFileList
);
const
value
=
JSON
.
stringify
(
this
.
uploadFileList
);
...
@@ -561,7 +573,7 @@ export default class AppEYUpload extends Vue {
...
@@ -561,7 +573,7 @@ export default class AppEYUpload extends Vue {
* @param index
* @param index
* @memberof AppEYUpload
* @memberof AppEYUpload
*/
*/
public
onRemove
(
item
:
any
,
index
:
number
,
isSwitch
:
boolean
=
false
)
{
public
onRemove
(
item
:
any
,
index
:
number
)
{
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"
),
{
...
@@ -579,9 +591,6 @@ export default class AppEYUpload extends Vue {
...
@@ -579,9 +591,6 @@ 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
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录