全栈小学生 533cc3b53a update admin
2023-06-08 18:17:58 +08:00

234 lines
8.7 KiB
Vue

<template>
<div class="main-container">
<div class="flex ml-[18px] justify-between items-center mt-[20px]">
<span class="text-[24px]">{{pageName}}</span>
</div>
<el-form :model="formData" label-width="150px" ref="formRef" :rules="formRules" class="page-form" v-loading="loading">
<el-card class="box-card !border-none" shadow="never">
<h3 class="panel-title !text-sm">{{ t('wechatInfo') }}</h3>
<el-form-item :label="t('wechatName')" prop="wechat_name">
<el-input v-model="formData.wechat_name" :placeholder="t('wechatNamePlaceholder')" class="input-width" clearable />
</el-form-item>
<el-form-item :label="t('wechatOriginal')" prop="wechat_original">
<el-input v-model="formData.wechat_original" :placeholder="t('wechatOriginalPlaceholder')" class="input-width" clearable />
</el-form-item>
<el-form-item :label="t('wechatQrcode')" prop="qr_code">
<upload-image v-model="formData.qr_code" />
<div class="form-tip">{{ t('wechatQrcodeTips') }}</div>
</el-form-item>
</el-card>
<el-card class="box-card !border-none mt-[16px]" shadow="never">
<h3 class="panel-title !text-sm">{{ t('wechatDevelopInfo') }}</h3>
<el-form-item :label="t('wechatAppid')" prop="app_id">
<el-input v-model="formData.app_id" :placeholder="t('appidPlaceholder')" class="input-width" clearable />
<div class="form-tip">{{ t('wechatAppidTips') }}</div>
</el-form-item>
<el-form-item :label="t('wechatAppsecret')" prop="app_secret">
<el-input v-model="formData.app_secret" :placeholder="t('appSecretPlaceholder')" class="input-width" clearable />
<div class="form-tip">{{ t('wechatAppsecretTips') }}</div>
</el-form-item>
</el-card>
<el-card class="box-card !border-none mt-[16px]" shadow="never">
<h3 class="panel-title !text-sm">{{ t('theServerSetting') }}</h3>
<el-form-item label="URL">
<el-input :model-value="wechatStatic.serve_url" placeholder="Please input" class="input-width" :readonly="true">
<template #append>
<div class="cursor-pointer" @click="copyEvent(wechatStatic.serve_url)">{{ t('copy') }}
</div>
</template>
</el-input>
</el-form-item>
<el-form-item label="Token" prop="token">
<el-input v-model="formData.token" :placeholder="t('tokenPlaceholder')" class="input-width" maxlength="32" show-word-limit clearable />
<div class="form-tip">{{ t('tokenTips') }}</div>
</el-form-item>
<el-form-item label="EncodingAESKey" prop="encoding_aes_key">
<el-input v-model="formData.encoding_aes_key" :placeholder="t('encodingAesKeyPlaceholder')" class="input-width" maxlength="43" show-word-limit clearable />
<div class="form-tip">{{ t('encodingAESKeyTips') }}</div>
</el-form-item>
<el-form-item :label="t('encryptionType')" prop="encryption_type">
<el-radio-group v-model="formData.encryption_type">
<el-radio label="not_encrypt">{{ t('cleartextMode') }}</el-radio>
<el-radio label="compatible">{{ t('compatibleMode') }}</el-radio>
<el-radio label="safe">{{ t('safeMode') }}</el-radio>
</el-radio-group>
<div class="form-tip">{{ t('cleartextModeTips') }}</div>
<div class="form-tip">{{ t('compatibleModeTips') }}</div>
<div class="form-tip">{{ t('safeModeTips') }}</div>
</el-form-item>
</el-card>
<el-card class="box-card !border-none mt-[16px]" shadow="never">
<div class="flex">
<h3 class="panel-title !text-sm">{{ t('functionSetting') }}</h3>
</div>
<el-form-item label="">
<div class="form-tip">{{ t('functionSettingTips') }}</div>
</el-form-item>
<el-form-item :label="t('businessDomain')">
<el-input :model-value="wechatStatic.business_domain" placeholder="Please input" class="input-width" :readonly="true">
<template #append>
<div class="cursor-pointer" @click="copyEvent(wechatStatic.business_domain)">{{ t('copy') }}
</div>
</template>
</el-input>
</el-form-item>
<el-form-item :label="t('jsSecureDomain')">
<el-input :model-value="wechatStatic.js_secure_domain" placeholder="Please input" class="input-width" :readonly="true">
<template #append>
<div class="cursor-pointer" @click="copyEvent(wechatStatic.business_domain)">{{ t('copy') }}
</div>
</template>
</el-input>
</el-form-item>
<el-form-item :label="t('webAuthDomain')">
<el-input :model-value="wechatStatic.web_auth_domain" placeholder="Please input" class="input-width" :readonly="true">
<template #append>
<div class="cursor-pointer" @click="copyEvent(wechatStatic.business_domain)">{{ t('copy') }}
</div>
</template>
</el-input>
</el-form-item>
</el-card>
</el-form>
<div class="fixed-footer-wrap">
<div class="fixed-footer">
<el-button type="primary" :loading="loading" @click="save(formRef)">{{ t('save') }}</el-button>
</div>
</div>
</div>
</template>
<script lang="ts" setup>
import { reactive, ref, watch } from 'vue'
import { t } from '@/lang'
import { getWechatConfig, getWechatStatic, editWechatConfig } from '@/api/wechat'
import { useClipboard } from '@vueuse/core'
import { ElMessage, FormInstance, FormRules } from 'element-plus'
import { useRoute } from 'vue-router'
const route = useRoute()
const pageName = route.meta.title
const loading = ref(true)
const formData = reactive<Record<string, string>>({
wechat_name: '',
wechat_original: '',
app_id: '',
app_secret: '',
qr_code: '',
token: '',
encoding_aes_key: '',
encryption_type: 'not_encrypt'
})
const formRef = ref<FormInstance>()
// 表单验证规则
const formRules = reactive<FormRules>({
wechat_name: [
{ required: true, message: t('wechatNamePlaceholder'), trigger: 'blur' }
],
wechat_original: [
{ required: true, message: t('wechatOriginalPlaceholder'), trigger: 'blur' }
],
app_id: [
{ required: true, message: t('appidPlaceholder'), trigger: 'blur' }
],
app_secret: [
{ required: true, message: t('appSecretPlaceholder'), trigger: 'blur' }
],
token: [
{ required: true, message: t('tokenPlaceholder'), trigger: 'blur' }
],
encoding_aes_key: [
{ required: true, message: t('encodingAesKeyPlaceholder'), trigger: 'blur' }
]
})
/**
* 获取微信配置
*/
getWechatConfig().then(res => {
Object.assign(formData, res.data)
loading.value = false
})
const wechatStatic = reactive<Record<string, string>>({
business_domain: '',
js_secure_domain: '',
serve_url: '',
web_auth_domain: ''
})
getWechatStatic().then(res => {
Object.assign(wechatStatic, res.data)
loading.value = false
})
/**
* 复制
*/
const { copy, isSupported, copied } = useClipboard()
const copyEvent = (text: string) => {
if (!isSupported.value) {
ElMessage({
message: t('notSupportCopy'),
type: 'warning'
})
return
}
copy(text)
}
watch(copied, () => {
if (copied.value) {
ElMessage({
message: t('copySuccess'),
type: 'success'
})
}
})
/**
* 保存
*/
const save = async (formEl: FormInstance | undefined) => {
if (loading.value || !formEl) return
await formEl.validate(async (valid) => {
if (valid) {
loading.value = true
editWechatConfig(formData).then(() => {
loading.value = false
}).catch(() => {
loading.value = false
})
}
})
}
</script>
<style lang="scss" scoped></style>