Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mes-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
0
Merge Requests
0
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
周远喜
mes-ui
Commits
101410e6
Commit
101410e6
authored
Oct 22, 2020
by
仇晓婷
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
文件查看组件
parent
06651868
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
129 additions
and
18 deletions
+129
-18
filesView.vue
components/page/filesView.vue
+85
-0
detail.vue
pages/project/project/detail.vue
+0
-1
details.vue
pages/project/project/details.vue
+0
-1
index.vue
pages/project/project/index.vue
+41
-16
iview.js
plugins/iview.js
+3
-0
No files found.
components/page/filesView.vue
0 → 100644
View file @
101410e6
<
template
>
<div
class=
"files-list"
>
<Tag
v-for=
"(item, index) in nameList"
:key=
"index"
:name=
"item.id"
>
<a
@
click=
"downFile(item)"
target=
"_blank"
>
{{
item
.
fileName
}}
</a>
</Tag>
<Modal
v-model=
"modal"
title=
"查看"
width=
"800"
footer-hide
:mask-closable=
"false"
>
<div
class=
"img"
>
<img
:src=
"avatorPath"
width=
"100%"
height=
"100%"
/>
</div>
</Modal>
</div>
</
template
>
<
script
>
export
default
{
name
:
""
,
data
()
{
return
{
downUrl
:
fileUrlDown
,
avatorPath
:
""
,
nameList
:
[],
modal
:
false
,
};
},
props
:
{
parms
:
{
type
:
[
String
,
Object
],
default
:
""
,
},
},
mounted
()
{
if
(
this
.
parms
.
eid
)
{
this
.
filesList
();
}
},
methods
:
{
filesList
()
{
//查询上传到文件服务器上的文件
this
.
$http
.
sysUser
.
getFile
(
this
.
parms
).
then
((
res
)
=>
{
if
(
res
.
data
!=
[]
&&
res
.
data
.
length
>
0
)
{
var
items
=
[];
res
.
data
.
forEach
((
data
)
=>
{
let
objImag
=
{};
objImag
.
fileName
=
data
.
fileName
;
objImag
.
filePath
=
data
.
downloadPath
;
objImag
.
id
=
data
.
id
;
objImag
.
fileType
=
data
.
fileType
;
items
.
push
(
objImag
);
});
this
.
nameList
=
items
;
}
});
},
downFile
(
item
)
{
console
.
log
(
item
);
if
(
item
.
fileType
==
"jpg"
||
item
.
fileType
==
"gif"
||
item
.
fileType
==
"png"
)
{
this
.
avatorPath
=
this
.
downUrl
+
item
.
filePath
;
this
.
modal
=
true
;
}
else
{
window
.
open
(
this
.
downUrl
+
item
.
filePath
,
"_blank"
);
}
},
},
watch
:
{
"parms.eid"
(
v
)
{
if
(
v
)
{
this
.
filesList
();
}
},
},
};
</
script
>
<
style
scoped
>
</
style
>
pages/project/project/detail.vue
View file @
101410e6
...
@@ -53,7 +53,6 @@ export default {
...
@@ -53,7 +53,6 @@ export default {
detail
:
null
,
detail
:
null
,
curId
:
this
.
eid
,
curId
:
this
.
eid
,
avatorPath
:
""
,
avatorPath
:
""
,
downUrl
:
fileUrlDown
,
entity
:
{},
entity
:
{},
rules
:
{
rules
:
{
name
:
[{
required
:
true
,
message
:
"必填"
,
trigger
:
"blur"
}],
name
:
[{
required
:
true
,
message
:
"必填"
,
trigger
:
"blur"
}],
...
...
pages/project/project/details.vue
View file @
101410e6
...
@@ -47,7 +47,6 @@ export default {
...
@@ -47,7 +47,6 @@ export default {
data
()
{
data
()
{
return
{
return
{
avatorPath
:
""
,
avatorPath
:
""
,
downUrl
:
fileUrlDown
,
entity
:
this
.
row
,
entity
:
this
.
row
,
parms
:
{
parms
:
{
app
:
"material"
,
app
:
"material"
,
...
...
pages/project/project/index.vue
View file @
101410e6
...
@@ -123,6 +123,15 @@
...
@@ -123,6 +123,15 @@
>
>
<component
:is=
"detail"
:eid=
"curId"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
<component
:is=
"detail"
:eid=
"curId"
@
on-close=
"cancel"
@
on-ok=
"ok"
/>
</Modal>
</Modal>
<Modal
v-model=
"modal1"
title=
"查看附件"
width=
"800"
footer-hide
:mask-closable=
"false"
>
<FilesView
ref=
"refFile"
:parms=
"parms"
class=
"files-detail"
/>
</Modal>
</div>
</div>
</template>
</template>
<
script
>
<
script
>
...
@@ -235,21 +244,21 @@ export default {
...
@@ -235,21 +244,21 @@ export default {
);
);
},
},
},
},
//
{
{
//
key: "attachment",
key
:
"attachment"
,
//
title: this.l("attachment"),
title
:
this
.
l
(
"attachment"
),
//
align: "center",
align
:
"center"
,
//
high: true,
high
:
true
,
//
render: (h, params) => {
render
:
(
h
,
params
)
=>
{
//
return h(
return
h
(
//
"a",
"a"
,
//
{
{
// on: { click: () => this.view(params.row.id
) },
on
:
{
click
:
()
=>
this
.
viewFiles
(
params
.
row
)
},
//
},
},
//
"查看附件"
"查看附件"
//
);
);
//
},
},
//
},
},
// {
// {
// key: "phase",
// key: "phase",
// title: this.l("phase"),
// title: this.l("phase"),
...
@@ -345,10 +354,17 @@ export default {
...
@@ -345,10 +354,17 @@ export default {
typeInfo
:
"table"
,
typeInfo
:
"table"
,
iconInfo
:
"md-list"
,
iconInfo
:
"md-list"
,
titleInfo
:
"列表模式"
,
titleInfo
:
"列表模式"
,
parms
:
{
app
:
"material"
,
eid
:
null
,
name
:
""
,
field
:
""
,
},
modal1
:
false
,
};
};
},
},
mounted
()
{
mounted
()
{
console
.
log
(
this
);
this
.
parms
.
eid
=
this
.
$u
.
guid
(
);
},
},
async
fetch
({
store
,
params
})
{
async
fetch
({
store
,
params
})
{
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
await
store
.
dispatch
(
"loadDictionary"
);
// 加载数据字典
...
@@ -390,6 +406,12 @@ export default {
...
@@ -390,6 +406,12 @@ export default {
console
.
log
(
row
);
console
.
log
(
row
);
window
.
open
(
fileUrlDown
+
row
.
picture
,
"_blank"
);
window
.
open
(
fileUrlDown
+
row
.
picture
,
"_blank"
);
},
},
viewFiles
(
row
)
{
console
.
log
(
row
);
this
.
parms
.
eid
=
row
.
attachment
;
this
.
modal1
=
true
;
},
ok
()
{
ok
()
{
this
.
$refs
.
grid
.
load
();
this
.
$refs
.
grid
.
load
();
this
.
modal
=
false
;
this
.
modal
=
false
;
...
@@ -540,4 +562,7 @@ export default {
...
@@ -540,4 +562,7 @@ export default {
}
}
}
}
}
}
.files-detail {
min-height: 300px;
}
</
style
>
</
style
>
\ No newline at end of file
plugins/iview.js
View file @
101410e6
...
@@ -51,6 +51,8 @@ import NewInputFile from '@/components/page/newInputFile.vue'
...
@@ -51,6 +51,8 @@ import NewInputFile from '@/components/page/newInputFile.vue'
import
imgUploadFile
from
'@/components/page/imgUploadFile.vue'
import
imgUploadFile
from
'@/components/page/imgUploadFile.vue'
import
files
from
'@/components/page/files.vue'
import
files
from
'@/components/page/files.vue'
import
FilesList
from
'@/components/page/filesList.vue'
import
FilesList
from
'@/components/page/filesList.vue'
import
FilesView
from
'@/components/page/filesView.vue'
import
DataGrid
from
'@/components/page/dataGrid.vue'
import
DataGrid
from
'@/components/page/dataGrid.vue'
import
TreeGrid
from
'@/components/page/treeGrid/index.vue'
import
TreeGrid
from
'@/components/page/treeGrid/index.vue'
import
Filed
from
'@/components/page/filed.vue'
import
Filed
from
'@/components/page/filed.vue'
...
@@ -112,6 +114,7 @@ Vue.component("imgUploadFile", imgUploadFile)
...
@@ -112,6 +114,7 @@ Vue.component("imgUploadFile", imgUploadFile)
Vue
.
component
(
"InputIcon"
,
InputIcon
)
Vue
.
component
(
"InputIcon"
,
InputIcon
)
Vue
.
component
(
"files"
,
files
)
Vue
.
component
(
"files"
,
files
)
Vue
.
component
(
"FilesList"
,
FilesList
)
Vue
.
component
(
"FilesList"
,
FilesList
)
Vue
.
component
(
"FilesView"
,
FilesView
)
Vue
.
component
(
"DataGrid"
,
DataGrid
)
Vue
.
component
(
"DataGrid"
,
DataGrid
)
Vue
.
component
(
"TreeGrid"
,
TreeGrid
)
Vue
.
component
(
"TreeGrid"
,
TreeGrid
)
Vue
.
component
(
"Filed"
,
Filed
)
Vue
.
component
(
"Filed"
,
Filed
)
...
...
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