@@ -354,7 +354,7 @@ const handleSubmit = async (_type) => {
proxy
.post("/flowExample/setStartData", {
exampleId: route.query.id,
- startDate: data,
+ startData: data,
})
.then();
}
@@ -532,14 +532,15 @@ const lookRecords = (row) => {
contractProductId: row.productId,
.then((res) => {
- if (res.length > 0) {
+ if (res && res.length > 0) {
activities.value = res;
dialogVisibleTwo.value = true;
- } else
+ } else {
return ElMessage({
message: "暂无跟进记录!",
type: "info",
});
+ }
};
const handleFollow = (row) => {