|
|
|
@ -73,14 +73,14 @@ |
|
|
|
<el-table :data="tableData" border class="m-table-item" |
|
|
|
style="width: 70%;margin-left: 3%; margin-top: 30px;" > |
|
|
|
<el-table-column label="序号" fixed="left" type="index" align="center" width="80" /> |
|
|
|
<el-table-column prop="renwu" align="center" :show-overflow-tooltip="true" label="任务周期"> |
|
|
|
<el-table-column prop="taskPeriodName" align="center" :show-overflow-tooltip="true" label="任务周期"> |
|
|
|
</el-table-column> |
|
|
|
<el-table-column fixed="right" label="汇报情况" align="center"> |
|
|
|
<template slot-scope="scope"> |
|
|
|
<el-button @click=" handleInfo(scope.row)" type="text" size="small">{{ scope.row.data |
|
|
|
<el-button @click=" handleInfo(scope.row)" type="text" size="small">{{ scope.row.resolveNum |
|
|
|
}}/{{ scope.row.taskNum |
|
|
|
}}</el-button> |
|
|
|
<el-button @click="handelClickShowSummary()" type="text" size="small" |
|
|
|
class="">查看</el-button> |
|
|
|
<el-button @click="handelClickShowSummary()" type="text" size="small">查看</el-button> |
|
|
|
</template> |
|
|
|
</el-table-column> |
|
|
|
</el-table> |
|
|
|
@ -113,18 +113,13 @@ export default { |
|
|
|
showSummary:false, |
|
|
|
formData:{ |
|
|
|
}, |
|
|
|
tableData:[ |
|
|
|
{ |
|
|
|
renwu:"2024年11月 第三周", |
|
|
|
data:"12/16", |
|
|
|
|
|
|
|
} |
|
|
|
] |
|
|
|
tableData:[] |
|
|
|
}; |
|
|
|
}, |
|
|
|
created() {}, |
|
|
|
async mounted() { |
|
|
|
mounted() { |
|
|
|
this.getDetail() |
|
|
|
this.getTableList() |
|
|
|
}, |
|
|
|
methods: { |
|
|
|
getDetail() { |
|
|
|
@ -155,6 +150,18 @@ export default { |
|
|
|
}, |
|
|
|
closeSummary(){ |
|
|
|
this.showSummary = false; |
|
|
|
}, |
|
|
|
async getTableList(){ |
|
|
|
let url = '/actual/base/communityOneTablePeriodPublish/getPeriodTaskList' |
|
|
|
let params = { |
|
|
|
taskId:'1881158727763611649', |
|
|
|
pageSize:100, |
|
|
|
pageNo:1 |
|
|
|
} |
|
|
|
let {code,msg,data} = await requestGet(url,params) |
|
|
|
if(code === 0){ |
|
|
|
this.tableData = data.list |
|
|
|
} |
|
|
|
} |
|
|
|
}, |
|
|
|
components:{ |
|
|
|
|