93 lines
2.3 KiB
Vue
93 lines
2.3 KiB
Vue
<template>
|
|
<el-dialog
|
|
:title="$t('views.problem.createProblem')"
|
|
v-model="dialogVisible"
|
|
:close-on-click-modal="false"
|
|
:close-on-press-escape="false"
|
|
:destroy-on-close="true"
|
|
>
|
|
<el-form
|
|
label-position="top"
|
|
ref="problemFormRef"
|
|
:rules="rules"
|
|
:model="form"
|
|
require-asterisk-position="right"
|
|
>
|
|
<el-form-item :label="$t('views.problem.title')" prop="data">
|
|
<el-input
|
|
v-model="form.data"
|
|
:placeholder="$t('views.problem.tip.placeholder')"
|
|
:rows="10"
|
|
type="textarea"
|
|
/>
|
|
</el-form-item>
|
|
</el-form>
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click.prevent="dialogVisible = false"> {{ $t('common.cancel') }} </el-button>
|
|
<el-button type="primary" @click="submit(problemFormRef)" :loading="loading">
|
|
{{ $t('common.confirm') }}
|
|
</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { ref, reactive, watch } from 'vue'
|
|
import { useRoute } from 'vue-router'
|
|
import type { FormInstance, FormRules } from 'element-plus'
|
|
import { MsgSuccess } from '@/utils/message'
|
|
import useStore from '@/stores/modules-shared-system'
|
|
import { t } from '@/locales'
|
|
const route = useRoute()
|
|
const {
|
|
params: { id }
|
|
} = route as any
|
|
const { problem } = useStore()
|
|
|
|
const emit = defineEmits(['refresh'])
|
|
const problemFormRef = ref()
|
|
const loading = ref<boolean>(false)
|
|
|
|
const form = ref<any>({
|
|
data: ''
|
|
})
|
|
|
|
const rules = reactive({
|
|
data: [{ required: true, message: t('views.problem.tip.requiredMessage'), trigger: 'blur' }]
|
|
})
|
|
|
|
const dialogVisible = ref<boolean>(false)
|
|
|
|
watch(dialogVisible, (bool) => {
|
|
if (!bool) {
|
|
form.value = {
|
|
data: ''
|
|
}
|
|
}
|
|
})
|
|
|
|
const open = () => {
|
|
dialogVisible.value = true
|
|
}
|
|
|
|
const submit = async (formEl: FormInstance | undefined) => {
|
|
if (!formEl) return
|
|
await formEl.validate((valid, fields) => {
|
|
if (valid) {
|
|
const arr = form.value.data.split('\n').filter(function (item: string) {
|
|
return item !== ''
|
|
})
|
|
problem.asyncPostProblem(id, arr, loading).then((res: any) => {
|
|
MsgSuccess(t('common.createSuccess'))
|
|
emit('refresh')
|
|
dialogVisible.value = false
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
defineExpose({ open })
|
|
</script>
|
|
<style lang="scss" scoped></style>
|