mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-09 19:06:45 +08:00
Merge remote-tracking branch 'origin/develop' into develop
This commit is contained in:
@@ -192,7 +192,7 @@ function reset() {
|
||||
|
||||
const goResearchmanage = () => {
|
||||
// router.push({ path: "/researchmanage" });
|
||||
window.open(process.env.VUE_APP_BASE + "/researchmanage");
|
||||
window.open(process.env.VUE_APP_BASE + "/researchmanage?openCreate=true");
|
||||
};
|
||||
</script>
|
||||
<style lang="scss">
|
||||
|
||||
@@ -156,7 +156,7 @@
|
||||
</div>
|
||||
</template>
|
||||
<script setup>
|
||||
import {ref} from "vue";
|
||||
import {ref,onMounted} from "vue";
|
||||
import {createResearch, deleteResearch, editAssessmentName, editReleaseStatus,} from "@/api/indexResearch";
|
||||
import {checkPer} from "@/utils/utils";
|
||||
import {Form, message} from "ant-design-vue";
|
||||
@@ -275,6 +275,15 @@ const formData = ref({
|
||||
validated: 0,
|
||||
});
|
||||
|
||||
onMounted(() => {
|
||||
// 是否需要触发新建弹框
|
||||
let str = location.href;
|
||||
let isOpen = str.includes("openCreate=true");
|
||||
if(isOpen){
|
||||
newNext.value = true;
|
||||
}
|
||||
});
|
||||
|
||||
const newNext = ref(false);
|
||||
const dateTime = ref([]);
|
||||
const nameRef = ref();
|
||||
|
||||
Reference in New Issue
Block a user