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
20c66331
authored
2023-01-16 09:49:56 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:区县接入
1 parent
1143fe4e
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
14 deletions
src/views/jsbwcx/index.vue
src/views/jsbwcx/index.vue
View file @
20c6633
...
...
@@ -87,6 +87,8 @@
:data=
"tableData.data"
>
</lb-table>
</div>
<!-- 编辑 -->
<dataDetails
ref=
"editLog"
/>
</div>
</
template
>
...
...
@@ -97,10 +99,16 @@ import data from "./data";
// 引入table混入方法
import
tableMixin
from
"@/mixins/tableMixin.js"
;
import
{
getReceiveDataReportPage
}
from
"@/api/sbbwcx.js"
;
// 引入详情弹框
import
dataDetails
from
"@/components/dataDetails/edit-dialog"
;
export
default
{
name
:
"jsbwcx"
,
mixins
:
[
tableMixin
],
data
()
{
// 注册组件
components
:
{
dataDetails
,
},
data
()
{
return
{
// 开始结束日期限制
pickerOptionsStart
:
{
...
...
@@ -194,7 +202,7 @@ export default {
},
methods
:
{
// 初始化数据
queryClick
()
{
queryClick
()
{
getReceiveDataReportPage
({
...
this
.
form
,
...
this
.
pageData
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
...
...
@@ -204,23 +212,17 @@ export default {
});
},
// 重置
resetForm
()
{
resetForm
()
{
this
.
$refs
.
ruleForm
.
resetFields
();
},
featchData
()
{
featchData
()
{
this
.
queryClick
();
},
// 详情
handleEdit
()
{
this
.
$popupDialog
(
"业务报文"
,
"components/JsonEditor/index"
,
{},
"50%"
,
"320px"
);
},
},
handleEdit
(
row
)
{
this
.
$refs
.
editLog
.
isShow
(
row
);
}
}
};
</
script
>
<
style
scoped
lang=
"scss"
>
...
...
Please
register
or
sign in
to post a comment