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
6c8758ad
authored
2023-03-02 14:07:42 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:修改选择不动产单元
1 parent
03f3ce11
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
3 deletions
.gitignore
src/api/config.js
src/components/Base/base.js
src/views/ywbl/ywsq/selectBdc.vue
.gitignore
View file @
6c8758a
...
...
@@ -21,6 +21,5 @@ yarn-error.log*
*.njsproj
*.sln
*.sw?
/src/api/config.js
package-lock.json
...
...
src/api/config.js
0 → 100644
View file @
6c8758a
/*
* @Description: api请求配置文件
* @Autor: renchao
* @LastEditTime: 2023-03-02 13:56:25
*/
export
default
{
SERVERAPI
:
'/service-jiao'
,
// 泽平
// SERVERAPI: '/service-bdcdj' // 38服务器地址
}
\ No newline at end of file
src/components/Base/base.js
View file @
6c8758a
import
dialogBox
from
'@/components/dialogBox/dialogBox.vue'
/*
* @Description: 引入公共组件
* @Autor: renchao
* @LastEditTime: 2023-03-02 13:25:48
*/
import
dialogBox
from
'@/components/DialogBox/dialogBox.vue'
import
LbTable
from
'@/components/LbTable/lb-table.vue'
import
Theme
from
'@/components/Theme/theme.vue'
import
Popup
from
'@/components/Popup/index'
...
...
src/views/ywbl/ywsq/selectBdc.vue
View file @
6c8758a
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-03-02 14:04:16
-->
<
template
>
<dialogBox
:title=
"title"
width=
"85%"
@
closeDialog=
"closeDialog"
v-model=
"value"
isMain
:isButton=
"false"
>
<component
:is=
"router"
:sqywInfo=
"sqywInfo"
@
closeDialog=
"closeDialog"
@
updateDialog=
"updateDialog"
/>
...
...
@@ -9,6 +14,7 @@ export default {
props
:
{
value
:
{
type
:
Boolean
,
default
:
true
},
sqywInfo
:
{
type
:
Object
,
default
:
()
=>
{
}
},
djywbm
:
{
type
:
String
,
default
:
''
}
},
data
()
{
return
{
...
...
@@ -20,7 +26,7 @@ export default {
value
(
val
)
{
if
(
val
)
{
this
.
title
=
"申请业务:"
+
this
.
sqywInfo
?.
djywmc
?
this
.
sqywInfo
?.
djywmc
:
''
;
let
view
=
queueDjywmc
(
this
.
sqywInfo
?.
djywbm
);
let
view
=
queueDjywmc
(
this
.
sqywInfo
?.
djywbm
||
this
.
djywbm
);
this
.
router
=
this
.
loadView
(
view
);
}
},
...
...
Please
register
or
sign in
to post a comment