Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
bdc
/
bdcjg-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
9193b93f
authored
2023-01-17 11:47:43 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:区县接入
1 parent
422ef20c
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
22 additions
and
23 deletions
src/utils/mixin/table.js
src/views/business-info/hysyq/index.vue
src/views/jsbwcx/index.vue
src/utils/mixin/table.js
View file @
9193b93
...
...
@@ -23,6 +23,7 @@ export default {
this
.
queryClick
()
},
handleCurrentChange
(
val
)
{
console
.
log
(
val
,
'222222222'
);
this
.
pageData
.
currentPage
=
val
if
(
this
.
queryClick
)
{
this
.
queryClick
()
...
...
src/views/business-info/hysyq/index.vue
View file @
9193b93
...
...
@@ -150,6 +150,7 @@ export default {
this
.
message
=
error
this
.
$refs
.
msg
.
messageShow
()
}
},
async
handlDatadetails
(
index
,
row
)
{
let
{
result
:
res
,
message
}
=
await
dataReporting
.
getQltFwFdcqYzByCondition
(
row
.
BSM_SJSB
)
...
...
src/views/jsbwcx/index.vue
View file @
9193b93
...
...
@@ -111,7 +111,7 @@ export default {
components
:
{
dataDetails
,
},
data
()
{
data
()
{
return
{
// 开始结束日期限制
pickerOptionsStart
:
{
...
...
@@ -140,7 +140,7 @@ export default {
djlx
:
""
,
// 登记类型
jcjg
:
""
,
// 检查结果
rkjg
:
""
,
//入库结果
currentPage
:
1
,
currentPage
:
1
},
// 校验规则
rules
:
{
...
...
@@ -187,29 +187,28 @@ export default {
<
/el-button
>
<
el
-
button
type
=
"primary"
>
结果
<
/el-button
>
<
/div
>
)
;
}
,
}
,
)
}
}
]),
// 表格列表数据
total
:
0
,
data
:
[
{}
],
data
:
[],
},
// 分页
pageData
:
{
total
:
0
,
pageSize
:
10
,
current
:
1
,
current
:
1
},
// 业务名称
statusOptions
:
[],
title
:
""
,
};
statusOptions
:
[]
}
},
methods
:
{
// 初始化数据
queryClick
()
{
getReceiveDataReportPage
({
...
this
.
form
,
...
this
.
page
Data
}).
then
(
queryClick
()
{
getReceiveDataReportPage
({
...
this
.
form
,
...
this
.
form
Data
}).
then
(
(
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
...
...
@@ -217,22 +216,20 @@ export default {
this
.
tableData
.
data
=
records
?
records
:
[];
}
}
)
;
)
},
// 重置
resetForm
()
{
resetForm
()
{
this
.
$refs
.
ruleForm
.
resetFields
();
},
featchData
()
{
this
.
pageData
.
currentPage
=
1
this
.
queryClick
();
},
// 详情
handleEdit
(
row
)
{
this
.
title
=
row
.
rectypeName
;
this
.
$refs
.
editLog
.
isShow
(
row
);
},
},
};
featchData
()
{
this
.
pageData
.
currentPage
=
1
this
.
queryClick
();
}
}
}
</
script
>
<
style
scoped
lang=
"scss"
>
//
引入表单整体样式
...
...
Please
register
or
sign in
to post a comment