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
e204bc5c
authored
2024-03-07 11:14:36 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge branch 'dev'
2 parents
e6293395
c428efca
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
141 additions
and
74 deletions
src/api/ywsq.js
src/image/bdclogo.png
src/layout/components/Navbar.vue
src/views/lpb/lpbContent/index.vue
src/views/workflow/components/batchDel.vue
src/views/workflow/components/leftmenu/ordinaryMenu.vue
src/views/workflow/main/slsqxx/fdcq2/slxx.vue
src/views/ywbl/ywsq/components/selectH.vue
src/api/ywsq.js
View file @
e204bc5
...
...
@@ -111,6 +111,18 @@ export function selectZdjbxx (data) {
})
}
/**
* @description: 业务办理-选择单元-查询宗地基本信息
* @param {*} data
* @author: renchao
*/
export
function
selectHQjdc
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
'/rest/ywbl/ywsq/selectHQjdc'
,
method
:
'post'
,
data
})
}
/*
业务办理-选择单元-查询宗地基本信息
*/
...
...
src/image/bdclogo.png
0 → 100644
View file @
e204bc5
20.9 KB
src/layout/components/Navbar.vue
View file @
e204bc5
...
...
@@ -2,7 +2,8 @@
<div
class=
"navbar-con"
>
<div
class=
"navbar"
v-theme
.
background=
"mTheme"
>
<div
class=
"logo"
>
<img
v-if=
"logo"
:src=
"logo"
class=
"header-logo"
>
<img
v-if=
"logo"
:src=
"logo"
class=
"header-logo"
/>
<h4>
{{
userInfo
.
districtName
}}
不动产登记平台
</h4>
</div>
<!--
<div
class=
"backdrop"
>
<theme
style=
"float: right;height: 26px;width: 26px;margin-top: 26px;"
@
change=
"themeChange"
/>
...
...
@@ -10,75 +11,93 @@
<div
class=
"right-menu"
>
<!--
<svg-icon
class=
"function"
icon-class=
'function'
/>
-->
<div
class=
"avatar-wrapper"
>
<span
style=
"padding-right:10px"
>
{{
name
}}
</span>
<p>
<span
style=
"padding-right: 10px"
>
{{
userInfo
.
departmentName
}}
</span>
<span
style=
"padding-right: 10px"
>
{{
userInfo
.
name
}}
</span>
</p>
<img
:src=
"avatar + '?imageView2/1/w/80/h/80'"
class=
"user-avatar"
/>
</div>
<svg-icon
class=
"shutdown"
@
click
.
native=
"logout"
icon-class=
'shutdown'
/>
<svg-icon
class=
"shutdown"
@
click
.
native=
"logout"
icon-class=
"shutdown"
/>
</div>
</div>
<NoticeBar
class=
"NoticeBar"
:noticeList=
"noticeList"
v-if=
"noticeList.length > 0"
/>
<NoticeBar
class=
"NoticeBar"
:noticeList=
"noticeList"
v-if=
"noticeList.length > 0"
/>
</div>
</
template
>
<
script
>
import
axios
from
'axios'
import
Cookies
from
'js-cookie'
import
{
mapGetters
}
from
'vuex'
import
NoticeBar
from
'@/components/NoticeBar/index'
import
{
getHomeNoticeList
}
from
"@/api/home"
import
{
setToken
}
from
"@/utils/util"
;
export
default
{
import
axios
from
"axios"
;
import
Cookies
from
"js-cookie"
;
import
{
mapGetters
}
from
"vuex"
;
import
NoticeBar
from
"@/components/NoticeBar/index"
;
import
{
getHomeNoticeList
}
from
"@/api/home"
;
import
{
setToken
}
from
"@/utils/util"
;
export
default
{
components
:
{
NoticeBar
NoticeBar
,
},
computed
:
{
...
mapGetters
([
'sidebar'
,
'avatar'
,
'name'
]),
baseUrl
()
{
...
mapGetters
([
"sidebar"
,
"avatar"
,
"name"
,
"userInfo"
]),
baseUrl
()
{
return
window
.
_config
.
baseUrl
;
},
},
data
()
{
data
()
{
return
{
logo
:
require
(
'../../image/logo.png'
),
noticeList
:
[]
}
logo
:
require
(
"../../image/bdclogo.png"
),
noticeList
:
[],
};
},
created
()
{
this
.
queryNoticeList
()
created
()
{
this
.
queryNoticeList
();
},
mounted
()
{
let
that
=
this
window
.
addEventListener
(
'message'
,
function
(
messageEvent
)
{
mounted
()
{
let
that
=
this
;
window
.
addEventListener
(
"message"
,
function
(
messageEvent
)
{
if
(
messageEvent
.
data
.
update
)
{
that
.
queryNoticeList
()
that
.
queryNoticeList
();
}
})
});
},
destroyed
()
{
window
.
removeEventListener
(
'message'
)
destroyed
()
{
window
.
removeEventListener
(
"message"
);
},
methods
:
{
/**
* @description: queryNoticeList
* @author: renchao
*/
queryNoticeList
()
{
getHomeNoticeList
().
then
(
res
=>
{
queryNoticeList
()
{
getHomeNoticeList
().
then
((
res
)
=>
{
if
(
res
.
result
)
{
this
.
noticeList
=
res
.
result
.
noticeList
this
.
noticeList
=
res
.
result
.
noticeList
;
}
})
});
},
/**
* @description: logout
* @author: renchao
*/
logout
()
{
axios
.
post
(
window
.
_config
.
services
.
management
+
"/management/logout"
).
then
(()
=>
{
setToken
(
undefined
)
sessionStorage
.
removeItem
(
'token'
)
localStorage
.
setItem
(
'dj-location'
,
window
.
location
.
href
)
window
.
location
.
href
=
window
.
_config
.
casBaseURL
+
'/logout?service='
+
encodeURIComponent
(
window
.
location
.
href
);
})
logout
()
{
axios
.
post
(
window
.
_config
.
services
.
management
+
"/management/logout"
)
.
then
(()
=>
{
setToken
(
undefined
);
sessionStorage
.
removeItem
(
"token"
);
localStorage
.
setItem
(
"dj-location"
,
window
.
location
.
href
);
window
.
location
.
href
=
window
.
_config
.
casBaseURL
+
"/logout?service="
+
encodeURIComponent
(
window
.
location
.
href
);
});
},
/**
...
...
@@ -86,37 +105,37 @@
* @param {*} val
* @author: renchao
*/
themeChange
(
val
)
{
this
.
$store
.
dispatch
(
'app/updateTheme'
,
val
)
themeChange
(
val
)
{
this
.
$store
.
dispatch
(
"app/updateTheme"
,
val
);
},
searchMessageCenter
()
{
this
.
$router
.
push
({
name
:
'messagecenter'
})
searchMessageCenter
()
{
this
.
$router
.
push
({
name
:
"messagecenter"
});
},
/**
* @description: handleCommand
* @param {*} command
* @author: renchao
*/
handleCommand
(
command
)
{
if
(
command
==
'a'
)
{
handleCommand
(
command
)
{
if
(
command
==
"a"
)
{
//个人中心
this
.
$router
.
push
({
name
:
'personal'
})
}
}
}
this
.
$router
.
push
({
name
:
"personal"
});
}
},
},
};
</
script
>
<
style
lang=
"scss"
scoped
>
.navbar-con
{
.navbar-con
{
position
:
relative
;
}
}
.NoticeBar
{
.NoticeBar
{
position
:
absolute
;
bottom
:
0
;
}
}
.el-dropdown-menu
{
.el-dropdown-menu
{
padding
:
0
!important
;
border
:
1px
solid
#ebeef5
;
box-shadow
:
0
2px
10px
0
rgba
(
0
,
0
,
0
,
0.12
);
...
...
@@ -149,9 +168,9 @@
background
:
#f6f7f9
;
color
:
#4a4a4a
;
}
}
}
.navbar
{
.navbar
{
height
:
$
headerHeight
;
overflow
:
hidden
;
position
:
relative
;
...
...
@@ -163,8 +182,22 @@
padding
:
0
20px
;
justify-content
:
space-between
;
.logo
{
//
margin-top
:
-20px
;
.header-logo
{
width
:
300px
;
width
:
40px
;
float
:
left
;
vertical-align
:
middle
;
}
h4
{
float
:
left
;
vertical-align
:
middle
;
line-height
:
40px
;
font-size
:
22px
;
color
:
#fff
;
text-indent
:
6px
;
letter-spacing
:
2px
;
}
}
.backdrop
{
...
...
@@ -262,7 +295,15 @@
height
:
40px
;
align-items
:
center
;
color
:
#ffffff
;
p
{
font-size
:
14px
;
height
:
40px
;
span
{
display
:
block
;
line-height
:
20px
;
text-align
:
right
;
}
}
.user-avatar
{
cursor
:
pointer
;
width
:
35px
;
...
...
@@ -279,5 +320,5 @@
}
}
}
}
}
</
style
>
...
...
src/views/lpb/lpbContent/index.vue
View file @
e204bc5
This diff is collapsed.
Click to expand it.
src/views/workflow/components/batchDel.vue
View file @
e204bc5
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2024-0
2-02 16:52:02
* @LastEditTime: 2024-0
3-07 09:52:35
-->
<!-- 批量删除弹框 -->
<
template
>
...
...
@@ -65,7 +65,6 @@
}
},
methods
:
{
// 批量删除确定按钮
/**
* @description: 批量删除确定按钮
* @author: renchao
...
...
@@ -74,6 +73,7 @@
var
formdata
=
new
FormData
();
formdata
.
append
(
"bsmSldyList"
,
this
.
selectBdcdy
);
formdata
.
append
(
"bsmSlsq"
,
this
.
formData
.
bsmSlsq
);
store
.
dispatch
(
'user/refreshPage'
,
false
);
deleteSlbdcdy
(
formdata
).
then
(
res
=>
{
if
(
res
.
code
==
200
)
{
this
.
$popupCacel
();
...
...
src/views/workflow/components/leftmenu/ordinaryMenu.vue
View file @
e204bc5
<!--
* @Description: workFrame左侧菜单列表-普通
* @Autor: renchao
* @LastEditTime: 2024-0
2-01 16:57:55
* @LastEditTime: 2024-0
3-07 09:54:56
-->
<
template
>
<div
class=
"leftmenu"
:class=
"
{ 'animation-map-drawer': isShowdrawer }">
...
...
@@ -84,7 +84,7 @@
isRefresh
:
{
handler
(
newVal
,
oldVal
)
{
if
(
newVal
)
{
this
.
loadBdcdylist
(
true
)
this
.
loadBdcdylist
()
}
},
immediate
:
true
...
...
src/views/workflow/main/slsqxx/fdcq2/slxx.vue
View file @
e204bc5
...
...
@@ -384,6 +384,19 @@
@
upDateQlrxxList=
"upDateQlrxxList"
:disabled=
"viewEdit"
:gyfs=
"ruleForm.sldy.gyfs"
/>
<div
v-if=
"ruleForm.ywrList && ruleForm.ywrList.length > 0 && ruleForm.qlxx.djlx==200"
>
<div
class=
"slxx_title title-block"
>
义务人信息
<div
class=
"triangle"
></div>
</div>
<ywrCommonTable
v-if=
"ruleForm.ywrList"
:disabled=
"viewEdit"
:tableData=
"ruleForm.ywrList"
:key=
"key"
@
upDateQlrxxList=
"upDateYwrxxList"
/>
</div>
<div
class=
"slxx_title title-block"
>
登记原因
<div
class=
"triangle"
></div>
...
...
@@ -414,6 +427,7 @@
<
script
>
import
ywmix
from
"@/views/ywbl/mixin/index"
;
import
qlrCommonTable
from
"@/views/workflow/components/qlrCommonTable"
;
import
ywrCommonTable
from
"@/views/workflow/components/ywrCommonTable"
;
import
tdytTable
from
"@/views/workflow/components/tdytTable"
;
import
{
Init
,
saveData
}
from
"@/api/workflow/fwsyqFlow.js"
;
import
{
mapGetters
}
from
"vuex"
;
...
...
@@ -460,7 +474,7 @@
this
.
isSave
=
false
})
},
components
:
{
qlrCommonTable
,
tdytTable
},
components
:
{
qlrCommonTable
,
tdytTable
,
ywrCommonTable
},
computed
:
{
...
mapGetters
([
"dictData"
,
"flag"
]),
},
...
...
src/views/ywbl/ywsq/components/selectH.vue
View file @
e204bc5
...
...
@@ -71,7 +71,7 @@
import
{
ywPopupDialog
}
from
"@/utils/popup.js"
;
import
{
datas
,
sendThis
}
from
"../javascript/selectH.js"
;
import
{
defaultParameters
}
from
"../javascript/publicDefaultPar.js"
;
//
import { selectHQjdc } from "@/api/ywsq.js";
import
{
selectHQjdc
}
from
"@/api/ywsq.js"
;
import
{
startBusinessFlow
,
againAddSldy
}
from
"@/api/workFlow.js"
;
export
default
{
mixins
:
[
ywsqTable
,
jump
],
...
...
@@ -123,16 +123,16 @@
* @author: renchao
*/
queryClick
()
{
//
this.$startLoading();
//
this.queryForm.sqywbm = this.sqywInfo.djywbm;
//
selectHQjdc({ ...this.queryForm, ...this.pageData }).then((res) => {
//
this.$endLoading();
//
if (res.code === 200) {
//
let { total, records } = res.result;
//
this.tableData.total = total;
//
this.tableData.data = records;
//
}
//
});
this
.
$startLoading
();
this
.
queryForm
.
sqywbm
=
this
.
sqywInfo
.
djywbm
;
selectHQjdc
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
((
res
)
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
this
.
tableData
.
total
=
total
;
this
.
tableData
.
data
=
records
;
}
});
},
/**
* @description: submitForm
...
...
Please
register
or
sign in
to post a comment