多维表格
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

56 lines
1.0 KiB

<template>
<div v-if="!feedbackFormHidden" class="nc-feedback-form-wrapper">
<v-icon class="nc-close-icon" large @click="feedbackFormHidden = true">
mdi-close-circle-outline
</v-icon>
<iframe
:src="feedbackFormUrl"
width="100%"
height="500"
frameborder="0"
marginheight="0"
marginwidth="0"
>Loading
</iframe>
</div>
<div v-else />
</template>
<script>
export default {
name: 'FeedbackForm',
computed: {
feedbackFormHidden: {
get() {
return this.$store.state.settings.feedbackForm.isShown
},
set(isShown) {
this.$store.commit(
'settings/MutFeedbackForm', { ...this.$store.state.settings.feedbackForm, isShown })
}
},
feedbackFormUrl() {
return this.$store.state.settings.feedbackForm.url
}
}
}
</script>
<style scoped lang="scss">
.nc-feedback-form-wrapper {
width: 100%;
position: relative;
iframe {
margin: 0 auto;
}
.nc-close-icon {
position: absolute;
top: 5px;
right: 10px;
}
}
</style>