修复周三测试提出的住数据bug
This commit is contained in:
parent
aecb96adcd
commit
ae39fb7512
|
@ -108,6 +108,9 @@ export default {
|
|||
.el-table__header-wrapper {
|
||||
background: #f7f7f7 !important;
|
||||
}
|
||||
.el-button--primary{
|
||||
background-color: #3877f5 !important;
|
||||
}
|
||||
.el-table {
|
||||
width: 100%;
|
||||
&::before {
|
||||
|
|
|
@ -132,10 +132,10 @@ export default {
|
|||
methods: {
|
||||
//删除
|
||||
deleteHandle(row) {
|
||||
this.$confirm('是否删除此行?', '提示', {
|
||||
this.$confirm('该操作会将数据所有信息都会被删除,是否确认删除?。', '警告', {
|
||||
confirmButtonText: '确定',
|
||||
cancelButtonText: '取消',
|
||||
type: 'warning'
|
||||
type: 'error'
|
||||
}).then(async() => {
|
||||
this.openLoading('del')
|
||||
const res = await authApi('mdmModuleService', '', 'deleteMdm', '', {
|
||||
|
|
Loading…
Reference in New Issue