This commit is contained in:
wangshiming
2021-12-08 14:21:05 +08:00
parent 55811ba396
commit a299e56181
11 changed files with 255 additions and 123 deletions

View File

@ -1,3 +1,11 @@
/*
* @Author: your name
* @Date: 2021-12-03 11:10:14
* @LastEditTime: 2021-12-07 19:51:21
* @LastEditors: your name
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
* @FilePath: \tms-obc-web\src\app\routes\supply-management\components\bulk-detail\bulk-detail.component.ts
*/
import { Component, OnInit } from '@angular/core';
import { ActivatedRoute } from '@angular/router';
import { STColumn } from '@delon/abc/st';
@ -65,14 +73,14 @@ export class SupplyManagementBulkDetailComponent implements OnInit {
nzTitle: '<i>删除确认</i>',
nzContent: `请仔细核对,避免误操作!<br>是否删除?</br>`,
nzOnOk: () => {
this.service.http.post(this.service.$api_del_driver, { id }).subscribe((res) => {
if (res) {
this.service.msgSrv.success('数据删除成功!');
// this.st1.reload();
} else {
this.service.msgSrv.error('删除失败!');
}
});
// this.service.http.post(this.service.$api_del_driver, { id }).subscribe((res) => {
// if (res) {
// this.service.msgSrv.success('数据删除成功!');
// // this.st1.reload();
// } else {
// this.service.msgSrv.error('删除失败!');
// }
// });
},
});
}