|
@@ -302,9 +302,13 @@ async function submitReview() {
|
|
|
message.warning('请选择审核意见');
|
|
message.warning('请选择审核意见');
|
|
|
return;
|
|
return;
|
|
|
}
|
|
}
|
|
|
|
|
+ if (reviewPoints.value == null) {
|
|
|
|
|
+ message.warning('请输入审核评分');
|
|
|
|
|
+ return;
|
|
|
|
|
+ }
|
|
|
const t = reviewProgressInfo.value.target;
|
|
const t = reviewProgressInfo.value.target;
|
|
|
const base = { id: f.id, progress: t };
|
|
const base = { id: f.id, progress: t };
|
|
|
- const points = reviewPoints.value != null && reviewPoints.value >= 0 ? reviewPoints.value : undefined;
|
|
|
|
|
|
|
+ const points = reviewPoints.value;
|
|
|
const op = reviewOpinion.value;
|
|
const op = reviewOpinion.value;
|
|
|
try {
|
|
try {
|
|
|
submitLoading.value = true;
|
|
submitLoading.value = true;
|