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