|
@@ -251,10 +251,18 @@ const changeStart = (val, row)=>{
|
|
|
}
|
|
|
}
|
|
|
const changeEnd = (val, row)=>{
|
|
|
+
|
|
|
if (val < row.startDate) {
|
|
|
window.$message.warning('结束时间不能早于开始时间')
|
|
|
row.endDate = ''
|
|
|
+ if (val) {
|
|
|
+ row.formPrintDate = row.endDate
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if (val) {
|
|
|
+ row.formPrintDate = row.endDate
|
|
|
}
|
|
|
+
|
|
|
}
|
|
|
</script>
|
|
|
|