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