✨Add language cache cleanup
This commit is contained in:
parent
f73ea87cb0
commit
0aab140452
@ -12,50 +12,7 @@
|
||||
<link href="<%= htmlWebpackPlugin.options.cdn.css[i] %>" rel="stylesheet">
|
||||
<% } %>
|
||||
<title><%= htmlWebpackPlugin.options.title %></title>
|
||||
<script>
|
||||
var authConfig = {
|
||||
version: '1.1.1',
|
||||
roots: [
|
||||
{
|
||||
id: "",
|
||||
name: "TeamDrive",
|
||||
pass: "",
|
||||
},
|
||||
{
|
||||
id: "root",
|
||||
name: "PriveDrive",
|
||||
pass: "",
|
||||
},
|
||||
{
|
||||
id: "",
|
||||
name: "folder1",
|
||||
pass: "",
|
||||
}
|
||||
],
|
||||
};
|
||||
var themeOptions = {
|
||||
// en/zh-chs/zh-cht
|
||||
languages: 'en',
|
||||
render: {
|
||||
head_md: true,
|
||||
readme_md: true,
|
||||
// 是否显示文件/文件夹描述(默认不显示)
|
||||
// Show file/folder description or not (not shown by default)
|
||||
desc: true,
|
||||
},
|
||||
player: {
|
||||
api: "",
|
||||
autoplay: true
|
||||
}
|
||||
}
|
||||
window.gdconfig = JSON.parse(JSON.stringify({ version: authConfig.version, themeOptions: themeOptions }));
|
||||
window.themeOptions = themeOptions;
|
||||
window.gds = JSON.parse(
|
||||
JSON.stringify(authConfig.roots.map((it) => it.name))
|
||||
);
|
||||
window.current_drive_order = 0;
|
||||
// window.MODEL = { q: "the",root_type: 1 };
|
||||
</script>
|
||||
<script src="/setting.js"></script>
|
||||
<!-- 使用 CDN 加速的 JS 文件,配置在 vue.config.js 下 -->
|
||||
<% for (var i in htmlWebpackPlugin.options.cdn&&htmlWebpackPlugin.options.cdn.js) { %>
|
||||
<script src="<%= htmlWebpackPlugin.options.cdn.js[i] %>"></script>
|
||||
|
41
public/setting.js
Normal file
41
public/setting.js
Normal file
@ -0,0 +1,41 @@
|
||||
var authConfig = {
|
||||
version: '1.1.1',
|
||||
roots: [
|
||||
{
|
||||
id: "",
|
||||
name: "TeamDrive",
|
||||
pass: "",
|
||||
},
|
||||
{
|
||||
id: "root",
|
||||
name: "PriveDrive",
|
||||
pass: "",
|
||||
},
|
||||
{
|
||||
id: "",
|
||||
name: "folder1",
|
||||
pass: "",
|
||||
}
|
||||
],
|
||||
};
|
||||
var themeOptions = {
|
||||
// en/zh-chs/zh-cht
|
||||
languages: 'en',
|
||||
render: {
|
||||
head_md: true,
|
||||
readme_md: true,
|
||||
// 是否显示文件/文件夹描述(默认不显示)
|
||||
// Show file/folder description or not (not shown by default)
|
||||
desc: true,
|
||||
},
|
||||
player: {
|
||||
api: "",
|
||||
autoplay: true
|
||||
}
|
||||
}
|
||||
window.gdconfig = JSON.parse(JSON.stringify({ version: authConfig.version, themeOptions: themeOptions }));
|
||||
window.themeOptions = themeOptions;
|
||||
window.gds = JSON.parse(
|
||||
JSON.stringify(authConfig.roots.map((it) => it.name))
|
||||
);
|
||||
window.current_drive_order = 0;
|
@ -15,18 +15,20 @@
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import util from '@/libs/util'
|
||||
export default {
|
||||
data() {
|
||||
data () {
|
||||
return {};
|
||||
},
|
||||
methods: {
|
||||
cleanCache() {
|
||||
cleanCache () {
|
||||
new Promise((resolve) => {
|
||||
Object.keys(localStorage).forEach((item) => {
|
||||
if (item.indexOf("file_path_") !== -1) {
|
||||
localStorage.removeItem(item);
|
||||
}
|
||||
});
|
||||
util.cookies.remove("lang")
|
||||
resolve();
|
||||
}).then(() => {
|
||||
this.$notify({
|
||||
|
Loading…
Reference in New Issue
Block a user