意见反馈和国际化组件部分页面渲染多次问题
continuous-integration/drone/push Build is passing Details

uat_us
DESKTOP-6C3NK6N\WXS 2024-08-12 11:16:47 +08:00
parent 5c43369335
commit 94268942d1
1 changed files with 4 additions and 3 deletions

View File

@ -3,6 +3,7 @@
<router-view /> <router-view />
<div <div
v-show="show" v-show="show"
v-if="$route.matched.length > 0"
v-adaptive v-adaptive
@click="openI18n" @click="openI18n"
style=" style="
@ -81,7 +82,7 @@
> >
</div> </div>
</el-drawer> </el-drawer>
<feedBack/> <feedBack v-if="$route.matched.length > 0" />
</div> </div>
</template> </template>
@ -91,12 +92,12 @@ import {
getFrontInternationalizationList, getFrontInternationalizationList,
} from "@/api/dictionary/dictionary"; } from "@/api/dictionary/dictionary";
import { getTrialExtralConfig } from "@/api/trials"; import { getTrialExtralConfig } from "@/api/trials";
import feedBack from '@/views/trials/trials-layout/components/feedBack' import feedBack from "@/views/trials/trials-layout/components/feedBack";
import Vue from "vue"; import Vue from "vue";
import i18n from "./lang"; import i18n from "./lang";
export default { export default {
name: "App", name: "App",
components: {feedBack}, components: { feedBack },
data() { data() {
return { return {
drawer: false, drawer: false,