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
768340a9
authored
2022-08-30 11:55:13 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style;字典模块from的渲染
1 parent
78ddd0cb
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletions
src/views/system/qtjfjmb/qtjfjmb.vue
src/views/zsgl/zssyjl/components/viewDialog.vue
src/views/system/qtjfjmb/qtjfjmb.vue
View file @
768340a
...
...
@@ -7,7 +7,7 @@
<el-col
:span=
"6"
>
<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>
...
...
@@ -32,6 +32,7 @@
</div>
</
template
>
<
script
>
import
{
mapGetters
}
from
'vuex'
import
table
from
"@/utils/mixin/table"
import
{
datas
,
sendThis
}
from
"./qtjfjmb"
import
editDialog
from
"./components/editDialog.vue"
...
...
@@ -44,6 +45,9 @@ export default {
mounted
()
{
sendThis
(
this
);
},
computed
:
{
...
mapGetters
([
'dictData'
])
},
data
()
{
return
{
isDialog
:
false
,
...
...
src/views/zsgl/zssyjl/components/viewDialog.vue
View file @
768340a
...
...
@@ -145,6 +145,9 @@ export default {
}
},
methods
:
{
closeDialog
()
{
this
.
$emit
(
'input'
,
false
)
}
},
};
</
script
>
...
...
Please
register
or
sign in
to post a comment