Files
webman-buildadmin/web/src/views/backend/config/gameConfig/popupForm.vue
2026-04-15 17:46:34 +08:00

108 lines
4.6 KiB
Vue

<template>
<el-dialog
class="ba-operate-dialog"
:close-on-click-modal="false"
:model-value="['Add', 'Edit'].includes(baTable.form.operate!)"
@close="baTable.toggleForm"
>
<template #header>
<div class="title" v-drag="['.ba-operate-dialog', '.el-dialog__header']" v-zoom="'.ba-operate-dialog'">
{{ baTable.form.operate ? t(baTable.form.operate) : '' }}
</div>
</template>
<el-scrollbar v-loading="baTable.form.loading" class="ba-table-form-scrollbar">
<div
class="ba-operate-form"
:class="'ba-' + baTable.form.operate + '-form'"
:style="config.layout.shrink ? '' : 'width: calc(100% - ' + baTable.form.labelWidth! / 2 + 'px)'"
>
<el-form
v-if="!baTable.form.loading"
ref="formRef"
@submit.prevent=""
@keyup.enter="baTable.onSubmit(formRef)"
:model="baTable.form.items"
:label-position="config.layout.shrink ? 'top' : 'right'"
:label-width="baTable.form.labelWidth + 'px'"
:rules="rules"
>
<FormItem
:label="t('config.gameConfig.config_key')"
type="string"
v-model="baTable.form.items!.config_key"
prop="config_key"
:placeholder="t('Please input field', { field: t('config.gameConfig.config_key') })"
:input-attr="{ disabled: baTable.form.operate === 'Edit' }"
/>
<FormItem
:label="t('config.gameConfig.config_value')"
type="textarea"
v-model="baTable.form.items!.config_value"
prop="config_value"
:input-attr="{ rows: 5 }"
:placeholder="t('Please input field', { field: t('config.gameConfig.config_value') })"
/>
<FormItem
:label="t('config.gameConfig.value_type')"
type="radio"
v-model="baTable.form.items!.value_type"
prop="value_type"
:input-attr="{
content: {
string: t('config.gameConfig.value_type string'),
int: t('config.gameConfig.value_type int'),
decimal: t('config.gameConfig.value_type decimal'),
json: t('config.gameConfig.value_type json'),
},
}"
/>
<FormItem
:label="t('config.gameConfig.remark')"
type="textarea"
v-model="baTable.form.items!.remark"
prop="remark"
:input-attr="{ rows: 2 }"
/>
</el-form>
</div>
</el-scrollbar>
<template #footer>
<div :style="'width: calc(100% - ' + baTable.form.labelWidth! / 1.8 + 'px)'">
<el-button @click="baTable.toggleForm()">{{ t('Cancel') }}</el-button>
<el-button v-blur :loading="baTable.form.submitLoading" @click="baTable.onSubmit(formRef)" type="primary">
{{ baTable.form.operateIds && baTable.form.operateIds.length > 1 ? t('Save and edit next item') : t('Save') }}
</el-button>
</div>
</template>
</el-dialog>
</template>
<script setup lang="ts">
import type { FormItemRule } from 'element-plus'
import { inject, reactive, useTemplateRef } from 'vue'
import { useI18n } from 'vue-i18n'
import FormItem from '/@/components/formItem/index.vue'
import { useConfig } from '/@/stores/config'
import type baTableClass from '/@/utils/baTable'
const config = useConfig()
const formRef = useTemplateRef('formRef')
const baTable = inject('baTable') as baTableClass
const { t } = useI18n()
const rules: Partial<Record<string, FormItemRule[]>> = reactive({
config_key: [buildRequired('config.gameConfig.config_key')],
value_type: [buildRequired('config.gameConfig.value_type')],
})
function buildRequired(langKey: string): FormItemRule {
return {
required: true,
message: t('Please input field', { field: t(langKey) }),
}
}
</script>
<style scoped lang="scss"></style>