Commit fd163780 authored by zhengke's avatar zhengke

修改

parent 64b29bb3
<template>
<q-dialog v-model="persistent" persistent content-class="bg-grey-1" transition-show="scale" transition-hide="scale">
<q-card style="width: 500px;max-width:900px;">
<q-card-section>
<div class="text-h6">题库管理 / 创建题库</div>
</q-card-section>
<q-card-section class="q-pt-none scroll" style="max-height: 70vh">
<q-input clearable standout="bg-primary text-white" v-model="msg.Title" label="请输入题库名称" maxlength="20" />
</q-card-section>
<q-card-actions align="right" class="bg-white">
<q-btn label="取消" flat color="grey-10" style="font-weight:400 !important" @click="closeQuestionForm" />
<q-btn label="创建" color="accent q-px-md" style="font-weight:400 !important" @click="saveQuestion" />
</q-card-actions>
</q-card>
</q-dialog>
</template>
<script>
export default {
components: {
},
data() {
return {
msg: {
Title: ''
},
persistent: true
}
},
computed: {},
created() {},
mounted() {
},
methods: {
//创建
saveQuestion() {
},
//取消
closeQuestionForm() {
this.$emit('close');
this.persistent = false
}
},
}
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment