|
@@ -657,7 +657,6 @@
|
|
|
});
|
|
|
}
|
|
|
function changeUnitInjuryRadio(e) {
|
|
|
- console.log(form.value.injuryRadio);
|
|
|
tableData.value.forEach((item) => {
|
|
|
let radio = match.divide(form.value.injuryRadio, 100);
|
|
|
let tempInjury = item.companyInjury
|
|
@@ -688,7 +687,9 @@
|
|
|
}
|
|
|
|
|
|
function handleSave() {
|
|
|
- if (!form.value.injuryRadio) {
|
|
|
+ console.log("form.value.injuryRadio",form.value.injuryRadio);
|
|
|
+
|
|
|
+ if (form.value.injuryRadio == null) {
|
|
|
proxy.$modal.msgError("请输入单位工伤险比例");
|
|
|
return;
|
|
|
}
|