668d7732 by tianhaohao@pashanhoo.com

修改代码

1 parent 65bbe295
1 /*
2 * @Description: api请求配置文件
3 * @Autor: renchao
4 * @LastEditTime: 2023-04-18 14:14:07
5 */
6 export default {
7 SERVERAPI: 'service-bdcdj-th'
8 }
...\ No newline at end of file ...\ No newline at end of file
...@@ -72,8 +72,8 @@ ...@@ -72,8 +72,8 @@
72 </div> 72 </div>
73 <!-- 表格 --> 73 <!-- 表格 -->
74 <div class="from-clues-content"> 74 <div class="from-clues-content">
75 <lb-table :page-size="pageData.pageSize" class="loadingtext" @sort-change="handleSort" 75 <lb-table :page-size="pageData.size" class="loadingtext" @sort-change="handleSort"
76 :current-page.sync="pageData.currentPage" :total="pageData.total" @size-change="handleSizeChange" 76 :current-page.sync="pageData.currentPage" :total="tableData.total" @size-change="handleSizeChange"
77 @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data"> 77 @p-current-change="handleCurrentChange" :column="tableData.columns" :data="tableData.data">
78 </lb-table> 78 </lb-table>
79 </div> 79 </div>
...@@ -102,12 +102,13 @@ export default { ...@@ -102,12 +102,13 @@ export default {
102 djlx: "", 102 djlx: "",
103 ywh: "", 103 ywh: "",
104 }, 104 },
105 pageData: { 105 // pageData: {
106 currentPage: 1, 106 // currentPage: 1,
107 pageSize: 10, 107 // pageSize: 10,
108 total: 0, 108 // total: 0,
109 }, 109 // },
110 tableData: { 110 tableData: {
111 total: 0,
111 columns: datas.columns(), 112 columns: datas.columns(),
112 data: [] 113 data: []
113 } 114 }
......
...@@ -37,7 +37,7 @@ class data extends filter { ...@@ -37,7 +37,7 @@ class data extends filter {
37 } 37 }
38 }, 38 },
39 { 39 {
40 label: "办理状态", 40 label: "在办环节",
41 render: (h, scope) => { 41 render: (h, scope) => {
42 if ((scope.row.zbhj != '' && scope.row.zbhj != null) || (scope.row.userName != '' && scope.row.userName != null)) 42 if ((scope.row.zbhj != '' && scope.row.zbhj != null) || (scope.row.userName != '' && scope.row.userName != null))
43 return ( 43 return (
...@@ -82,12 +82,7 @@ class data extends filter { ...@@ -82,12 +82,7 @@ class data extends filter {
82 label: "坐落", 82 label: "坐落",
83 minWidth: '150', 83 minWidth: '150',
84 showOverflowTooltip: true 84 showOverflowTooltip: true
85 }, 85 },
86
87 {
88 prop: "slry",
89 label: "受理人员",
90 },
91 { 86 {
92 prop: "slsj", 87 prop: "slsj",
93 label: "受理时间", 88 label: "受理时间",
...@@ -95,6 +90,10 @@ class data extends filter { ...@@ -95,6 +90,10 @@ class data extends filter {
95 sortable: 'custom' 90 sortable: 'custom'
96 }, 91 },
97 { 92 {
93 prop: "slry",
94 label: "受理人员",
95 },
96 {
98 prop: "jssj", 97 prop: "jssj",
99 label: "结束时间", 98 label: "结束时间",
100 width: '140', 99 width: '140',
......