Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcdj-web
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
486986ac
authored
2023-10-31 10:49:32 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev'
2 parents
308bec53
e4a75463
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
38 additions
and
13 deletions
src/api/company.js
src/views/components/imagePreview.vue
src/views/djbworkflow/components/clxx/dialog/imagePreview.vue
src/views/djbworkflow/components/leftmenu/ordinaryMenu.vue
src/views/workflow/workFrame.scss
src/views/xxba/components/clxx/dialog/imagePreview.vue
src/views/ywbl/ywsq/components/selectJsydsyqSplitMerge.vue
src/views/zhcx/lpcx/lpcxdata.js
src/api/company.js
View file @
486986a
/*
* @Description: 企业银行接口
* @Autor: renchao
* @LastEditTime: 2023-
09-20 14:49:22
* @LastEditTime: 2023-
10-31 10:45:35
*/
import
request
from
'@/utils/request'
let
SERVER
=
window
.
config
?
window
.
config
:
JSON
.
parse
(
localStorage
.
getItem
(
'ApiUrl'
))
...
...
@@ -64,6 +64,22 @@ export function uploadBatch (data) {
})
}
/**
* @description: 上传单个文件
* @param {*} data
* @author: renchao
*/
export
function
uploadSjClmx
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/sys/company/uploadSjClmx'
,
method
:
'post'
,
headers
:
{
'Content-Type'
:
'multipart/form-data'
},
data
})
}
/**
...
...
src/views/components/imagePreview.vue
View file @
486986a
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-
13 15:02:59
* @LastEditTime: 2023-10-
31 10:21:32
-->
<
template
>
<div
class=
"rlPopup"
>
...
...
@@ -53,7 +53,7 @@
<
script
>
import
PhotoZoom
from
'@/components/PhotoZoom'
import
{
getAltimeterInfo
,
getUuid
}
from
'@/utils/operation.js'
import
{
uploadBatch
,
deleteClmx
,
move
}
from
"@/api/clxx.js"
;
import
{
uploadBatch
,
deleteClmx
,
move
,
uploadSjClmx
}
from
"@/api/clxx.js"
;
import
publicPicture
from
'@/components/publicPicture/index.vue'
export
default
{
name
:
'PreviewImage'
,
...
...
@@ -194,9 +194,12 @@
formData
.
append
(
'file'
,
file
)
formData
.
append
(
"bsmSj"
,
this
.
previewImg
.
bsmSj
);
formData
.
append
(
"bsmSlsq"
,
this
.
previewImg
.
bsmSlsq
);
if
(
this
.
previewImg
.
imgList
.
length
>
0
)
{
formData
.
append
(
"ssBsmClmx"
,
this
.
previewImg
.
imgList
[
this
.
previewImg
.
index
].
bsmClmx
);
}
uploadSjClmx
(
formData
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
$emit
(
'updateList'
,
res
.
result
)
this
.
$emit
(
'updateList'
,
{
children
:
res
.
result
,
bsmSj
:
this
.
previewImg
.
bsmSj
}
)
this
.
$message
({
message
:
'上传成功!'
,
type
:
'success'
...
...
src/views/djbworkflow/components/clxx/dialog/imagePreview.vue
View file @
486986a
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-
12 10:00:08
* @LastEditTime: 2023-10-
31 10:48:04
-->
<
template
>
<div
class=
"rlPopup"
>
...
...
@@ -53,7 +53,7 @@
<
script
>
import
PhotoZoom
from
'@/components/PhotoZoom'
import
{
getAltimeterInfo
,
getUuid
}
from
'@/utils/operation.js'
import
{
uploadBatch
,
deleteClmx
,
move
}
from
"@/api/clxx.js"
;
import
{
uploadBatch
,
deleteClmx
,
move
,
uploadSjClmx
}
from
"@/api/clxx.js"
;
import
publicPicture
from
'@/components/publicPicture/index.vue'
export
default
{
name
:
'PreviewImage'
,
...
...
@@ -194,6 +194,9 @@
formData
.
append
(
'file'
,
file
)
formData
.
append
(
"bsmSj"
,
this
.
previewImg
.
bsmSj
);
formData
.
append
(
"bsmSlsq"
,
this
.
previewImg
.
bsmSlsq
);
if
(
this
.
previewImg
.
imgList
.
length
>
0
)
{
formData
.
append
(
"ssBsmClmx"
,
this
.
previewImg
.
imgList
[
this
.
previewImg
.
index
].
bsmClmx
);
}
uploadSjClmx
(
formData
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
$emit
(
'updateList'
,
res
.
result
)
...
...
src/views/djbworkflow/components/leftmenu/ordinaryMenu.vue
View file @
486986a
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2023-10-
18 14:06:3
1
* @LastEditTime: 2023-10-
31 10:42:2
1
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
src/views/workflow/workFrame.scss
View file @
486986a
...
...
@@ -14,7 +14,7 @@
/
deep
/
.el-menu-item
{
display
:
flex
;
align-items
:
center
;
justify-content
:
space-between
;
//
justify-content: space-between;
}
}
...
...
src/views/xxba/components/clxx/dialog/imagePreview.vue
View file @
486986a
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-
12 09:55
:54
* @LastEditTime: 2023-10-
31 10:46
:54
-->
<
template
>
<div
class=
"rlPopup"
>
...
...
@@ -53,7 +53,7 @@
<
script
>
import
PhotoZoom
from
'@/components/PhotoZoom'
import
{
getAltimeterInfo
,
getUuid
}
from
'@/utils/operation.js'
import
{
uploadBatch
,
deleteFile
,
move
}
from
"@/api/company.js"
import
{
uploadBatch
,
deleteFile
,
move
,
uploadSjClmx
}
from
"@/api/company.js"
import
publicPicture
from
'@/components/publicPicture/index.vue'
export
default
{
name
:
'PreviewImage'
,
...
...
@@ -198,6 +198,9 @@
formData
.
append
(
'file'
,
file
)
formData
.
append
(
"bsmMaterial "
,
this
.
previewImg
.
bsmMaterial
);
formData
.
append
(
"bsmSlsq"
,
this
.
previewImg
.
bsmSlsq
);
if
(
this
.
previewImg
.
imgList
.
length
>
0
)
{
formData
.
append
(
"ssbsmMaterial"
,
this
.
previewImg
.
imgList
[
this
.
previewImg
.
index
].
bsmMaterial
);
}
uploadSjClmx
(
formData
).
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
this
.
$emit
(
'updateList'
,
res
.
result
)
...
...
src/views/ywbl/ywsq/components/selectJsydsyqSplitMerge.vue
View file @
486986a
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-
26 15:12:4
1
* @LastEditTime: 2023-10-
31 10:49:3
1
-->
<
template
>
<div
class=
"from-clues"
>
...
...
@@ -282,6 +282,7 @@
handleRowClick
(
row
)
{
this
.
queryForm
.
bhqkbsm
=
row
.
bhqkbsm
this
.
radioVal
=
row
.
bdcdyh
row
.
bglx
=
'1'
selectZdjbxxSplitMergeLast
({
...
this
.
queryForm
}).
then
((
res
)
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
)
{
...
...
src/views/zhcx/lpcx/lpcxdata.js
View file @
486986a
...
...
@@ -65,9 +65,8 @@ class data extends filter {
},
{
label
:
'操作'
,
width
:
'
9
0'
,
width
:
'
8
0'
,
align
:
'center'
,
fixed
:
'right'
,
render
:
(
h
,
scope
)
=>
{
return
<
el
-
button
type
=
"text"
icon
=
"el-icon-film"
onClick
=
{()
=>
{
vm
.
openlpbClick
(
scope
)
}}
>
楼盘表
<
/el-button
>
}
...
...
Please
register
or
sign in
to post a comment