Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Z
ZiBoYingJI
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
Kimber
ZiBoYingJI
Commits
d43f63d5
Commit
d43f63d5
authored
Oct 09, 2024
by
xinzhedeai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
图片上传修改
parent
78c76995
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
873 additions
and
89 deletions
+873
-89
pic.js
src/api/picManage/pic.js
+11
-15
Navbar.vue
src/layout/components/Navbar.vue
+2
-0
data.vue
src/views/kd/c/iot/tailings/data.vue
+2
-2
rydw.vue
src/views/picManage/rydw.vue
+412
-72
uploadtype.vue
src/views/picManage/uploadtype.vue
+446
-0
No files found.
src/api/picManage/pic.js
View file @
d43f63d5
...
@@ -8,31 +8,27 @@ export default {
...
@@ -8,31 +8,27 @@ export default {
})
})
},
},
// 新增
// 新增
add
:
(
notice
)
=>
{
add
:
(
param
)
=>
{
return
request
({
return
request
({
url
:
'
api/
notice/add
'
,
url
:
'
api/
kdFile
'
,
method
:
'
post
'
,
method
:
'
post
'
,
data
:
notice
data
:
param
})
})
},
},
// 标记已读(查询权限)
// 标记已读(查询权限)
read
:
(
responseId
)
=>
{
mod
:
(
param
)
=>
{
return
request
({
return
request
({
url
:
'
api/notice/read
'
,
url
:
'
api/kdFile
'
,
method
:
'
post
'
,
method
:
'
put
'
,
data
:
{
data
:
param
id
:
responseId
}
})
})
},
},
// 删除
// 删除
del
:
(
notice
)
=>
{
del
:
(
ids
)
=>
{
return
request
({
return
request
({
url
:
'
api/notice/del
'
,
url
:
'
api/kdFile
'
,
method
:
'
post
'
,
method
:
'
delete
'
,
data
:
{
data
:
ids
id
:
notice
.
id
}
})
})
}
}
}
}
\ No newline at end of file
src/layout/components/Navbar.vue
View file @
d43f63d5
...
@@ -185,6 +185,7 @@ export default {
...
@@ -185,6 +185,7 @@ export default {
}).
then
((
res
)
=>
{
}).
then
((
res
)
=>
{
this
.
companyList
=
res
.
body
||
[]
this
.
companyList
=
res
.
body
||
[]
this
.
currentCompany
=
this
.
companyList
[
0
].
id
this
.
currentCompany
=
this
.
companyList
[
0
].
id
localStorage
.
setItem
(
'
currGlobalCompId
'
,
this
.
currentCompany
)
})
})
},
},
...
@@ -204,6 +205,7 @@ export default {
...
@@ -204,6 +205,7 @@ export default {
duration
:
3000
// 消息显示的时间,单位为 ms
duration
:
3000
// 消息显示的时间,单位为 ms
});
});
setTimeout
(()
=>
{
setTimeout
(()
=>
{
localStorage
.
setItem
(
'
currGlobalCompId
'
,
value
)
window
.
location
.
reload
()
window
.
location
.
reload
()
},
500
);
},
500
);
})
})
...
...
src/views/kd/c/iot/tailings/data.vue
View file @
d43f63d5
...
@@ -7,8 +7,8 @@
...
@@ -7,8 +7,8 @@
<el-option
v-for=
"mine in mineList"
:key=
"mine.index"
:label=
"mine.name"
:value=
"mine.index"
/>
<el-option
v-for=
"mine in mineList"
:key=
"mine.index"
:label=
"mine.name"
:value=
"mine.index"
/>
</el-select>
</el-select>
<el-input
clearable
size=
"small"
placeholder=
"设备名称"
style=
"width: 200px;"
class=
"filter-item"
/>
<el-input
clearable
size=
"small"
placeholder=
"设备名称"
style=
"width: 200px;"
class=
"filter-item"
/>
<el-select
v-model=
"value"
placeholder=
"监测类型
?
"
style=
"width: 200px;"
class=
"filter-item"
>
<el-select
v-model=
"value"
placeholder=
"监测类型"
style=
"width: 200px;"
class=
"filter-item"
>
<el-option
label=
"选择类型
?
"
value=
"1"
/>
<el-option
label=
"选择类型"
value=
"1"
/>
</el-select>
</el-select>
<el-button
class=
"filter-item"
size=
"mini"
type=
"success"
icon=
"el-icon-search"
@
click=
"$message('等待硬件对接中')"
>
搜索
</el-button>
<el-button
class=
"filter-item"
size=
"mini"
type=
"success"
icon=
"el-icon-search"
@
click=
"$message('等待硬件对接中')"
>
搜索
</el-button>
<el-button
class=
"filter-item"
size=
"mini"
type=
"warning"
icon=
"el-icon-refresh-left"
>
重置
</el-button>
<el-button
class=
"filter-item"
size=
"mini"
type=
"warning"
icon=
"el-icon-refresh-left"
>
重置
</el-button>
...
...
src/views/picManage/rydw.vue
View file @
d43f63d5
<
template
>
<
template
>
<div
class=
"app-container"
>
<div
class=
"app-container"
>
<!--工具栏-->
<!-- 上传文件窗口 -->
<div
class=
"head-container"
>
<el-dialog
<el-select
v-model=
"searchParam._mineIndex"
placeholder=
"所属矿山"
clearable
size=
"small"
class=
"filter-item"
style=
"width: 200px;"
>
title=
"上传平面图"
<el-option
v-for=
"mine in mineList"
:key=
"mine.id"
:label=
"mine.name"
:value=
"mine.id"
/>
:visible.sync=
"picModal"
:close-on-click-modal=
"false"
>
<el-form
ref=
"formInfo"
label-width=
"120px"
:model=
"dialog1Data"
:rules=
"folderRules"
>
<el-form-item
label=
"所属企业"
prop=
"enterpriseId"
>
<el-select
v-model=
"dialog1Data.enterpriseId"
placeholder=
"请选择企业"
disabled
>
<el-option
v-for=
"item in options4enterpriseIdList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
></el-option>
</el-select>
</el-select>
<el-button
class=
"filter-item"
size=
"mini"
type=
"success"
icon=
"el-icon-search"
@
click=
"searchSubmit"
>
查看
</el-button>
</el-form-item>
<el-form-item
label=
"平面图名称"
>
<el-input
v-model=
"dialog1Data.fileName"
placeholder=
"请输入平面图名称"
>
</el-input>
</el-form-item>
<el-form-item
label=
"平面图:"
prop=
"floorPlanPath"
>
<el-upload
class=
"upload-demo"
:action=
"`$
{previewUrl}/api/file/upload`"
multiple
:headers="httpHeaders"
accept=".png,.jpg,jpeg"
:limit="1"
:on-success="upFloorPlanSuccess"
:on-remove="upFloorPlanRemove"
:on-error="upFloorPlanError"
:on-exceed="upFloorPlanExceed"
:before-upload="upFloorPlanBefore"
:on-preview="openFile"
:file-list="dialog1Data._fileList"
>
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
<div
slot=
"tip"
class=
"el-upload__tip"
>
只能上传jpg/png/jpeg文件,且不超过20M
</div>
</el-upload>
</el-form-item>
<el-form-item
label=
""
>
<div
v-for=
"(item, index) in uploadedFiles"
:key=
"item.name + index"
>
{{
item
.
name
}}
</div>
</div>
<!--图-->
</el-form-item>
<template
v-if=
"underfloorPlanListShow && underfloorPlanListShow.length>0"
>
</el-form>
<div
style=
"width: 100%;"
>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-image
v-for=
"file in underfloorPlanListShow"
:key=
"file.url"
style=
"width: 100%; height: auto"
:src=
"baseApi+'/file'+file.url"
fit=
"contain"
/>
<el-button
@
click=
"picModal = false"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"confirmFolder"
:loading=
"modalBtnLoad"
>
确定
</el-button
>
</div>
</div>
</el-dialog>
<el-row>
<!--角色管理-->
<el-col
:span=
"24"
>
<el-card
class=
"box-card"
shadow=
"never"
>
<div
slot=
"header"
class=
"clearfix"
>
<el-button
type=
"primary"
size=
"mini"
@
click=
"showpicModal"
>
上传平面图
</el-button
>
</div>
<el-table
ref=
"table"
style=
"width: 100%"
:data=
"dataList"
>
<el-table-column
type=
""
width=
"55"
/>
<el-table-column
prop=
"enterpriseName"
label=
"所属企业"
width=
"400"
/>
<!--
<el-table-column
label=
"类型"
prop=
"typeName"
width=
"200"
/>
-->
<el-table-column
width=
"300px"
prop=
"fileName"
label=
"平面图名称"
/>
<!--
<el-table-column
width=
"200px"
prop=
"createTime"
label=
"上传时间"
/>
-->
<el-table-column
label=
"操作"
width=
"230px"
align=
"left"
>
<template
slot-scope=
"scope"
>
<el-button
type=
"primary"
size=
"mini"
@
click=
"updateFolder(scope.row)"
>
修改
</el-button>
<el-button
type=
"danger"
size=
"mini"
@
click=
"delFolder(scope.row)"
>
删除
</el-button
>
<el-button
type=
"primary"
size=
"mini"
@
click=
"previewFile(scope.row)"
>
预览
</el-button
>
</
template
>
</
template
>
</el-table-column>
</el-table>
<!--分页组件-->
<el-pagination
:current-page=
"page"
:page-sizes=
"[10, 20, 30, 40]"
:page-size=
"size"
layout=
"total, sizes, prev, pager, next, jumper"
:total=
"totalElement"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
/>
</el-card>
</el-col>
</el-row>
</div>
</div>
</template>
</template>
<
script
>
<
script
>
import
mineApi
from
'
@/api/kd/mine
'
import
request
from
'
@/utils/request
'
import
picApi
from
'
@/api/picManage/pic
'
import
picApi
from
"
@/api/picManage/pic.js
"
;
import
{
getToken
}
from
'
@/utils/auth
'
import
DateRangePicker
from
"
@/components/DateRangePicker
"
;
import
{
mapGetters
}
from
'
vuex
'
import
{
getToken
}
from
"
@/utils/auth
"
;
export
default
{
export
default
{
name
:
'
CUnderfloorPlan
'
,
// 本页面名:没有Person前缀!这个功能和person没有直接关系~
name
:
"
Folder
"
,
components
:
{},
components
:
{
DateRangePicker
,
},
data
()
{
data
()
{
return
{
return
{
dataList
:[],
previewUrl
:
process
.
env
.
VUE_APP_LOCAL_API
,
total
:
0
,
dialog1Data
:{},
form
:{},
searchForm
:{
page
:
1
,
size
:
10
,
type
:
8
,
enterpriseId
:
5
,
},
mineList
:
[],
httpHeaders
:
{
httpHeaders
:
{
'
Authorization
'
:
getToken
()
'
Authorization
'
:
getToken
()
},
},
searchParam
:
{},
enterpriseId
:
''
,
underfloorPlanPath
:
null
,
type
:
''
,
underfloorPlanList
:
[],
options4enterpriseIdList
:
[],
underfloorPlanListShow
:
[]
options4type
:[{
}
name
:
'
矿山全景
'
,
id
:
1
},{
name
:
'
资源储量
'
,
id
:
2
},{
name
:
'
开发利用
'
,
id
:
3
},{
name
:
'
地质环境
'
,
id
:
4
},{
name
:
'
绿色矿山
'
,
id
:
5
},{
name
:
'
水监测
'
,
id
:
6
},{
name
:
'
土监测
'
,
id
:
7
}],
dialogVisible4
:
false
,
pdfSrc
:
""
,
modalBtnLoad
:
false
,
query
:
{
originallyName
:
""
,
classification
:
""
,
time
:
""
,
},
picModal
:
false
,
fileType
:
""
,
picModal
:
false
,
uploadedFiles
:
[],
selectedFolderId
:
""
,
selectedFolderId
:
""
,
selectedFolderInfo
:
{},
dataList
:
[],
totalElement
:
0
,
page
:
0
,
size
:
10
,
defaultProps
:
{
children
:
"
children
"
,
label
:
"
name
"
,
isLeaf
:
"
leaf
"
},
level
:
3
,
currentId
:
0
,
currentName
:
""
,
menuLoading
:
false
,
showButton
:
false
,
menus
:
[],
menuIds
:
[],
folderRules
:
{
enterpriseId
:
[{
required
:
true
,
message
:
"
请选择企业
"
,
trigger
:
"
blur
"
}],
type
:
[{
required
:
true
,
message
:
"
请选择类型
"
,
trigger
:
"
blur
"
}],
},
},
computed
:
{
};
...
mapGetters
([
'
user
'
,
'
baseApi
'
])
},
},
computed
:
{},
mounted
()
{
mounted
()
{
// 矿山选项卡
this
.
getCompanyList
();
// 获取所有文件夹
mineApi
.
getEnableMine
().
then
(
response
=>
{
this
.
getData
();
let
i
=
1
},
response
.
results
.
forEach
(
x
=>
{
x
.
index
=
i
++
})
created
()
{},
this
.
mineList
=
response
.
results
methods
:
{
upFloorPlanSuccess
(
response
,
file
,
fileList
)
{
if
(
!
this
.
dialog1Data
.
_fileList
)
{
this
.
dialog1Data
.
_fileList
=
[]
}
this
.
dialog1Data
.
_fileList
.
push
({
name
:
file
.
name
,
url
:
response
.
result
})
this
.
dialog1Data
.
filePath
=
response
.
result
||
''
},
upFloorPlanError
()
{
this
.
$message
.
error
(
'
上传失败,请稍后再试
'
)
},
upFloorPlanRemove
()
{
this
.
$set
(
this
.
dialog1Data
,
'
_fileList
'
,
[])
this
.
dialog1Data
.
filePath
=
''
},
upFloorPlanBefore
(
file
)
{
const
isIMG
=
file
.
type
===
'
image/jpeg
'
||
file
.
type
===
'
image/png
'
const
isLtSize
=
file
.
size
/
1024
/
1024
<
20
if
(
!
isIMG
)
{
this
.
$message
.
error
(
'
上传图片只能是 JPG/JPEG/PNG 格式
'
)
return
false
}
if
(
!
isLtSize
)
{
this
.
$message
.
error
(
'
上传图片大小不能超过 20MB
'
)
return
false
}
return
true
},
upFloorPlanExceed
()
{
this
.
$message
.
error
(
'
您已经上传了一张图,请删除后重新上传
'
)
},
openFile
(
file
)
{
if
(
file
.
url
)
{
window
.
open
(
this
.
previewUrl
+
'
/file
'
+
file
.
url
)
}
else
if
(
file
.
response
&&
file
.
response
.
result
)
{
window
.
open
(
this
.
previewUrl
+
'
/file
'
+
file
.
response
.
result
)
}
},
previewFile
(
item
)
{
if
(
item
.
filePath
)
{
window
.
open
(
this
.
previewUrl
+
'
/file
'
+
item
.
filePath
)
}
},
getCompanyList
(){
request
({
url
:
'
api/enterprise/auth/enterpriseList
'
,
method
:
'
get
'
,
params
:{
}
}).
then
((
res
)
=>
{
this
.
options4enterpriseIdList
=
res
.
body
||
[]
})
})
},
showpicModal
()
{
this
.
picModal
=
true
;
this
.
dialog1Data
=
{}
// this.dialog1Data.filePath = '';
// this.dialog1Data.id = ''
// this.dialog1Data.enterpriseId = ''
// this.dialog1Data.type = ''
this
.
dialog1Data
.
_fileList
=
[]
// 右上角全局公司值设置
this
.
dialog1Data
.
enterpriseId
=
localStorage
.
getItem
(
'
currGlobalCompId
'
)?
localStorage
.
getItem
(
'
currGlobalCompId
'
)
*
1
:
''
// 矿山选项卡
},
// 当前页的条数变化
handleSizeChange
(
val
)
{
this
.
size
=
val
;
this
.
getData
();
},
},
methods
:
{
// 当前第几页
reset
(){
handleCurrentChange
(
val
)
{
this
.
form
=
{
this
.
page
=
val
;
enterpriseId
:
null
,
this
.
getData
();
fileName
:
null
,
},
filePath
:
null
,
confirmFolder
()
{
id
:
null
,
if
(
!
this
.
dialog1Data
.
filePath
){
type
:
8
,
this
.
$message
.
warning
(
"
请上传图片
"
);
return
}
this
.
$refs
[
"
formInfo
"
].
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
this
.
modalBtnLoad
)
{
return
;
}
this
.
modalBtnLoad
=
true
;
if
(
this
.
dialog1Data
.
id
)
{
// 修改
picApi
.
mod
({
...
this
.
dialog1Data
,
type
:
8
// 人员定位 8
})
.
then
((
res
)
=>
{
this
.
picModal
=
false
;
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
});
}
else
{
// 新增
picApi
.
add
({
...
this
.
dialog1Data
,
type
:
8
})
.
then
((
res
)
=>
{
this
.
picModal
=
false
;
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
});
}
}
this
.
modalBtnLoad
=
false
;
}
});
},
},
getData
(){
picApi
.
getkdFile
(
this
.
searchForm
).
then
(
response
=>
{
addFolder
()
{
this
.
dataList
=
response
.
body
.
list
// if (!this.selectedFolderId) {
// this.$message.warning("请选择文件夹");
// return;
// }
this
.
picModal
=
true
;
this
.
dialog1Data
=
{
id
:
""
,
enterpriseId
:
""
,
type
:
''
};
},
delFolder
(
item
)
{
this
.
$confirm
(
"
确定要删除吗?
"
,
"
提示
"
,
{
confirmButtonText
:
"
确定
"
,
cancelButtonText
:
"
取消
"
,
type
:
"
warning
"
,
}).
then
(
()
=>
{
picApi
.
del
([
item
.
id
]).
then
((
res
)
=>
{
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
});
},
()
=>
{
this
.
$message
({
type
:
"
info
"
,
message
:
"
已取消删除
"
,
});
}
);
},
updateFolder
(
item
)
{
this
.
picModal
=
true
;
this
.
dialog1Data
.
id
=
item
.
id
;
this
.
dialog1Data
.
enterpriseId
=
item
.
enterpriseId
;
this
.
dialog1Data
.
type
=
item
.
type
;
this
.
dialog1Data
.
filePath
=
item
.
filePath
this
.
dialog1Data
.
fileName
=
item
.
fileName
this
.
dialog1Data
.
_fileList
=
[{
name
:
item
.
filePath
,
url
:
item
.
filePath
}]
},
search
()
{
this
.
getData
();
},
getData
()
{
picApi
.
getkdFile
({
page
:
this
.
page
,
size
:
this
.
size
,
})
})
.
then
((
res
)
=>
{
this
.
dataList
=
res
.
body
.
list
;
this
.
totalElement
=
res
.
body
.
total
;
});
},
confirmUploadFile
()
{
if
(
!
this
.
selectedFolderId
)
{
this
.
$message
.
warning
(
"
请选择文件夹
"
);
return
;
}
}
if
(
!
this
.
uploadedFiles
.
length
)
{
this
.
$message
.
warning
(
"
请上传文件
"
);
return
;
}
}
}
if
(
this
.
modalBtnLoad
)
{
return
;
}
this
.
modalBtnLoad
=
true
;
const
formData
=
new
FormData
();
// console.log(this.formInfo.hdstatus1, "haStatus");
formData
.
append
(
"
fileList
"
,
this
.
uploadedFiles
[
0
]);
formData
.
append
(
"
catalogueId
"
,
this
.
selectedFolderId
);
formData
.
append
(
"
classification
"
,
this
.
fileType
);
picApi
.
addFileByFolderId
(
formData
).
then
((
res
)
=>
{
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
this
.
$refs
.
addhdpic
.
value
=
""
;
this
.
fileType
=
""
;
this
.
picModal
=
false
;
});
this
.
modalBtnLoad
=
false
;
},
},
};
</
script
>
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
>
::v-deep
.el-input-number
.el-input__inner
{
.role-span
{
font-weight
:
bold
;
color
:
#303133
;
font-size
:
15px
;
}
</
style
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
::v-deep
.el-input-number
.el-input__inner
{
text-align
:
left
;
text-align
:
left
;
}
}
::v-deep
.vue-treeselect__control
,
::v-deep
.vue-treeselect__placeholder
,
::v-deep
.vue-treeselect__single-value
{
::v-deep
.vue-treeselect__multi-value
{
height
:
30px
;
margin-bottom
:
0
;
line-height
:
30px
;
}
}
::v-deep
.vue-treeselect__multi-value-item
{
border
:
0
;
padding
:
0
;
}
</
style
>
</
style
>
\ No newline at end of file
src/views/picManage/uploadtype.vue
0 → 100644
View file @
d43f63d5
<
template
>
<div
class=
"app-container"
>
<!-- 上传文件窗口 -->
<el-dialog
title=
"上传文件"
:visible.sync=
"picModal"
:close-on-click-modal=
"false"
>
<el-form
ref=
"formInfo"
label-width=
"120px"
:model=
"dialog1Data"
:rules=
"folderRules"
>
<el-form-item
label=
"所属企业"
prop=
"enterpriseId"
>
<el-select
v-model=
"dialog1Data.enterpriseId"
placeholder=
"请选择企业"
disabled
>
<el-option
v-for=
"item in options4enterpriseIdList"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"类型"
prop=
"type"
>
<el-select
v-model=
"dialog1Data.type"
placeholder=
"请选择类型"
>
<el-option
v-for=
"item in options4type"
:key=
"item.id"
:label=
"item.name"
:value=
"item.id"
></el-option>
</el-select>
</el-form-item>
<el-form-item
label=
"文件名称"
>
<el-input
v-model=
"dialog1Data.fileName"
placeholder=
"请输入文件名称"
>
</el-input>
</el-form-item>
<el-form-item
label=
"上传文件"
prop=
"floorPlanPath"
>
<el-upload
class=
"upload-demo"
:action=
"`$
{previewUrl}/api/file/upload`"
multiple
:headers="httpHeaders"
accept=".png,.jpg,jpeg"
:limit="1"
:on-success="upFloorPlanSuccess"
:on-remove="upFloorPlanRemove"
:on-error="upFloorPlanError"
:on-exceed="upFloorPlanExceed"
:before-upload="upFloorPlanBefore"
:on-preview="openFile"
:file-list="dialog1Data._fileList"
>
<el-button
size=
"small"
type=
"primary"
>
点击上传
</el-button>
<div
slot=
"tip"
class=
"el-upload__tip"
>
只能上传jpg/png/jpeg文件,且不超过20M
</div>
</el-upload>
</el-form-item>
<el-form-item
label=
""
>
<div
v-for=
"(item, index) in uploadedFiles"
:key=
"item.name + index"
>
{{
item
.
name
}}
</div>
</el-form-item>
</el-form>
<div
slot=
"footer"
class=
"dialog-footer"
>
<el-button
@
click=
"picModal = false"
>
取消
</el-button>
<el-button
type=
"primary"
@
click=
"confirmFolder"
:loading=
"modalBtnLoad"
>
确定
</el-button
>
</div>
</el-dialog>
<el-row>
<!--角色管理-->
<el-col
:span=
"24"
>
<el-card
class=
"box-card"
shadow=
"never"
>
<div
slot=
"header"
class=
"clearfix"
>
<el-button
type=
"primary"
size=
"mini"
@
click=
"showpicModal"
>
上传
</el-button
>
</div>
<el-table
ref=
"table"
style=
"width: 100%"
:data=
"dataList"
>
<el-table-column
type=
""
width=
"55"
/>
<el-table-column
prop=
"enterpriseName"
label=
"所属企业"
width=
"400"
/>
<el-table-column
label=
"类型"
prop=
"typeName"
width=
"200"
/>
<el-table-column
width=
"400px"
prop=
"fileName"
label=
"文件名称"
/>
<!--
<el-table-column
width=
"200px"
prop=
"createTime"
label=
"上传时间"
/>
-->
<el-table-column
label=
"操作"
width=
"230px"
align=
"left"
>
<template
slot-scope=
"scope"
>
<el-button
type=
"primary"
size=
"mini"
@
click=
"updateFolder(scope.row)"
>
修改
</el-button>
<el-button
type=
"danger"
size=
"mini"
@
click=
"delFolder(scope.row)"
>
删除
</el-button
>
<el-button
type=
"primary"
size=
"mini"
@
click=
"previewFile(scope.row)"
>
预览
</el-button
>
</
template
>
</el-table-column>
</el-table>
<!--分页组件-->
<el-pagination
:current-page=
"page"
:page-sizes=
"[10, 20, 30, 40]"
:page-size=
"size"
layout=
"total, sizes, prev, pager, next, jumper"
:total=
"totalElement"
@
size-change=
"handleSizeChange"
@
current-change=
"handleCurrentChange"
/>
</el-card>
</el-col>
</el-row>
</div>
</template>
<
script
>
import
request
from
'
@/utils/request
'
import
picApi
from
"
@/api/picManage/pic.js
"
;
import
DateRangePicker
from
"
@/components/DateRangePicker
"
;
import
{
getToken
}
from
"
@/utils/auth
"
;
import
{
getCompanyList
}
from
'
@/api/system/user
'
import
axios
from
"
axios
"
;
export
default
{
name
:
"
Folder
"
,
components
:
{
DateRangePicker
,
},
data
()
{
return
{
previewUrl
:
process
.
env
.
VUE_APP_LOCAL_API
,
dialog1Data
:{},
httpHeaders
:
{
'
Authorization
'
:
getToken
()
},
enterpriseId
:
''
,
type
:
''
,
options4enterpriseIdList
:
[],
options4type
:[{
name
:
'
矿山全景
'
,
id
:
1
},{
name
:
'
资源储量
'
,
id
:
2
},{
name
:
'
开发利用
'
,
id
:
3
},{
name
:
'
地质环境
'
,
id
:
4
},{
name
:
'
绿色矿山
'
,
id
:
5
},{
name
:
'
水监测
'
,
id
:
6
},{
name
:
'
土监测
'
,
id
:
7
}],
dialogVisible4
:
false
,
pdfSrc
:
""
,
modalBtnLoad
:
false
,
query
:
{
originallyName
:
""
,
classification
:
""
,
time
:
""
,
},
picModal
:
false
,
fileType
:
""
,
picModal
:
false
,
uploadedFiles
:
[],
selectedFolderId
:
""
,
selectedFolderId
:
""
,
selectedFolderInfo
:
{},
dataList
:
[],
totalElement
:
0
,
page
:
0
,
size
:
10
,
defaultProps
:
{
children
:
"
children
"
,
label
:
"
name
"
,
isLeaf
:
"
leaf
"
},
level
:
3
,
currentId
:
0
,
currentName
:
""
,
menuLoading
:
false
,
showButton
:
false
,
menus
:
[],
menuIds
:
[],
folderRules
:
{
enterpriseId
:
[{
required
:
true
,
message
:
"
请选择企业
"
,
trigger
:
"
blur
"
}],
type
:
[{
required
:
true
,
message
:
"
请选择类型
"
,
trigger
:
"
blur
"
}],
},
};
},
computed
:
{},
mounted
()
{
this
.
getCompanyList
();
// 获取所有文件夹
this
.
getData
();
},
created
()
{},
methods
:
{
upFloorPlanSuccess
(
response
,
file
,
fileList
)
{
if
(
!
this
.
dialog1Data
.
_fileList
)
{
this
.
dialog1Data
.
_fileList
=
[]
}
this
.
dialog1Data
.
_fileList
.
push
({
name
:
file
.
name
,
url
:
response
.
result
})
this
.
dialog1Data
.
filePath
=
response
.
result
||
''
},
upFloorPlanError
()
{
this
.
$message
.
error
(
'
上传失败,请稍后再试
'
)
},
upFloorPlanRemove
()
{
this
.
$set
(
this
.
dialog1Data
,
'
_fileList
'
,
[])
this
.
dialog1Data
.
filePath
=
''
},
upFloorPlanBefore
(
file
)
{
const
isIMG
=
file
.
type
===
'
image/jpeg
'
||
file
.
type
===
'
image/png
'
const
isLtSize
=
file
.
size
/
1024
/
1024
<
20
if
(
!
isIMG
)
{
this
.
$message
.
error
(
'
上传图片只能是 JPG/JPEG/PNG 格式
'
)
return
false
}
if
(
!
isLtSize
)
{
this
.
$message
.
error
(
'
上传图片大小不能超过 20MB
'
)
return
false
}
return
true
},
upFloorPlanExceed
()
{
this
.
$message
.
error
(
'
您已经上传了一张图,请删除后重新上传
'
)
},
openFile
(
file
)
{
if
(
file
.
url
)
{
window
.
open
(
this
.
previewUrl
+
'
/file
'
+
file
.
url
)
}
else
if
(
file
.
response
&&
file
.
response
.
result
)
{
window
.
open
(
this
.
previewUrl
+
'
/file
'
+
file
.
response
.
result
)
}
},
previewFile
(
item
)
{
if
(
item
.
filePath
)
{
window
.
open
(
this
.
previewUrl
+
'
/file
'
+
item
.
filePath
)
}
},
getCompanyList
(){
request
({
url
:
'
api/enterprise/auth/enterpriseList
'
,
method
:
'
get
'
,
params
:{
}
}).
then
((
res
)
=>
{
this
.
options4enterpriseIdList
=
res
.
body
||
[]
})
},
showpicModal
()
{
this
.
picModal
=
true
;
this
.
dialog1Data
=
{}
// this.dialog1Data.filePath = '';
// this.dialog1Data.id = ''
// this.dialog1Data.enterpriseId = ''
// this.dialog1Data.type = ''
this
.
dialog1Data
.
_fileList
=
[]
// 右上角全局公司值设置
this
.
dialog1Data
.
enterpriseId
=
localStorage
.
getItem
(
'
currGlobalCompId
'
)?
localStorage
.
getItem
(
'
currGlobalCompId
'
)
*
1
:
''
},
// 当前页的条数变化
handleSizeChange
(
val
)
{
this
.
size
=
val
;
this
.
getData
();
},
// 当前第几页
handleCurrentChange
(
val
)
{
this
.
page
=
val
;
this
.
getData
();
},
confirmFolder
()
{
if
(
!
this
.
dialog1Data
.
filePath
){
this
.
$message
.
warning
(
"
请上传图片
"
);
return
}
this
.
$refs
[
"
formInfo
"
].
validate
((
valid
)
=>
{
if
(
valid
)
{
if
(
this
.
modalBtnLoad
)
{
return
;
}
this
.
modalBtnLoad
=
true
;
if
(
this
.
dialog1Data
.
id
)
{
// 修改
picApi
.
mod
({
...
this
.
dialog1Data
,
})
.
then
((
res
)
=>
{
this
.
picModal
=
false
;
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
});
}
else
{
// 新增
picApi
.
add
({
...
this
.
dialog1Data
,
})
.
then
((
res
)
=>
{
this
.
picModal
=
false
;
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
});
}
this
.
modalBtnLoad
=
false
;
}
});
},
addFolder
()
{
// if (!this.selectedFolderId) {
// this.$message.warning("请选择文件夹");
// return;
// }
this
.
picModal
=
true
;
this
.
dialog1Data
=
{
id
:
""
,
enterpriseId
:
""
,
type
:
''
};
},
delFolder
(
item
)
{
this
.
$confirm
(
"
确定要删除吗?
"
,
"
提示
"
,
{
confirmButtonText
:
"
确定
"
,
cancelButtonText
:
"
取消
"
,
type
:
"
warning
"
,
}).
then
(
()
=>
{
picApi
.
del
([
item
.
id
]).
then
((
res
)
=>
{
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
});
},
()
=>
{
this
.
$message
({
type
:
"
info
"
,
message
:
"
已取消删除
"
,
});
}
);
},
updateFolder
(
item
)
{
this
.
picModal
=
true
;
this
.
dialog1Data
.
id
=
item
.
id
;
this
.
dialog1Data
.
enterpriseId
=
item
.
enterpriseId
;
this
.
dialog1Data
.
type
=
item
.
type
;
this
.
dialog1Data
.
filePath
=
item
.
filePath
this
.
dialog1Data
.
fileName
=
item
.
fileName
this
.
dialog1Data
.
_fileList
=
[{
name
:
item
.
filePath
,
url
:
item
.
filePath
}]
},
search
()
{
this
.
getData
();
},
getData
()
{
picApi
.
getkdFile
({
page
:
this
.
page
,
size
:
this
.
size
,
})
.
then
((
res
)
=>
{
this
.
dataList
=
res
.
body
.
list
;
this
.
totalElement
=
res
.
body
.
total
;
});
},
confirmUploadFile
()
{
if
(
!
this
.
selectedFolderId
)
{
this
.
$message
.
warning
(
"
请选择文件夹
"
);
return
;
}
if
(
!
this
.
uploadedFiles
.
length
)
{
this
.
$message
.
warning
(
"
请上传文件
"
);
return
;
}
if
(
this
.
modalBtnLoad
)
{
return
;
}
this
.
modalBtnLoad
=
true
;
const
formData
=
new
FormData
();
// console.log(this.formInfo.hdstatus1, "haStatus");
formData
.
append
(
"
fileList
"
,
this
.
uploadedFiles
[
0
]);
formData
.
append
(
"
catalogueId
"
,
this
.
selectedFolderId
);
formData
.
append
(
"
classification
"
,
this
.
fileType
);
picApi
.
addFileByFolderId
(
formData
).
then
((
res
)
=>
{
this
.
$message
.
success
(
"
操作成功
"
);
this
.
getData
();
this
.
$refs
.
addhdpic
.
value
=
""
;
this
.
fileType
=
""
;
this
.
picModal
=
false
;
});
this
.
modalBtnLoad
=
false
;
},
},
};
</
script
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
>
.role-span
{
font-weight
:
bold
;
color
:
#303133
;
font-size
:
15px
;
}
</
style
>
<
style
rel=
"stylesheet/scss"
lang=
"scss"
scoped
>
::v-deep
.el-input-number
.el-input__inner
{
text-align
:
left
;
}
::v-deep
.vue-treeselect__multi-value
{
margin-bottom
:
0
;
}
::v-deep
.vue-treeselect__multi-value-item
{
border
:
0
;
padding
:
0
;
}
</
style
>
\ No newline at end of file
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