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
e8ee9cf0
authored
2023-10-19 10:32:06 +0800
by
renchao@pashanhoo.com
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
style:楼盘查询登记薄查询模块功能的完善
1 parent
dfe3546b
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
5 deletions
src/views/zhcx/jdcx/jdcxdata.js
src/views/zhcx/lpcx/lpcx.vue
src/views/zhcx/lpcx/lpcxdata.js
src/views/zhcx/jdcx/jdcxdata.js
View file @
e8ee9cf
...
...
@@ -13,7 +13,14 @@ class data extends filter {
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
width
:
'50'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{(
vm
.
pageData
.
currentPage
-
1
)
*
vm
.
pageData
.
pageSize
+
scope
.
$index
+
1
}
<
/div
>
)
}
},
{
prop
:
"ywlymc"
,
...
...
src/views/zhcx/lpcx/lpcx.vue
View file @
e8ee9cf
<!--
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-
07-24 14:04:47
* @LastEditTime: 2023-
10-19 10:30:56
-->
<
template
>
<div
class=
"from-clues"
>
...
...
@@ -46,7 +46,7 @@
<!-- 表格 -->
<div
class=
"from-clues-content"
>
<lb-table
:page-size=
"pageData.size"
class=
"loadingtext"
@
sort-change=
"handleSort"
:current-page
.
sync=
"pageData.current"
:total=
"
pag
eData.total"
@
size-change=
"handleSizeChange"
:current-page
.
sync=
"pageData.current"
:total=
"
tabl
eData.total"
@
size-change=
"handleSizeChange"
@
p-current-change=
"handleCurrentChange"
:column=
"tableData.columns"
:data=
"tableData.data"
>
</lb-table>
</div>
...
...
src/views/zhcx/lpcx/lpcxdata.js
View file @
e8ee9cf
/*
* @Description:
* @Autor: renchao
* @LastEditTime: 2023-10-19 10:31:31
*/
import
filter
from
'@/utils/filter.js'
let
vm
=
null
...
...
@@ -8,12 +13,19 @@ class data extends filter {
constructor
()
{
super
()
}
columns
()
{
columns
()
{
return
[
{
label
:
'序号'
,
type
:
'index'
,
width
:
'50'
width
:
'50'
,
render
:
(
h
,
scope
)
=>
{
return
(
<
div
>
{(
vm
.
pageData
.
currentPage
-
1
)
*
vm
.
pageData
.
pageSize
+
scope
.
$index
+
1
}
<
/div
>
)
}
},
{
prop
:
"qymc"
,
...
...
Please
register
or
sign in
to post a comment