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
4552de5c
authored
2023-01-12 14:33:21 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style;样式修改
1 parent
6b3d617c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
13 deletions
src/views/dbrzcx/index.vue
src/views/sbbwcx/index.vue
src/views/dbrzcx/index.vue
View file @
4552de5
...
...
@@ -36,7 +36,7 @@
<!-- 列表区域 -->
<div
class=
"from-clues-content"
>
<!-- table组件 -->
<lb-table
:page-size=
"pageData.size"
:heightNum=
"
225
"
:current-page
.
sync=
"pageData.current"
<lb-table
:page-size=
"pageData.size"
:heightNum=
"
300
"
: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/sbbwcx/index.vue
View file @
4552de5
...
...
@@ -13,12 +13,18 @@
</el-select>
</el-form-item>
</el-col>
<el-col
:span=
"
6
"
>
<el-col
:span=
"
12
"
>
<el-form-item
label=
"汇交时间"
prop=
"reportStartTime"
>
<el-date-picker
type=
"date"
class=
"width100"
placeholder=
"开始日期"
:picker-options=
"pickerOptionsStart"
clearable
v-model=
"form.reportStartTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
<el-date-picker
type=
"date"
class=
"width100"
placeholder=
"结束日期"
:picker-options=
"pickerOptionsEnd"
clearable
v-model=
"form.reportEndTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
<el-row
:gutter=
"20"
>
<el-col
:span=
"12"
>
<el-date-picker
type=
"date"
class=
"width100"
placeholder=
"开始日期"
:picker-options=
"pickerOptionsStart"
clearable
v-model=
"form.reportStartTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
</el-col>
<el-col
:span=
"12"
>
<el-date-picker
type=
"date"
class=
"width100"
placeholder=
"结束日期"
:picker-options=
"pickerOptionsEnd"
clearable
v-model=
"form.reportEndTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
</el-col>
</el-row>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
...
...
@@ -32,7 +38,7 @@
</el-row>
<el-row
class=
"mt-10"
>
<!-- 操作按钮 -->
<el-col
:span=
"
12
"
class=
"btnColRight"
>
<el-col
:span=
"
24
"
class=
"btnColRight"
>
<btn
nativeType=
"cz"
@
click=
"resetForm('ruleForm')"
>
重置
</btn>
<btn
nativeType=
"cx"
@
click=
"queryClick"
>
查询
</btn>
</el-col>
...
...
@@ -68,7 +74,7 @@ export default {
components
:
{
dataDetails
,
},
data
()
{
data
()
{
return
{
isShow
:
false
,
// 开始结束日期限制
...
...
@@ -159,11 +165,11 @@ export default {
},
methods
:
{
// 重置表单
resetForm
()
{
resetForm
()
{
this
.
$refs
.
ruleForm
.
resetFields
();
},
// 初始化数据
queryClick
()
{
queryClick
()
{
getDataReportPage
({
...
this
.
form
,
...
this
.
pageData
}).
then
((
res
)
=>
{
if
(
res
.
code
===
200
)
{
let
{
total
,
records
}
=
res
.
result
;
...
...
@@ -173,11 +179,11 @@ export default {
});
},
// 多选
handleSelectionChange
(
val
)
{
},
handleSelectionChange
(
val
)
{
},
// 上报
handleEscalation
()
{
},
handleEscalation
()
{
},
// 详情
handleDetail
(
row
)
{
handleDetail
(
row
)
{
this
.
$refs
.
editLog
.
isShow
(
row
);
},
},
...
...
Please
register
or
sign in
to post a comment