修改撤回发布的提醒
This commit is contained in:
parent
2c1e834931
commit
b426e61614
|
@ -877,9 +877,19 @@ function handleAddOne() {
|
||||||
|
|
||||||
//撤回发布
|
//撤回发布
|
||||||
function handleNoScoreFabu(record: Recordable) {
|
function handleNoScoreFabu(record: Recordable) {
|
||||||
|
createConfirm({
|
||||||
|
iconType: 'warning',
|
||||||
|
title: '撤回发布',
|
||||||
|
content: '<span style="color:red;font-size:16px">您已面向学生发布,是否确定撤回评分</span>',
|
||||||
|
okText: '确认',
|
||||||
|
cancelText: '取消',
|
||||||
|
onOk: () => {
|
||||||
defHttp.post({ url: '/zyInfoStudent/zyInfoStudent/editFabu', params: { id: record.id, scoreFabu: '0' } }).then((res) => {
|
defHttp.post({ url: '/zyInfoStudent/zyInfoStudent/editFabu', params: { id: record.id, scoreFabu: '0' } }).then((res) => {
|
||||||
handleSuccess();
|
handleSuccess();
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//设置样本
|
//设置样本
|
||||||
|
|
Loading…
Reference in New Issue