668d7732 by tianhaohao@pashanhoo.com

修改代码

1 parent 65bbe295
/*
* @Description: api请求配置文件
* @Autor: renchao
* @LastEditTime: 2023-04-18 14:14:07
*/
export default {
SERVERAPI: 'service-bdcdj-th'
}
\ No newline at end of file
......@@ -72,8 +72,8 @@
</div>
<!-- 表格 -->
<div class="from-clues-content">
<lb-table :page-size="pageData.pageSize" class="loadingtext" @sort-change="handleSort"
:current-page.sync="pageData.currentPage" :total="pageData.total" @size-change="handleSizeChange"
<lb-table :page-size="pageData.size" class="loadingtext" @sort-change="handleSort"
:current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
@p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data">
</lb-table>
</div>
......@@ -102,12 +102,13 @@ export default {
djlx: "",
ywh: "",
},
pageData: {
currentPage: 1,
pageSize: 10,
total: 0,
},
// pageData: {
// currentPage: 1,
// pageSize: 10,
// total: 0,
// },
tableData: {
total: 0,
columns: datas.columns(),
data: []
}
......
......@@ -37,7 +37,7 @@ class data extends filter {
}
},
{
label: "办理状态",
label: "在办环节",
render: (h, scope) => {
if ((scope.row.zbhj != '' && scope.row.zbhj != null) || (scope.row.userName != '' && scope.row.userName != null))
return (
......@@ -82,12 +82,7 @@ class data extends filter {
label: "坐落",
minWidth: '150',
showOverflowTooltip: true
},
{
prop: "slry",
label: "受理人员",
},
},
{
prop: "slsj",
label: "受理时间",
......@@ -95,6 +90,10 @@ class data extends filter {
sortable: 'custom'
},
{
prop: "slry",
label: "受理人员",
},
{
prop: "jssj",
label: "结束时间",
width: '140',
......