我不管,我要传一波
This commit is contained in:
parent
0ee2b26b2f
commit
84761dc013
|
@ -6,7 +6,7 @@ const projectApi = {
|
||||||
// update: 'sys/menu/update',
|
// update: 'sys/menu/update',
|
||||||
// del: 'sys/menu/delete',
|
// del: 'sys/menu/delete',
|
||||||
// updateStatus: 'sys/menu/updateStatus',
|
// updateStatus: 'sys/menu/updateStatus',
|
||||||
list: 'project/projectList'
|
list: 'project/pageList'
|
||||||
}
|
}
|
||||||
|
|
||||||
// export function menuAdd (params) {
|
// export function menuAdd (params) {
|
||||||
|
@ -41,7 +41,7 @@ export function getProjectList (params) {
|
||||||
return request({
|
return request({
|
||||||
url: projectApi.list,
|
url: projectApi.list,
|
||||||
method: 'get',
|
method: 'get',
|
||||||
data: params
|
params: params
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
// export function menuUpdateStatus (params) {
|
// export function menuUpdateStatus (params) {
|
||||||
|
|
|
@ -178,7 +178,7 @@ export default {
|
||||||
// } catch (e) {
|
// } catch (e) {
|
||||||
// this.localPagination = false
|
// this.localPagination = false
|
||||||
// }
|
// }
|
||||||
this.localDataSource = r.entities // 返回结果中的数组数据
|
this.localDataSource = r.rows // 返回结果中的数组数据
|
||||||
this.localLoading = false
|
this.localLoading = false
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
@ -74,8 +74,8 @@
|
||||||
class="table-page-search-submitButtons"
|
class="table-page-search-submitButtons"
|
||||||
:style="(advanced && { float: 'right', overflow: 'hidden' }) || {}"
|
:style="(advanced && { float: 'right', overflow: 'hidden' }) || {}"
|
||||||
>
|
>
|
||||||
<a-button type="primary" @click="$refs.table.refresh(true)">查询</a-button>
|
<a-button type="primary" icon="search" @click="$refs.table.refresh(true)">查询</a-button>
|
||||||
<a-button style="margin-left: 8px" @click="() => (queryParam = {})">重置</a-button>
|
<a-button style="margin-left: 8px" icon="redo" @click="() => (queryParam = {})">重置</a-button>
|
||||||
</span>
|
</span>
|
||||||
</a-col>
|
</a-col>
|
||||||
</a-row>
|
</a-row>
|
||||||
|
@ -84,6 +84,7 @@
|
||||||
|
|
||||||
<div class="table-operator">
|
<div class="table-operator">
|
||||||
<a-button type="primary" icon="plus" @click="handleEdit()">新建</a-button>
|
<a-button type="primary" icon="plus" @click="handleEdit()">新建</a-button>
|
||||||
|
<a-button type="primary" icon="minus" @click="handleEdit()">删除</a-button>
|
||||||
<!-- <a-button type="dashed" @click="tableOption">{{ (optionAlertShow && '关闭') || '开启' }} alert</a-button> -->
|
<!-- <a-button type="dashed" @click="tableOption">{{ (optionAlertShow && '关闭') || '开启' }} alert</a-button> -->
|
||||||
<a-dropdown v-action:edit v-if="selectedRowKeys.length > 0">
|
<a-dropdown v-action:edit v-if="selectedRowKeys.length > 0">
|
||||||
<a-menu slot="overlay">
|
<a-menu slot="overlay">
|
||||||
|
@ -150,59 +151,66 @@ export default {
|
||||||
// 表头
|
// 表头
|
||||||
columns: [
|
columns: [
|
||||||
{
|
{
|
||||||
title: '#',
|
title: '序号',
|
||||||
|
width: 60,
|
||||||
scopedSlots: { customRender: 'serial' },
|
scopedSlots: { customRender: 'serial' },
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '项目名称',
|
title: '项目名称',
|
||||||
dataIndex: 'projectName',
|
dataIndex: 'projectName',
|
||||||
|
key: 'projectName'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '时间',
|
title: '时间',
|
||||||
dataIndex: 'description',
|
dataIndex: 'description',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '服务调用次数',
|
title: '人数',
|
||||||
dataIndex: 'callNo',
|
dataIndex: 'callNo',
|
||||||
sorter: true,
|
// sorter: true,
|
||||||
needTotal: true,
|
needTotal: true,
|
||||||
customRender: (text) => text + ' 次',
|
// customRender: (text) => text + ' 次',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '状态',
|
title: '项目类型',
|
||||||
|
dataIndex: 'description',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '项目状态',
|
||||||
|
dataIndex: 'description',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: '创建人员',
|
||||||
dataIndex: 'projectStatus',
|
dataIndex: 'projectStatus',
|
||||||
needTotal: true,
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: '更新时间',
|
title: '创建时间',
|
||||||
dataIndex: 'updatedAt',
|
dataIndex: 'updatedAt',
|
||||||
sorter: true,
|
sorter: true,
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// title: '操作',
|
||||||
|
// dataIndex: 'action',
|
||||||
|
// width: '150px',
|
||||||
|
// scopedSlots: { customRender: 'action' },
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
title: '操作',
|
title: '操作',
|
||||||
dataIndex: 'action',
|
key: 'operation',
|
||||||
width: '150px',
|
width: 100,
|
||||||
scopedSlots: { customRender: 'action' },
|
align: 'center',
|
||||||
},
|
scopedSlots: { customRender: 'action' }
|
||||||
|
}
|
||||||
],
|
],
|
||||||
|
|
||||||
// 加载数据方法 必须为 Promise 对象
|
// 加载数据方法 必须为 Promise 对象
|
||||||
loadData: (parameter) => {
|
loadData: parameter => {
|
||||||
console.log('loadData.parameter', parameter)
|
return getProjectList(Object.assign(parameter, this.queryParam))
|
||||||
return getProjectList(Object.assign(parameter, this.queryParam)).then((res) => {
|
.then(res => {
|
||||||
return res.rows
|
return res
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
|
|
||||||
// // 加载数据方法 必须为 Promise 对象
|
|
||||||
// loadData: (parameter) => {
|
|
||||||
// console.log('loadData.parameter', parameter)
|
|
||||||
// return request({
|
|
||||||
// url: '/dawa/project/pageList',
|
|
||||||
// method: get,
|
|
||||||
// data: this.queryParam,
|
|
||||||
// })
|
|
||||||
// },
|
|
||||||
|
|
||||||
selectedRowKeys: [],
|
selectedRowKeys: [],
|
||||||
selectedRows: [],
|
selectedRows: [],
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue