search results contain achievement and product

This commit is contained in:
cxc
2022-12-07 11:22:32 +08:00
parent 081ba02e40
commit 4ba7585aaa
17 changed files with 472 additions and 64 deletions

View File

@ -123,13 +123,14 @@ import { onActivated } from "vue";
import { demandCategoryList } from "@/utils/parameter";
// import { onActivated } from "vue";
import { useRoute, useRouter } from "vue-router";
import { updateCount } from "../../../../api/admin/count";
const router = useRouter();
const route = useRoute();
const data = reactive({
form: {
check: [],
status: 0,
status: 1,
},
queryParams: {
pageNum: 1,
@ -171,7 +172,9 @@ const submitForm = () => {
await insertDemand(form.value);
ElMessage.success("新增服务需求成功");
// router.back();
updateCount("service");
}
backToList();
}
});