b6110aa2 by 任超

style:接口修改

1 parent 5330d832
...@@ -4,7 +4,7 @@ import SERVER from './config' ...@@ -4,7 +4,7 @@ import SERVER from './config'
4 // 登簿日志分页 4 // 登簿日志分页
5 export function getRecordLogPage (data) { 5 export function getRecordLogPage (data) {
6 return request({ 6 return request({
7 url: SERVER.SERVERAPI + '/sjsb/RecordLog/getRecordLogPage', 7 url: SERVER.SERVERAPI + '/rest/sjsb/RecordLog/getRecordLogPage',
8 method: 'post', 8 method: 'post',
9 data 9 data
10 }) 10 })
......
...@@ -36,7 +36,7 @@ export const constantRoutes = [ ...@@ -36,7 +36,7 @@ export const constantRoutes = [
36 path: 'jgHome', 36 path: 'jgHome',
37 component: () => import('@/views/home/index'), 37 component: () => import('@/views/home/index'),
38 name: 'jgHome', 38 name: 'jgHome',
39 meta: { title: '首页', icon: 'workbench', affix: true } 39 meta: { title: '工作台', icon: 'workbench', affix: true }
40 } 40 }
41 ] 41 ]
42 } 42 }
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
35 </div> 35 </div>
36 <!-- 列表区域 --> 36 <!-- 列表区域 -->
37 <div class="from-clues-content"> 37 <div class="from-clues-content">
38 <!-- table组件 -->
38 <lb-table :page-size="pageData.size" :heightNum="210" :current-page.sync="pageData.current" 39 <lb-table :page-size="pageData.size" :heightNum="210" :current-page.sync="pageData.current"
39 :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange" 40 :total="tableData.total" @size-change="handleSizeChange" @p-current-change="handleCurrentChange"
40 :column="tableData.columns" :data="tableData.data"> 41 :column="tableData.columns" :data="tableData.data">
......