2023-05-06 15:58:45 +08:00
|
|
|
|
<template>
|
|
|
|
|
<a-modal
|
|
|
|
|
:width="modalWidth"
|
|
|
|
|
:style="modalStyle"
|
|
|
|
|
:visible="visible"
|
|
|
|
|
:maskClosable="false"
|
|
|
|
|
@cancel="handleCancel">
|
|
|
|
|
<template slot="footer">
|
2023-05-25 19:43:05 +08:00
|
|
|
|
<a-button @click="handleCancel" type="warn">Cancel</a-button>
|
2023-05-06 15:58:45 +08:00
|
|
|
|
</template>
|
|
|
|
|
<a-table
|
|
|
|
|
ref="table"
|
|
|
|
|
rowKey="id"
|
|
|
|
|
size="middle"
|
|
|
|
|
:columns="columns"
|
|
|
|
|
:loading="loading"
|
|
|
|
|
:dataSource="dataSource"
|
|
|
|
|
:pagination="false">
|
|
|
|
|
<span slot="action" slot-scope="text, record">
|
2023-05-25 19:43:05 +08:00
|
|
|
|
<a @click="handleBack(record.id)"><a-icon type="redo"/>Handle Back</a>
|
2023-05-06 15:58:45 +08:00
|
|
|
|
<a-divider type="vertical"/>
|
2023-05-25 19:43:05 +08:00
|
|
|
|
<a @click="handleDelete(record.id)"><a-icon type="scissor"/>Delete Completly</a>
|
2023-05-06 15:58:45 +08:00
|
|
|
|
</span>
|
|
|
|
|
</a-table>
|
|
|
|
|
|
|
|
|
|
</a-modal>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import { getAction,deleteAction,putAction } from '@/api/manage'
|
|
|
|
|
export default {
|
|
|
|
|
name: "DictDeleteList",
|
|
|
|
|
data () {
|
|
|
|
|
return {
|
|
|
|
|
modalWidth: '90%',
|
|
|
|
|
modalStyle: { 'top': '20px'},
|
2023-05-25 19:43:05 +08:00
|
|
|
|
title: 'Action',
|
2023-05-06 15:58:45 +08:00
|
|
|
|
visible: false,
|
|
|
|
|
loading: false,
|
|
|
|
|
dataSource:[],
|
|
|
|
|
columns:[
|
|
|
|
|
{
|
|
|
|
|
title: '#',
|
|
|
|
|
dataIndex: '',
|
|
|
|
|
key: 'rowIndex',
|
|
|
|
|
width: 120,
|
|
|
|
|
align: "center",
|
|
|
|
|
customRender: function (t, r, index) {
|
|
|
|
|
return parseInt(index) + 1;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-05-25 19:43:05 +08:00
|
|
|
|
title: 'Dict Name',
|
2023-05-06 15:58:45 +08:00
|
|
|
|
align: "left",
|
|
|
|
|
dataIndex: 'dictName'
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-05-25 19:43:05 +08:00
|
|
|
|
title: 'Dict Code',
|
2023-05-06 15:58:45 +08:00
|
|
|
|
align: "left",
|
|
|
|
|
dataIndex: 'dictCode'
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-05-25 19:43:05 +08:00
|
|
|
|
title: 'Description',
|
2023-05-06 15:58:45 +08:00
|
|
|
|
align: "left",
|
|
|
|
|
dataIndex: 'description'
|
|
|
|
|
},
|
|
|
|
|
{
|
2023-05-25 19:43:05 +08:00
|
|
|
|
title: 'Action',
|
2023-05-06 15:58:45 +08:00
|
|
|
|
dataIndex: 'action',
|
|
|
|
|
align: "center",
|
|
|
|
|
scopedSlots: {customRender: 'action'}
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
|
handleCancel(){
|
|
|
|
|
this.visible = false
|
|
|
|
|
//回收站字典列表刷新
|
|
|
|
|
this.$emit("refresh")
|
|
|
|
|
},
|
|
|
|
|
show(){
|
|
|
|
|
this.visible = true
|
|
|
|
|
this.loadData();
|
|
|
|
|
},
|
|
|
|
|
loadData(){
|
|
|
|
|
this.loading = true
|
|
|
|
|
getAction("/sys/dict/deleteList").then(res=>{
|
|
|
|
|
this.loading = false
|
|
|
|
|
if(res.success){
|
|
|
|
|
this.dataSource = res.result
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.warning(res.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleBack(id){
|
|
|
|
|
putAction("/sys/dict/back/"+id).then(res=>{
|
|
|
|
|
if(res.success){
|
|
|
|
|
this.$message.success(res.message)
|
|
|
|
|
this.loadData();
|
|
|
|
|
}else{
|
|
|
|
|
this.$message.warning(res.message)
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
handleDelete(id){
|
|
|
|
|
this.$confirm({
|
2023-05-25 19:43:05 +08:00
|
|
|
|
title: 'Delete Completly',
|
2023-05-06 15:58:45 +08:00
|
|
|
|
content: (<div>
|
2023-05-25 19:43:05 +08:00
|
|
|
|
<p>Want To Delete Dict Item Completly?</p>
|
|
|
|
|
<p style="color:red;">Warning:Delete Completly Will Have No Way To Recover,Please Be Patient</p>
|
2023-05-06 15:58:45 +08:00
|
|
|
|
</div>),
|
|
|
|
|
centered: false,
|
|
|
|
|
onOk: () => {
|
|
|
|
|
var that = this;
|
|
|
|
|
deleteAction("/sys/dict/deletePhysic/"+id).then((res) => {
|
|
|
|
|
if (res.success) {
|
|
|
|
|
this.$message.success(res.message)
|
|
|
|
|
this.loadData();
|
|
|
|
|
} else {
|
|
|
|
|
that.$message.warning(res.message);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
|
|
|
|
|
|
</style>
|