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
34bc06c4
authored
2021-01-06 16:14:39 +0800
by
杨威
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
批准用途和实际用途必填
1 parent
fb5911e2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
35 additions
and
8 deletions
src/components/formMenu/qlxz.vue
src/components/formMenu/qlxz.vue
View file @
34bc06c
...
...
@@ -53,8 +53,8 @@
:class=
"childIndex > 0 ? 'childYT' : ''"
>
<ul>
<li>
批准用途
</li>
<li>
实际用途
</li>
<li>
<i
class=
"requisite"
>
*
</i>
批准用途
</li>
<li>
<i
class=
"requisite"
>
*
</i>
实际用途
</li>
<li><i
class=
"requisite"
>
*
</i>
土地使用起始时间
</li>
</ul>
</el-col>
...
...
@@ -69,6 +69,7 @@
class=
"formSelect percent30"
v-if=
"show"
:default-expand-all=
"defaultExpandAll"
ref=
"pzytdm"
:multiple=
"multiple"
:placeholder=
"placeholder"
:disabled=
"formData.qszt!='0'"
...
...
@@ -84,6 +85,7 @@
class=
"formSelect percent30"
v-if=
"show"
:default-expand-all=
"defaultExpandAll"
ref=
"sjytdm"
:multiple=
"multiple"
:placeholder=
"placeholder"
:disabled=
"formData.qszt!='0'"
...
...
@@ -234,8 +236,8 @@
:class=
"childIndex > 0 ? 'childYT' : ''"
>
<ul>
<li>
批准用途
</li>
<li>
实际用途
</li>
<li>
<i
class=
"requisite"
>
*
</i>
批准用途
</li>
<li>
<i
class=
"requisite"
>
*
</i>
实际用途
</li>
<li><i
class=
"requisite"
>
*
</i>
土地使用起始时间
</li>
</ul>
</el-col>
...
...
@@ -249,6 +251,7 @@
<el-select-tree
v-if=
"show"
:default-expand-all=
"defaultExpandAll"
ref=
"pzytdm"
:multiple=
"multiple"
:placeholder=
"placeholder"
:disabled=
"disabled"
...
...
@@ -263,6 +266,7 @@
<el-select-tree
v-if=
"show"
:default-expand-all=
"defaultExpandAll"
ref=
"sjytdm"
:multiple=
"multiple"
:placeholder=
"placeholder"
:disabled=
"disabled"
...
...
@@ -627,6 +631,20 @@ export default {
// val:this.$refs.tdsyjssj[temp+ind].value,
rule
:
/^
\s
*$/g
,
//非空
},
{
data
:
item
.
list
[
ind
].
pzytdm
,
name
:
'批准用途'
,
dom
:
this
.
$refs
.
pzytdm
[
temp
+
ind
],
// val:this.$refs.tdsyjssj[temp+ind].value,
rule
:
/^
\s
*$/g
,
//非空
},
{
data
:
item
.
list
[
ind
].
sjytdm
,
name
:
'实际用途'
,
dom
:
this
.
$refs
.
sjytdm
[
temp
+
ind
],
// val:this.$refs.tdsyjssj[temp+ind].value,
rule
:
/^
\s
*$/g
,
//非空
},
)
if
(
this
.
hasSyqx
){
rules
.
push
(
...
...
@@ -696,10 +714,19 @@ export default {
watch
:{
countList
:
{
handler
:
function
(
newVal
,
oldVal
)
{
newVal
.
forEach
((
item
,
ind
)
=>
{
if
(
item
.
qlxzdm
!=
''
){
this
.
$refs
.
qlxzdm
[
ind
].
$el
.
style
.
border
=
""
}
newVal
.
forEach
((
i
,
ind
)
=>
{
i
.
list
.
forEach
((
item
,
index
)
=>
{
if
(
item
.
qlxzdm
!=
''
&&
item
.
qlxzdm
!=
null
){
this
.
$refs
.
qlxzdm
[
ind
].
$el
.
style
.
border
=
""
}
debugger
if
(
item
.
sjytdm
!=
''
&&
item
.
sjytdm
!=
null
){
this
.
$refs
.
sjytdm
[
ind
].
$el
.
style
.
border
=
""
}
if
(
item
.
pzytdm
!=
''
&&
item
.
pzytdm
!=
null
){
this
.
$refs
.
pzytdm
[
ind
].
$el
.
style
.
border
=
""
}
})
})
},
deep
:
true
...
...
Please
register
or
sign in
to post a comment