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
1d91be58
authored
2022-08-30 15:00:01 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:dialog
1 parent
768340a9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
13 deletions
src/components/dialogBox/dialogBox.vue
src/views/zhcx/jdcx/jdcx.vue
src/components/dialogBox/dialogBox.vue
View file @
1d91be5
...
...
@@ -13,7 +13,7 @@
</div>
</div>
</div>
<div
class=
"dialogBox-content"
:style=
"
{
minH
eight: scrollerHeight ? scrollerHeight : 'auto' }">
<div
class=
"dialogBox-content"
:style=
"
{
h
eight: scrollerHeight ? scrollerHeight : 'auto' }">
<slot></slot>
</div>
<div
slot=
"footer"
class=
"dialog_footer"
v-if=
"isButton"
>
...
...
@@ -73,7 +73,7 @@ export default {
key
:
0
,
dialogVisible
:
false
,
fullscreen
:
false
,
scrollerHeight
:
'520px'
,
scrollerHeight
:
false
,
}
},
watch
:
{
...
...
src/views/zhcx/jdcx/jdcx.vue
View file @
1d91be5
...
...
@@ -7,7 +7,7 @@
<el-col
:span=
"5"
>
<el-form-item
label=
"业务来源"
>
<el-select
v-model=
"queryForm.ywly"
filterable
clearable
placeholder=
"请选择业务来源"
>
<el-option
v-for=
"item in
ywlys"
:key=
"item.value"
:label=
"item.label"
:value=
"item.valu
e"
>
<el-option
v-for=
"item in
dictData['ywly']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcod
e"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -15,7 +15,7 @@
<el-col
:span=
"5"
>
<el-form-item
label=
"权利类型"
>
<el-select
v-model=
"queryForm.qllx"
filterable
clearable
placeholder=
"请选择权利类型"
>
<el-option
v-for=
"item in
qllxs"
:key=
"item.value"
:label=
"item.label"
:value=
"item.valu
e"
>
<el-option
v-for=
"item in
dictData['A8']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcod
e"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -23,7 +23,7 @@
<el-col
:span=
"5"
>
<el-form-item
label=
"登记类型"
>
<el-select
v-model=
"queryForm.djlx"
filterable
clearable
placeholder=
"请选择登记类型"
>
<el-option
v-for=
"item in
djlxs"
:key=
"item.value"
:label=
"item.label"
:value=
"item.valu
e"
>
<el-option
v-for=
"item in
dictData['A21']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcod
e"
>
</el-option>
</el-select>
</el-form-item>
...
...
@@ -54,6 +54,7 @@
</div>
</
template
>
<
script
>
import
{
mapGetters
}
from
'vuex'
import
table
from
"@/utils/mixin/table"
;
import
{
datas
,
sendThis
}
from
"./jdcxdata"
;
export
default
{
...
...
@@ -63,6 +64,9 @@ export default {
mounted
()
{
sendThis
(
this
);
},
computed
:
{
...
mapGetters
([
'dictData'
])
},
data
()
{
return
{
queryForm
:
{
...
...
@@ -71,14 +75,6 @@ export default {
djlx
:
""
,
ywh
:
""
,
},
pageData
:
{
current
:
1
,
size
:
10
,
total
:
2
,
},
ywlys
:
datas
.
ywlys
(),
tableData
:
{
columns
:
datas
.
columns
(),
data
:
[
...
...
Please
register
or
sign in
to post a comment