mirror of https://gitee.com/godoos/godoos.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.2 KiB
76 lines
2.2 KiB
<template>
|
|
<div class="file-pwd-box">
|
|
<div v-if="setPwd">
|
|
<div class="setting-item" >
|
|
<label>文件密码</label>
|
|
<el-input v-model="filePwd" placeholder="请输入文件加密密码" type="password"/>
|
|
</div>
|
|
<div class="setting-item">
|
|
<label></label>
|
|
<el-button @click="toSetFilePwd" type="primary">{{ t("setFilePwd") }}</el-button>
|
|
<el-button @click="clearPwd" type="primary">取消文件加密</el-button>
|
|
</div>
|
|
</div>
|
|
<div v-else class="setting-item">
|
|
<label></label>
|
|
<el-button @click="setPwd = true" type="primary">设置文件密码</el-button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { md5 } from "js-md5";
|
|
import { ref, onMounted } from "vue";
|
|
import { t } from "@/system";
|
|
import { fetchGet, getApiUrl, setSystemKey, getSystemConfig } from "@/system/config";
|
|
import { notifySuccess, notifyError } from "@/util/msg";
|
|
const filePwd = ref('')
|
|
const setPwd = ref(false)
|
|
const params = {
|
|
isPwd: 1,
|
|
pwd: '',
|
|
salt: getSystemConfig().file.salt
|
|
}
|
|
// 设置文件密码
|
|
async function toSetFilePwd() {
|
|
//console.log('密码aaa:',filePwd.value);
|
|
params.pwd = filePwd.value === '' ? '' : md5(filePwd.value)
|
|
params.isPwd = filePwd.value === '' ? 0 : 1
|
|
const url = getApiUrl() + '/file/setfilepwd'
|
|
const header = {
|
|
'Salt': params.salt ? params.salt : 'vIf_wIUedciAd0nTm6qjJA==',
|
|
'FilePwd': params.pwd
|
|
}
|
|
await fetchGet(`${getApiUrl()}/file/changeispwd?ispwd=${params.isPwd}`)
|
|
const res = await fetchGet(url, header)
|
|
if (res.ok){
|
|
notifySuccess("设置文件密码成功");
|
|
} else {
|
|
params.isPwd = 0
|
|
params.pwd = ''
|
|
notifyError("设置文件密码失败")
|
|
}
|
|
//console.log('密码:',params);
|
|
|
|
setSystemKey('file',params)
|
|
}
|
|
function clearPwd() {
|
|
setPwd.value = false
|
|
filePwd.value = ''
|
|
toSetFilePwd()
|
|
}
|
|
onMounted(()=>{
|
|
setPwd.value = params.isPwd ? true : false
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
@import "./setStyle.css";
|
|
.file-pwd-box {
|
|
padding-top: 20px;
|
|
}
|
|
.setting-item {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
</style>
|
|
|