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
58714585
authored
2022-11-10 17:28:29 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
feat:系统管理
1 parent
d2dcfc67
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
33 additions
and
29 deletions
src/views/sqcx/sqcxjl/sqcxjl.vue
src/views/system/dictionaries/dictionaries.vue
src/views/system/qtjfjmb/qtjfjmb.vue
src/views/system/sqywgz/sqywgz.vue
src/views/sqcx/sqcxjl/sqcxjl.vue
View file @
5871458
...
...
@@ -6,19 +6,19 @@
<el-row>
<el-col
:span=
"5"
>
<el-form-item
label=
"查询编号"
>
<el-input
placeholder=
"请输入编号"
@
clear=
"queryClick
()
"
v-model=
"queryForm.cxbh"
class=
"width100"
clearable
>
<el-input
placeholder=
"请输入编号"
@
clear=
"queryClick"
v-model=
"queryForm.cxbh"
class=
"width100"
clearable
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"5"
>
<el-form-item
label=
"申请人"
>
<el-input
placeholder=
"请输入申请人"
@
clear=
"queryClick
()
"
v-model=
"queryForm.sqr"
class=
"width100"
clearable
>
<el-input
placeholder=
"请输入申请人"
@
clear=
"queryClick"
v-model=
"queryForm.sqr"
class=
"width100"
clearable
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"14"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
native-type=
"submit"
@
click=
"queryClick
()
"
>
查询
</el-button>
<el-button
type=
"primary"
native-type=
"submit"
@
click=
"queryClick"
>
查询
</el-button>
<el-button
@
click=
"moreQueryClick()"
>
高级查询
</el-button>
</el-form-item>
</el-col>
...
...
@@ -27,7 +27,7 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
border
class=
"loadingtext"
@
sort-change=
"handleSort"
<lb-table
:page-size=
"pageData.size"
class=
"loadingtext"
@
sort-change=
"handleSort"
:current-page
.
sync=
"pageData.current"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
...
...
src/views/system/dictionaries/dictionaries.vue
View file @
5871458
...
...
@@ -6,17 +6,17 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"字典类型编码"
>
<el-input
v-model=
"ruleForm.dcode"
@
clear=
"
fetchData()
"
clearable
placeholder=
"字典类型编码"
></el-input>
<el-input
v-model=
"ruleForm.dcode"
@
clear=
"
queryClick
"
clearable
placeholder=
"字典类型编码"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"字典类型名称"
>
<el-input
v-model=
"ruleForm.dname"
@
clear=
"
fetchData()
"
clearable
placeholder=
"字典类型名称"
></el-input>
<el-input
v-model=
"ruleForm.dname"
@
clear=
"
queryClick
"
clearable
placeholder=
"字典类型名称"
></el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
native-type=
"submit"
icon=
"el-icon-search"
@
click=
"
fetchData
"
>
查询
</el-button>
<el-button
type=
"primary"
native-type=
"submit"
icon=
"el-icon-search"
@
click=
"
queryClick
"
>
查询
</el-button>
<el-button
icon=
"el-icon-refresh"
@
click=
"handleRefresh"
>
刷新缓存
</el-button>
</el-form-item>
</el-col>
...
...
@@ -25,9 +25,9 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.pageSize"
:current-page
.
sync=
"pageData.currentPage"
:total=
"tableData.total
"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns
"
:data=
"tableData.data"
>
<lb-table
:page-size=
"pageData.pageSize"
class=
"loadingtext"
:current-page
.
sync=
"pageData.currentPage
"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange
"
:
column=
"tableData.columns"
:
data=
"tableData.data"
>
</lb-table>
</div>
<editDialog
v-model=
"isDialog"
:details=
"details"
/>
...
...
@@ -46,6 +46,7 @@ export default {
mixins
:
[
table
],
mounted
()
{
sendThis
(
this
);
this
.
queryClick
()
},
data
()
{
return
{
...
...
@@ -68,8 +69,10 @@ export default {
},
methods
:
{
// 初始化数据
fetchData
()
{
queryClick
()
{
this
.
$startLoading
();
getQlxxDictList
({
...
this
.
ruleForm
,
...
this
.
pageData
}).
then
(
res
=>
{
this
.
$endLoading
();
let
{
records
,
total
}
=
res
.
result
this
.
tableData
.
data
=
records
?
records
:
[]
this
.
tableData
.
total
=
total
?
total
:
0
...
...
src/views/system/qtjfjmb/qtjfjmb.vue
View file @
5871458
...
...
@@ -6,7 +6,7 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"权利类型"
>
<el-select
v-model=
"queryForm.qllx"
@
change=
"
fetchData()
"
class=
"width100"
filterable
clearable
<el-select
v-model=
"queryForm.qllx"
@
change=
"
queryClick
"
class=
"width100"
filterable
clearable
placeholder=
"请选择权利类型"
>
<el-option
v-for=
"item in dictData['A8']"
:key=
"item.dcode"
:label=
"item.dname"
:value=
"item.dcode"
>
</el-option>
...
...
@@ -15,7 +15,7 @@
</el-col>
<el-col
:span=
"18"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"
fetchData()
"
>
查询
</el-button>
<el-button
type=
"primary"
icon=
"el-icon-search"
@
click=
"
queryClick
"
>
查询
</el-button>
<el-button
@
click=
"moreQueryClick()"
>
高级查询
</el-button>
</el-form-item>
</el-col>
...
...
@@ -24,9 +24,9 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
:current-page
.
sync=
"pageData.current"
:total=
"tableData.total
"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns
"
:data=
"tableData.data"
>
<lb-table
:page-size=
"pageData.size"
class=
"loadingtext"
:current-page
.
sync=
"pageData.current
"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange
"
:
column=
"tableData.columns"
:
data=
"tableData.data"
>
</lb-table>
</div>
<editDialog
v-model=
"isDialog"
:details=
"details"
/>
...
...
@@ -46,6 +46,7 @@ export default {
mixins
:
[
table
],
mounted
()
{
sendThis
(
this
);
this
.
queryClick
()
},
computed
:
{
...
mapGetters
([
'dictData'
])
...
...
@@ -66,9 +67,10 @@ export default {
},
methods
:
{
// 初始化数据
fetchData
()
{
queryClick
()
{
this
.
$startLoading
();
sysSqywmbszSearch
({
...
this
.
pageData
,
...
this
.
queryForm
}).
then
(
res
=>
{
this
.
loading
=
false
this
.
$endLoading
();
let
{
records
,
total
}
=
res
.
result
this
.
tableData
.
data
=
records
?
records
:
[]
this
.
tableData
.
total
=
total
?
total
:
0
...
...
src/views/system/sqywgz/sqywgz.vue
View file @
5871458
...
...
@@ -6,7 +6,7 @@
<el-row
:gutter=
"20"
>
<el-col
:span=
"6"
>
<el-form-item
label=
"权利类型"
>
<el-select
v-model=
"queryForm.qllx"
@
change=
"queryClick
()
"
filterable
class=
"width100"
clearable
<el-select
v-model=
"queryForm.qllx"
@
change=
"queryClick"
filterable
class=
"width100"
clearable
placeholder=
"请选择权利类型"
>
<el-option
v-for=
"item in qllxs"
:key=
"item.value"
:label=
"item.label"
:value=
"item.value"
>
</el-option>
...
...
@@ -15,13 +15,13 @@
</el-col>
<el-col
:span=
"6"
>
<el-form-item
label=
"登记业务编码"
>
<el-input
placeholder=
"请输入登记业务编码"
@
clear=
"queryClick
()
"
v-model=
"queryForm.djywbm"
clearable
>
<el-input
placeholder=
"请输入登记业务编码"
@
clear=
"queryClick"
v-model=
"queryForm.djywbm"
clearable
>
</el-input>
</el-form-item>
</el-col>
<el-col
:span=
"12"
class=
"btnColRight"
>
<el-form-item>
<el-button
type=
"primary"
native-type=
"submit"
icon=
"el-icon-search"
@
click=
"queryClick
()
"
>
查询
</el-button>
<el-button
type=
"primary"
native-type=
"submit"
icon=
"el-icon-search"
@
click=
"queryClick"
>
查询
</el-button>
</el-form-item>
</el-col>
</el-row>
...
...
@@ -29,9 +29,9 @@
</div>
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.pageSize"
:current-page
.
sync=
"pageData.currentPage"
:total=
"tableData.total
"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns
"
:data=
"tableData.data"
>
<lb-table
:page-size=
"pageData.pageSize"
class=
"loadingtext"
:current-page
.
sync=
"pageData.currentPage
"
:total=
"tableData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange
"
:
column=
"tableData.columns"
:
data=
"tableData.data"
>
</lb-table>
</div>
<editDialog
v-model=
"isDialog"
:detailList=
"detailList"
:bsmSqyw=
"bsmSqyw"
/>
...
...
@@ -50,6 +50,7 @@ export default {
mixins
:
[
table
],
mounted
()
{
sendThis
(
this
);
this
.
queryClick
()
},
data
()
{
return
{
...
...
@@ -69,13 +70,11 @@ export default {
}
},
methods
:
{
//查询
queryClick
()
{
this
.
fetchData
();
},
// 初始化数据
fetchData
()
{
queryClick
()
{
this
.
$startLoading
();
getSysSqdjywBysearch
({
...
this
.
queryForm
,
...
this
.
pageData
}).
then
(
res
=>
{
this
.
$endLoading
();
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
this
.
tableData
.
total
=
total
?
total
:
0
...
...
Please
register
or
sign in
to post a comment