fix bug
This commit is contained in:
@ -172,6 +172,10 @@ export class OrderManagementComplaintDetailComponent implements OnInit {
|
||||
查看评价: 3
|
||||
*/
|
||||
handleCancel(type: string) {
|
||||
if(!this.sfView.valid) {
|
||||
this.service.msgSrv.error('请填写处理结果!')
|
||||
return
|
||||
}
|
||||
const paramsa = {
|
||||
...this.sfView.value,
|
||||
handleStatus: 0,
|
||||
@ -193,6 +197,10 @@ export class OrderManagementComplaintDetailComponent implements OnInit {
|
||||
this.isVisibleRE = false
|
||||
}
|
||||
handleCancel2() {
|
||||
if(!this.sfView.valid) {
|
||||
this.service.msgSrv.error('请填写处理结果!')
|
||||
return
|
||||
}
|
||||
const paramsa = {
|
||||
id: this.channelId
|
||||
}
|
||||
@ -212,6 +220,10 @@ export class OrderManagementComplaintDetailComponent implements OnInit {
|
||||
* 审核通过按钮
|
||||
*/
|
||||
handleOK() {
|
||||
if(!this.sfView.valid) {
|
||||
this.service.msgSrv.error('请填写处理结果!')
|
||||
return
|
||||
}
|
||||
const paramsa = {
|
||||
...this.sfView.value,
|
||||
handleStatus: 1,
|
||||
|
||||
Reference in New Issue
Block a user