Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
任超
/
js.CadastralSystem
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
6ffa52b0
authored
2020-12-14 09:55:11 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
自然幢表单验证及权利人组件修改
1 parent
84cf8218
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
54 additions
and
11 deletions
src/components/formMenu/qlxz.vue
src/components/formMenu/qlxz_simple.vue
src/components/plh/plH.vue
src/views/dz/dzxx/index.vue
src/views/zd/zddcb/index.vue
src/views/zrz/lpb/bjlp/hbj/index.vue
src/views/zrz/zrzxx/index.vue
src/components/formMenu/qlxz.vue
View file @
6ffa52b
This diff is collapsed.
Click to expand it.
src/components/formMenu/qlxz_simple.vue
View file @
6ffa52b
...
...
@@ -101,9 +101,11 @@
<li>
<el-date-picker
v-model=
"childItem.tdsyqssj"
:picker-options=
"childItem.pickerStart"
type=
"date"
value-format=
"yyyy-MM-dd"
placeholder=
"选择日期"
@
input=
"startTime(index,childIndex)"
>
</el-date-picker>
</li>
...
...
@@ -148,7 +150,9 @@
v-model=
"childItem.tdsyjssj"
type=
"date"
value-format=
"yyyy-MM-dd"
:picker-options=
"childItem.pickerEnd"
placeholder=
"选择日期"
@
input=
"endTime(index,childIndex)"
>
</el-date-picker>
</li>
...
...
@@ -221,6 +225,8 @@ export default {
syqx
:
""
,
tdsyjssj
:
""
,
tdsyqssj
:
""
,
pickerStart
:{},
pickerEnd
:{},
tdzh
:
""
,
},
],
...
...
@@ -317,6 +323,42 @@ export default {
getQlxzDataList
()
{
return
this
.
countList
;
},
//起始时间判断
startTime
(
index
,
childIndex
){
let
startTime
=
this
.
countList
[
index
].
list
[
childIndex
].
tdsyqssj
;
let
endTime
=
this
.
countList
[
index
].
list
[
childIndex
].
tdsyjssj
;
this
.
countList
[
index
].
list
[
childIndex
].
pickerEnd
=
{
disabledDate
:
(
time
)
=>
{
if
(
Object
.
keys
(
startTime
).
length
>
0
)
{
return
new
Date
(
startTime
).
getTime
()
>
time
.
getTime
();
}
else
{
return
time
.
getTime
()
<
Date
.
now
();
}
}
}
if
(
Object
.
keys
(
startTime
).
length
>
0
&&
Object
.
keys
(
endTime
).
length
>
0
)
{
let
startYear
=
new
Date
(
startTime
).
getFullYear
();
let
endYear
=
new
Date
(
endTime
).
getFullYear
();
}
},
endTime
(
index
,
childIndex
,
e
){
console
.
log
(
e
,
'eeeeee'
);
let
startTime
=
this
.
countList
[
index
].
list
[
childIndex
].
tdsyqssj
;
let
endTime
=
this
.
countList
[
index
].
list
[
childIndex
].
tdsyjssj
;
this
.
countList
[
index
].
list
[
childIndex
].
pickerStart
=
{
disabledDate
:
(
time
)
=>
{
if
(
Object
.
keys
(
endTime
).
length
>
0
)
{
return
new
Date
(
endTime
).
getTime
()
<
time
.
getTime
();
}
else
{
return
time
.
getTime
()
>
Date
.
now
();
}
}
}
if
(
Object
.
keys
(
startTime
).
length
>
0
&&
Object
.
keys
(
endTime
).
length
>
0
)
{
let
startYear
=
new
Date
(
startTime
).
getFullYear
();
let
endYear
=
new
Date
(
endTime
).
getFullYear
();
}
},
},
};
</
script
>
...
...
src/components/plh/plH.vue
View file @
6ffa52b
...
...
@@ -187,7 +187,7 @@
<tr>
<td
colspan=
"12"
rowspan=
"4"
align=
"center"
>
<Qlxz
ref=
"qlxzModule"
></Qlxz>
<Qlxz
ref=
"qlxzModule"
:hasSyqx=
'false'
></Qlxz>
</td>
</tr>
<tr></tr>
...
...
@@ -218,7 +218,7 @@
</
template
>
<
script
>
import
Qlxz
from
"./../../components/formMenu/qlxz
_simple
"
;
import
Qlxz
from
"./../../components/formMenu/qlxz"
;
import
{
batchUpdateQjH
}
from
"../../api/h"
;
export
default
{
name
:
"plH"
,
...
...
src/views/dz/dzxx/index.vue
View file @
6ffa52b
...
...
@@ -141,7 +141,7 @@
<tr>
<td
colspan=
"12"
align=
"center"
>
<Qlxz
ref=
"qlxzModule"
:formData=
"form"
></Qlxz>
<Qlxz
ref=
"qlxzModule"
:hasSyqx=
'false'
:formData=
"form"
></Qlxz>
</td>
</tr>
...
...
@@ -207,7 +207,7 @@
<
script
>
import
Qlr
from
"../../../components/formMenu/qlr"
;
import
Qlxz
from
"../../../components/formMenu/qlxz
_simple
"
;
import
Qlxz
from
"../../../components/formMenu/qlxz"
;
import
{
saveDzInfo
,
getBdcdyh
,
getDzDetailByBsm
}
from
"../../../api/dz"
;
import
{
getQjZdjbxxDetailById
}
from
"../../../api/zd"
import
{
submit
,
registerCall
}
from
"../../../api/common"
...
...
src/views/zd/zddcb/index.vue
View file @
6ffa52b
...
...
@@ -301,7 +301,7 @@
</tr>
<tr>
<td
colspan=
"12"
>
<Qlxz
ref=
"qlxzModule"
:formData=
"formData"
></Qlxz>
<Qlxz
ref=
"qlxzModule"
:
hasSyqx=
'true'
:
formData=
"formData"
></Qlxz>
</td>
</tr>
<tr>
...
...
@@ -479,9 +479,9 @@ export default {
console
.
log
(
res
.
result
,
'res.result'
);
this
.
getXzqData
(
res
.
result
.
xzqbsm
,
res
.
result
.
djqbsm
);
//如果没有宗地代码,自动生成
if
(
res
.
result
.
zddm
==
null
){
this
.
generatorCode
()
}
//
if(res.result.zddm == null){
//
this.generatorCode()
//
}
//判断容密高是否为区间值,如果是区间值,则将校验值置为'-'并给rjl,jzmd,jzxg赋值
this
.
rjl
=
this
.
isInterval
(
this
.
formData
.
jyrjl
)
?
this
.
formData
.
jyrjl
:
''
;
this
.
formData
.
jyrjl
=
this
.
isInterval
(
this
.
formData
.
jyrjl
)
?
'-'
:
this
.
formData
.
jyrjl
;
...
...
@@ -717,7 +717,8 @@ export default {
this
.
$nextTick
(()
=>
{
if
(
flag
){
//宗地面积处理
this
.
formData
.
zdmj
=
this
.
formData
.
zdmj
.
replace
(
/
[^\d\.]
/g
,
''
)
// console.log(this.formData.zdmj,'this.formData.zdmj');
// this.formData.zdmj = this.formData.zdmj.replace(/[^\d\.]/g,'')
updateQjZdjbxx
(
this
.
formData
)
.
then
((
res
)
=>
{
if
(
res
.
code
==
200
)
{
...
...
src/views/zrz/lpb/bjlp/hbj/index.vue
View file @
6ffa52b
...
...
@@ -310,7 +310,7 @@
<tr>
<td
colspan=
"12"
rowspan=
"4"
align=
"center"
>
<Qlxz
ref=
"qlxzModule"
></Qlxz>
<Qlxz
ref=
"qlxzModule"
:hasSyqx=
'false'
></Qlxz>
</td>
</tr>
<tr></tr>
...
...
@@ -403,7 +403,7 @@
<
script
>
import
Qlr
from
"./../../../../../components/formMenu/qlr"
;
import
Qlxz
from
"./../../../../../components/formMenu/qlxz
_simple
"
;
import
Qlxz
from
"./../../../../../components/formMenu/qlxz"
;
import
{
getQjHDetailByBsm
,
updateQjH
}
from
"./../../../../../api/h"
;
import
{
getBdcdyh
}
from
"./../../../../../api/zrz"
;
import
{
submit
,
registerCall
}
from
"./../../../../../api/common"
...
...
src/views/zrz/zrzxx/index.vue
View file @
6ffa52b
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to post a comment