Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-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
11a68a05
authored
2023-02-02 10:36:09 +0800
by
yangwei
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
登记登簿信息
1 parent
446aae45
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
1 deletions
src/api/djfDjDb.js
src/components/business/djfDjDb.vue
src/api/djfDjDb.js
0 → 100644
View file @
11a68a0
import
request
from
"@/utils/request"
;
import
SERVER
from
"./config"
;
class
djfDjDb
{
//登记登簿信息
async
getDjfDjDbById
(
bsmSjsb
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
"/rest/reg/DjfDjDb/detail"
,
method
:
"get"
,
params
:
{
bsmSjsb
:
bsmSjsb
,
},
});
}
//修改登记登簿信息
async
updateDjfDjDb
(
data
)
{
return
request
({
url
:
SERVER
.
SERVERAPI
+
"/rest/reg/DjfDjDb/edit"
,
method
:
"post"
,
data
,
});
}
}
export
default
new
djfDjDb
();
src/components/business/djfDjDb.vue
View file @
11a68a0
...
...
@@ -88,6 +88,7 @@
<
script
>
// 申请人属性信息
import
djfDjSqr
from
"@/api/djfDjSqr"
;
import
djfDjDb
from
"@/api/djfDjDb"
import
ruleMixin
from
"@/mixins/ruleMixin.js"
;
import
treeSelect
from
"@/components/treeSelect/index.vue"
;
export
default
{
...
...
@@ -140,7 +141,7 @@ export default {
methods
:
{
async
featchData
()
{
try
{
let
{
result
:
res
}
=
await
business
.
getDjfDjDbById
(
this
.
bsmSjsb
);
let
{
result
:
res
}
=
await
djfDjDb
.
getDjfDjDbById
(
this
.
bsmSjsb
);
this
.
ruleForm
=
res
;
//this.featchRule()
}
catch
(
error
)
{
...
...
Please
register
or
sign in
to post a comment