mirror of
https://gitee.com/niucloud-team/niucloud-admin.git
synced 2025-12-11 18:32:49 +00:00
135 lines
4.4 KiB
Vue
135 lines
4.4 KiB
Vue
<template>
|
|
<el-dialog v-model="showDialog" :title="t('tencentStorage')" width="580px" :destroy-on-close="true">
|
|
<el-form :model="formData" label-width="140px" ref="formRef" :rules="formRules" class="page-form" v-loading="loading">
|
|
<el-form-item :label="t('isUse')">
|
|
<el-radio-group v-model="formData.is_use">
|
|
<el-radio label="1">{{ t('startUsing') }}</el-radio>
|
|
<el-radio label="0">{{ t('statusDeactivate') }}</el-radio>
|
|
</el-radio-group>
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('tencentBucket')" prop="bucket">
|
|
<el-input v-model.trim="formData.bucket" :placeholder="t('tencentBucketPlaceholder')" class="input-width" show-word-limit clearable />
|
|
<div class="form-tip">{{ t('tencentBucketTips') }}</div>
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('tencentAccessKey')" prop="access_key">
|
|
<el-input v-model.trim="formData.access_key" :placeholder="t('tencentAccessKeyPlaceholder')" class="input-width" clearable />
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('tencentSecretKey')" prop="secret_key">
|
|
<el-input v-model.trim="formData.secret_key" :placeholder="t('tencentSecretKeyPlaceholder')" class="input-width" clearable />
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('region')" prop="region">
|
|
<el-input v-model.trim="formData.region" :placeholder="t('regionPlaceholder')" class="input-width" clearable />
|
|
</el-form-item>
|
|
|
|
<el-form-item :label="t('domain')" prop="domain">
|
|
<el-input v-model.trim="formData.domain" :placeholder="t('domainPlaceholder')" class="input-width" clearable />
|
|
</el-form-item>
|
|
|
|
</el-form>
|
|
|
|
<template #footer>
|
|
<span class="dialog-footer">
|
|
<el-button @click="showDialog = false">{{ t('cancel') }}</el-button>
|
|
<el-button type="primary" :loading="loading" @click="confirm(formRef)">{{t('confirm')}}</el-button>
|
|
</span>
|
|
</template>
|
|
</el-dialog>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ref, reactive, computed } from 'vue'
|
|
import { t } from '@/lang'
|
|
import type { FormInstance } from 'element-plus'
|
|
import { getStorageInfo, editStorage } from '@/app/api/sys'
|
|
|
|
const showDialog = ref(false)
|
|
const loading = ref(true)
|
|
|
|
/**
|
|
* 表单数据
|
|
*/
|
|
const initialFormData = {
|
|
storage_type: '',
|
|
bucket: '',
|
|
access_key: '',
|
|
secret_key: '',
|
|
domain: '',
|
|
is_use: '',
|
|
region: ''
|
|
}
|
|
const formData: Record<string, any> = reactive({ ...initialFormData })
|
|
|
|
const formRef = ref<FormInstance>()
|
|
|
|
// 表单验证规则
|
|
const formRules = computed(() => {
|
|
return {
|
|
bucket: [
|
|
{ required: true, message: t('tencentBucketPlaceholder'), trigger: 'blur' }
|
|
],
|
|
access_key: [
|
|
{ required: true, message: t('tencentAccessKeyPlaceholder'), trigger: 'blur' }
|
|
],
|
|
secret_key: [
|
|
{ required: true, message: t('tencentSecretKeyPlaceholder'), trigger: 'blur' }
|
|
],
|
|
region: [
|
|
{ required: true, message: t('regionPlaceholder'), trigger: 'blur' }
|
|
],
|
|
domain: [
|
|
{ required: true, message: t('domainPlaceholder'), trigger: 'blur' }
|
|
]
|
|
}
|
|
})
|
|
|
|
const emit = defineEmits(['complete'])
|
|
|
|
/**
|
|
* 确认
|
|
* @param formEl
|
|
*/
|
|
const confirm = async (formEl: FormInstance | undefined) => {
|
|
if (loading.value || !formEl) return
|
|
|
|
await formEl.validate(async (valid) => {
|
|
if (valid) {
|
|
loading.value = true
|
|
|
|
const data = formData
|
|
|
|
editStorage(data).then(res => {
|
|
loading.value = false
|
|
showDialog.value = false
|
|
emit('complete')
|
|
}).catch(() => {
|
|
loading.value = false
|
|
})
|
|
}
|
|
})
|
|
}
|
|
|
|
const setFormData = async (row: any = null) => {
|
|
loading.value = true
|
|
Object.assign(formData, initialFormData)
|
|
if (row) {
|
|
const data = await (await getStorageInfo(row.storage_type)).data
|
|
Object.keys(formData).forEach((key: string) => {
|
|
if (data[key] != undefined) formData[key] = data[key]
|
|
if (data.params[key] != undefined) formData[key] = data.params[key].value
|
|
})
|
|
}
|
|
loading.value = false
|
|
}
|
|
|
|
defineExpose({
|
|
showDialog,
|
|
setFormData
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss" scoped></style>
|