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
3fd36313
authored
2023-02-10 11:27:18 +0800
by
任超
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:省厅汇交
1 parent
1c167f15
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
36 additions
and
39 deletions
src/views/sthj/dbrzcx/index.vue
src/views/sthj/sbbwcx/data/index.js
src/views/sthj/sbbwcx/index.vue
src/views/sthj/dbrzcx/index.vue
View file @
3fd3631
...
...
@@ -86,6 +86,7 @@ export default {
areacode
:
''
,
startTime
:
''
,
endTime
:
''
,
currentPage
:
1
},
// 分页
pageData
:
{
...
...
src/views/sthj/sbbwcx/data/index.js
View file @
3fd3631
...
...
@@ -10,18 +10,6 @@ class data extends filter {
columns
()
{
return
[
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{(
vm
.
pageData
.
currentPage
-
1
)
*
vm
.
pageData
.
pageSize
+
scope
.
$index
+
1
}
<
/div
>
)
}
},
{
label
:
'汇交状态'
,
width
:
'110'
,
render
:
(
h
,
scope
)
=>
{
...
...
src/views/sthj/sbbwcx/index.vue
View file @
3fd3631
...
...
@@ -26,8 +26,8 @@
<el-col
:span=
"6"
>
<el-form-item
label=
"至"
prop=
"exchangeStartTime"
label-width=
"35px"
>
<el-date-picker
type=
"date"
class=
"width100"
placeholder=
"结束日期"
clearable
:picker-options=
"pickerOptionsEnd"
v-model=
"form.exchangeEndTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
@
change=
"endTimeChange"
></el-date-picker>
:picker-options=
"pickerOptionsEnd"
v-model=
"form.exchangeEndTime"
value-format=
"yyyy-MM-dd HH:mm:ss"
@
change=
"endTimeChange"
></el-date-picker>
</el-form-item>
</el-col>
<el-col
:span=
"6"
>
...
...
@@ -91,7 +91,7 @@ import tableMixin from "@/mixins/tableMixin.js";
import
dataDetails
from
"@/components/EditDialog"
;
import
{
getDataReportPage
}
from
"@/api/dataReport.js"
;
//引入日期处理方法
import
{
timeFormat
}
from
"@/utils/operation"
;
import
{
timeFormat
}
from
"@/utils/operation"
;
export
default
{
name
:
"sbbwcx"
,
mixins
:
[
tableMixin
],
...
...
@@ -123,14 +123,14 @@ export default {
qxdm
:
""
,
// 行政区
exchangeStartTime
:
""
,
// 开始日期
exchangeEndTime
:
""
,
// 结束日期
hjjg
:
""
,
//汇交状态
hjjg
:
""
,
//汇交状态
bdcdyh
:
""
,
// 不动产单元号
ywh
:
""
,
// 业务号
qllx
:
""
,
// 权利类型
djlx
:
""
,
// 登记类型
jcjg
:
""
,
// 检查结果
rkjg
:
""
,
//入库结果
currentPage
:
1
,
currentPage
:
1
},
// 分页
pageData
:
{
...
...
@@ -141,27 +141,35 @@ export default {
// table数据
tableData
:
{
// 表头数据
columns
:
datas
.
columns
().
concat
(
[
columns
:
[
{
label
:
"操作"
,
width
:
"80"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
el
-
button
size
=
"mini"
type
=
"primary"
onClick
=
{()
=>
{
this
.
handleDetail
(
scope
.
row
);
}}
>
详情
<
/el-button
>
<
/div
>
);
},
},
]),
label
:
"序号"
,
type
:
"index"
,
width
:
"50"
,
index
:
this
.
indexMethod
,
}
]
.
concat
(
datas
.
columns
().
concat
([
{
label
:
"操作"
,
width
:
"80"
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
<
el
-
button
size
=
"mini"
type
=
"primary"
onClick
=
{()
=>
{
this
.
handleDetail
(
scope
.
row
);
}}
>
详情
<
/el-button
>
<
/div
>
);
},
}
])),
total
:
0
,
data
:
[],
},
...
...
@@ -173,8 +181,8 @@ export default {
},
methods
:
{
//截止日期变化
endTimeChange
(
val
)
{
this
.
form
.
exchangeEndTime
=
timeFormat
(
new
Date
(
val
),
true
)
endTimeChange
(
val
)
{
this
.
form
.
exchangeEndTime
=
timeFormat
(
new
Date
(
val
),
true
)
},
// 初始化数据
queryClick
()
{
...
...
Please
register
or
sign in
to post a comment