mirror of
https://github.com/FatttSnake/Pinnacle-OA.git
synced 2026-04-05 23:11:24 +08:00
182 lines
6.1 KiB
Vue
182 lines
6.1 KiB
Vue
<template>
|
|
<div class="main">
|
|
<div class="main-table">
|
|
<el-table
|
|
:data="tableData"
|
|
style="width: 100%"
|
|
v-loading="loading"
|
|
element-loading-text="加载中..."
|
|
>
|
|
<el-table-column prop="content" label="内容" width="800" />
|
|
<el-table-column prop="publisherName" label="发布者" width="120" />
|
|
<el-table-column prop="worker" label="工作人员" width="200">
|
|
<template #default="{ row }">
|
|
<el-tag
|
|
v-for="item in row.worker"
|
|
:key="item.userId"
|
|
size="small"
|
|
round
|
|
style="margin-right: 10px"
|
|
>
|
|
{{ item.username }}
|
|
</el-tag>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column prop="deadline" label="结束时间" width="200">
|
|
<template #default="scope">
|
|
{{ formatDate(scope.row.deadline) }}
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column fixed="right" prop="progress" label="进度" width="200">
|
|
<template #default="scope">
|
|
<el-progress
|
|
:text-inside="true"
|
|
:stroke-width="15"
|
|
:percentage="scope.row.progress"
|
|
/>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column fixed="right" label="操作" width="150">
|
|
<template #default="scope">
|
|
<el-button link type="primary" size="large" @click="handleClick(scope.row)"
|
|
>编辑</el-button
|
|
>
|
|
<el-popconfirm
|
|
width="220"
|
|
confirm-button-text="是"
|
|
cancel-button-text="否"
|
|
icon-color="#00d4ff"
|
|
title="是否确定删除?"
|
|
@confirm="deleteConfirmEvent(scope.row)"
|
|
@cancel="deleteCancelEvent"
|
|
>
|
|
<template #reference>
|
|
<el-button link type="primary" size="default">删除</el-button>
|
|
</template>
|
|
</el-popconfirm>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<div class="main-add-content">
|
|
<div class="main-add-box">
|
|
<el-button size="large" @click="addVisible = true">添加</el-button>
|
|
</div>
|
|
<el-dialog v-model="addVisible" width="60%">
|
|
<edit-work @setDialogVisible="setDialogVisible" @addWork="addWork"></edit-work>
|
|
</el-dialog>
|
|
<el-dialog v-model="editVisible" width="60%">
|
|
<edit-work
|
|
:editForm="rowData"
|
|
@setDialogVisible="setDialogVisible"
|
|
@updateWork="updateWork"
|
|
></edit-work>
|
|
</el-dialog>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import request from '@/services'
|
|
import EditWork from '@/components/EditWork.vue'
|
|
|
|
export default {
|
|
name: 'AllTaskPage',
|
|
data() {
|
|
return {
|
|
tableData: [],
|
|
rowData: [],
|
|
addVisible: false,
|
|
editVisible: false,
|
|
loading: true
|
|
}
|
|
},
|
|
methods: {
|
|
handleClick(row) {
|
|
this.rowData = row
|
|
this.editVisible = true
|
|
console.log('click')
|
|
},
|
|
deleteConfirmEvent(row) {
|
|
this.deleteTableData(row)
|
|
console.log('delete confirm!')
|
|
},
|
|
deleteCancelEvent() {
|
|
console.log('delete cancel!')
|
|
},
|
|
completeConfirmEvent() {
|
|
console.log('complete confirm!')
|
|
},
|
|
completeCancelEvent() {
|
|
console.log('complete cancel!')
|
|
},
|
|
getTableData() {
|
|
request
|
|
.get('/work')
|
|
.then((response) => {
|
|
this.tableData = response.data.data
|
|
if (this.tableData) {
|
|
this.loading = false
|
|
}
|
|
})
|
|
.catch((reportError) => {
|
|
console.log(reportError)
|
|
})
|
|
},
|
|
deleteTableData(row) {
|
|
request
|
|
.delete('/work/' + row.id)
|
|
.then((response) => {
|
|
this.getTableData()
|
|
console.log(response.data.data)
|
|
})
|
|
.catch((reportError) => {
|
|
console.log(reportError)
|
|
})
|
|
},
|
|
setDialogVisible(dialogVisible) {
|
|
console.log(dialogVisible)
|
|
this.addVisible = dialogVisible
|
|
this.editVisible = dialogVisible
|
|
this.getTableData()
|
|
},
|
|
updateWork(form) {
|
|
request
|
|
.put('/work', form)
|
|
.then((response) => {
|
|
this.editVisible = false
|
|
this.getTableData()
|
|
})
|
|
.catch((reportError) => {
|
|
console.log(reportError)
|
|
})
|
|
},
|
|
addWork(form) {
|
|
request
|
|
.post('/work', form)
|
|
.then((response) => {
|
|
this.addVisible = false
|
|
this.getTableData()
|
|
console.log(response.data)
|
|
})
|
|
.catch((reportError) => {
|
|
console.log(reportError)
|
|
})
|
|
},
|
|
formatDate(time) {
|
|
return new Date(time).toLocaleString()
|
|
}
|
|
},
|
|
created() {
|
|
this.getTableData()
|
|
},
|
|
components: {
|
|
EditWork
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
@import '@/assets/css/work/work.css';
|
|
</style>
|