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
5028f767
authored
2020-12-04 17:12:33 +0800
by
weimo934
Browse Files
Options
Browse Files
Tag
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
2 parents
45b80b92
66847347
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
6 deletions
src/components/lineTree/lineItem.vue
src/views/zd/zddcb/index.vue
src/components/lineTree/lineItem.vue
View file @
5028f76
...
...
@@ -175,9 +175,31 @@ export default {
// 左键双击事件
dbclick
(
item
)
{
clearTimeout
(
this
.
time
);
if
(
item
.
zdbsm
||
item
.
zrzbsm
)
{
this
.
$router
.
push
(
"/zd"
);
if
(
item
.
type
==
'zd'
||
item
.
type
==
'zrz'
||
item
.
type
==
'dz'
){
this
.
$router
.
push
({
path
:
'/'
+
item
.
type
,
query
:{
source
:
2
,
bsm
:
item
.
bsm
}
});
}
// if (item.type == 'zd') {
// this.$router.push({
// path: '/zd',
// query:{
// source: 2,
// bsm:item.bsm
// }
// });
// }else if(item.type == 'zrz'){
// this.$router.push({
// path: '/zrz',
// query:{
// bsm:item.bsm
// }
// });
// }
},
closeMenu
()
{
this
.
$emit
(
"changeVisible"
,
false
);
...
...
src/views/zd/zddcb/index.vue
View file @
5028f76
...
...
@@ -112,7 +112,7 @@
class=
"formInput percent80"
v-model=
"formData.zddm"
/>
<el-button
type=
"warning"
class=
"createBtn"
@
click=
"generatorCode"
<el-button
type=
"warning"
:disabled=
"formData.qszt!='0'"
class=
"createBtn"
@
click=
"generatorCode"
>
生成
</el-button>
</td>
...
...
@@ -130,7 +130,7 @@
class=
"formInput percent80"
v-model=
"formData.bdcdyh"
/>
<
el-button
type=
"warning"
class=
"createBtn"
>
生成
</el-button
>
<
!--
<el-button
type=
"warning"
:disabled=
"formData.qszt!='0'"
class=
"createBtn"
>
生成
</el-button>
--
>
</td>
</tr>
<tr>
...
...
@@ -705,7 +705,7 @@ export default {
return
this
.
formData
.
zddm
;
},
zdbsm
()
{
return
this
.
$
store
.
state
.
zd
bsm
;
return
this
.
$
route
.
query
.
bsm
;
},
},
watch
:
{
...
...
@@ -720,7 +720,7 @@ export default {
},
zdbsm
:
function
(
val
)
{
this
.
getZdjbxxData
(
val
)
this
.
curZdbsm
=
this
.
$route
.
query
.
bsm
;
this
.
curZdbsm
=
val
;
}
},
};
...
...
Please
register
or
sign in
to post a comment