|
@@ -793,6 +793,11 @@ const select = (_selection, row) => {
|
|
|
};
|
|
|
const submitForm = () => {
|
|
|
byform.value.handleSubmit(() => {
|
|
|
+ if (Number(formData.data.amount) == 0) {
|
|
|
+ return ElMessage({
|
|
|
+ message: "打款金额不能为0",
|
|
|
+ });
|
|
|
+ }
|
|
|
if (fileList.value && fileList.value.length > 0) {
|
|
|
formData.data.fileList = fileList.value.map((item) => {
|
|
|
return {
|