|  |  | 
 |  |  |       type: 'warning' | 
 |  |  |     }) | 
 |  |  |   }, | 
 |  |  |   resetConfirm (message) { | 
 |  |  |     return MessageBox.confirm(message, '重置提醒', { | 
 |  |  |       confirmButtonText: '确认重置', | 
 |  |  |       cancelButtonText: '取消', | 
 |  |  |       type: 'warning' | 
 |  |  |     }) | 
 |  |  |   }, | 
 |  |  |   // 禁用二次确认 | 
 |  |  |   disableConfirm (message) { | 
 |  |  |     return MessageBox.confirm(message, '禁用提醒', { | 
 |  |  | 
 |  |  |       cancelButtonText: '取消', | 
 |  |  |       type: 'warning' | 
 |  |  |     }) | 
 |  |  |   }, | 
 |  |  |   // 完善提醒 | 
 |  |  |   messageApprove (message) { | 
 |  |  |     return MessageBox.confirm(message, '审核提醒', { | 
 |  |  |       confirmButtonText: '确定', | 
 |  |  |       cancelButtonText: '取消', | 
 |  |  |       type: 'warning' | 
 |  |  |     }) | 
 |  |  |   }, | 
 |  |  |     // 问卷确实提醒 | 
 |  |  |   messageWaring (message, title, confirmText='确定', cancelText='取消') { | 
 |  |  |     return MessageBox.confirm(message, title, { | 
 |  |  |       confirmButtonText: confirmText, | 
 |  |  |       cancelButtonText: cancelText, | 
 |  |  |       type: 'warning' | 
 |  |  |     }) | 
 |  |  |   }, | 
 |  |  |     // 问卷确实提醒 | 
 |  |  |   messageConfirm (message, confirmText='确定', cancelText='取消') { | 
 |  |  |     return MessageBox.confirm(message, "操作确认", { | 
 |  |  |       confirmButtonText: confirmText, | 
 |  |  |       cancelButtonText: cancelText, | 
 |  |  |       type: 'warning' | 
 |  |  |     }) | 
 |  |  |   }, | 
 |  |  |   // 确认是否服务该企业 | 
 |  |  |   cancelOrder (message) { | 
 |  |  |     return MessageBox.confirm(message, '取消提示', { | 
 |  |  |       confirmButtonText: '确定', | 
 |  |  |       cancelButtonText: '取消', | 
 |  |  |       type: 'warning' | 
 |  |  |     }) | 
 |  |  |   } | 
 |  |  | } |