|
|
|
@ -28,6 +28,9 @@
|
|
|
|
|
<a-col :md="6" :sm="12" > |
|
|
|
|
<a-button @click="handleSearch" type="primary" icon="search">搜索</a-button> |
|
|
|
|
<a-button @click="handleReset" style="margin-left: 10px;">重置</a-button> |
|
|
|
|
<a-dropdown v-if="selectedRowKeys.length > 0" v-has="'doneManage:deleteAll'"> |
|
|
|
|
<a-button style="margin-left: 8px" @click="batchDell"> <a-icon type="delete"/> 删除 </a-button> |
|
|
|
|
</a-dropdown> |
|
|
|
|
</a-col> |
|
|
|
|
</span> |
|
|
|
|
</a-row> |
|
|
|
@ -41,9 +44,10 @@
|
|
|
|
|
:dataSource="data" |
|
|
|
|
:pagination="ipagination" |
|
|
|
|
@change="handleTableChange" |
|
|
|
|
:rowSelection="{selectedRowKeys: selectedRowKeys, onChange: onSelectChange}" |
|
|
|
|
ref="table" |
|
|
|
|
> |
|
|
|
|
<a-table-column title="#" :width="50"> |
|
|
|
|
<a-table-column title="序号" :width="80" align="center"> |
|
|
|
|
<template slot-scope="t,r,i" > |
|
|
|
|
<span> {{i+1}} </span> |
|
|
|
|
</template> |
|
|
|
@ -96,7 +100,7 @@
|
|
|
|
|
<span> {{millsToTime(t)}} </span> |
|
|
|
|
</template> |
|
|
|
|
</a-table-column> |
|
|
|
|
<a-table-column title="创建时间" dataIndex="createTime" :width="150" align="center"> |
|
|
|
|
<a-table-column title="创建时间" dataIndex="createTime" :width="200" align="center"> |
|
|
|
|
<template slot-scope="t"> |
|
|
|
|
<span> {{t}} </span> |
|
|
|
|
</template> |
|
|
|
@ -134,6 +138,7 @@
|
|
|
|
|
<script> |
|
|
|
|
import { JeecgListMixin } from '@/mixins/JeecgListMixin' |
|
|
|
|
import { activitiMixin } from '@/views/activiti/mixins/activitiMixin' |
|
|
|
|
import { postFormAction } from '@api/manage' |
|
|
|
|
export default { |
|
|
|
|
name: "doneManage", |
|
|
|
|
mixins:[activitiMixin,JeecgListMixin], |
|
|
|
@ -187,6 +192,39 @@ export default {
|
|
|
|
|
this.init(); |
|
|
|
|
}, |
|
|
|
|
methods: { |
|
|
|
|
batchDell(){ |
|
|
|
|
if(!this.url.deleteHistoricTask){ |
|
|
|
|
this.$message.error("请设置url.deleteHistoricTask属性!!!!") |
|
|
|
|
return |
|
|
|
|
} |
|
|
|
|
if (this.selectedRowKeys.length <= 0) { |
|
|
|
|
this.$message.warning('请选择一条记录!'); |
|
|
|
|
return; |
|
|
|
|
} else { |
|
|
|
|
var ids = ""; |
|
|
|
|
for (var a = 0; a < this.selectedRowKeys.length; a++) { |
|
|
|
|
ids += this.selectedRowKeys[a] + ","; |
|
|
|
|
} |
|
|
|
|
var that = this; |
|
|
|
|
this.$confirm({ |
|
|
|
|
title: "确认删除", |
|
|
|
|
content: "是否删除选中数据?", |
|
|
|
|
onOk: function () { |
|
|
|
|
that.loading = true; |
|
|
|
|
postFormAction(that.url.deleteHistoricTask+ids,null).then((res) => { |
|
|
|
|
if (res.success) { |
|
|
|
|
that.$message.success(res.message); |
|
|
|
|
that.getDataList(); |
|
|
|
|
} else { |
|
|
|
|
that.$message.warning(res.message); |
|
|
|
|
} |
|
|
|
|
}).finally(() => { |
|
|
|
|
that.loading = false; |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
loadData(){}, |
|
|
|
|
init() { |
|
|
|
|
this.getDataList(); |
|
|
|
|