203 lines
8.0 KiB
Python
203 lines
8.0 KiB
Python
<!doctype html>
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<meta name="viewport"
|
||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
|
||
<meta http-equiv="X-UA-Compatible" content="ie=edge">
|
||
<link rel="stylesheet" href="/static/asserts/index.css">
|
||
<link rel="shortcut icon" href="/static/asserts/favicon.ico" type="image/x-icon"/>
|
||
<title>后台管理-{{title}}</title>
|
||
<meta name="description" content="{{description}}"/>
|
||
<meta name="keywords" content="{{keywords}}"/>
|
||
<meta name="generator" content="FileCodeBox"/>
|
||
<meta name="template" content="Lan"/>
|
||
<script src="/static/asserts/vue.min.js"></script>
|
||
<script src="/static/asserts/index.js"></script>
|
||
<style>
|
||
.el-menu-demo {
|
||
text-align: center;
|
||
}
|
||
|
||
body {
|
||
background: #f5f5f5;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
<div id="app">
|
||
<el-row v-if="login" :gutter="10">
|
||
<el-col :span="24" style="text-align: center">
|
||
<el-menu :default-active="activeIndex" class="el-menu-demo" mode="horizontal" @select="handleSelect">
|
||
<el-menu-item index="2">文件管理</el-menu-item>
|
||
<el-menu-item index="3">系统配置</el-menu-item>
|
||
</el-menu>
|
||
</el-col>
|
||
<el-col v-if="activeIndex === '2'">
|
||
<el-card style="height: 80vh;overflow: scroll;margin-bottom: 1rem">
|
||
<el-empty v-if="files.length === 0" description="暂时还没有文件"></el-empty>
|
||
<el-card v-for="file in files" :key="file.code">
|
||
<el-row>
|
||
<el-col :span="20">
|
||
<div style="cursor: pointer;text-align: left">
|
||
<div>取件码:${ file.code }</div>
|
||
<div>文件名:${ file.name }</div>
|
||
<div>次 数:${ file.count }</div>
|
||
<div>到 期:${ file.exp_time.slice(0,19) }</div>
|
||
<div v-if="file.type==='text'">
|
||
<span>内 容:${ file.text }</span>
|
||
</div>
|
||
<div v-else>
|
||
<span>链 接:</span>
|
||
<a :href="file.text" target="_blank"
|
||
style="color: #1E9FFF;text-underline: none"
|
||
type="primary">点击下载</a>
|
||
</div>
|
||
</div>
|
||
</el-col>
|
||
<el-col :span="4">
|
||
<el-button type="danger" @click="deleteFile(file.code)">删除</el-button>
|
||
</el-col>
|
||
</el-row>
|
||
</el-card>
|
||
</el-card>
|
||
<el-pagination
|
||
background
|
||
style="text-align: center"
|
||
layout="prev, pager, next, sizes"
|
||
:page-size="paginate.page_size"
|
||
@current-change="updatePage"
|
||
@size-change="updateSize"
|
||
:total="paginate.total"
|
||
>
|
||
</el-pagination>
|
||
</el-col>
|
||
<el-col v-if="activeIndex === '3'">
|
||
<el-form ref="form" style="width: 50%;margin:2rem auto" :model="config" label-width="200px"><el-form-item v-for="(banner,index) in config.banners" :label="'Banner'+ (index+1)">
|
||
<div style="width: 50%;display: inline-block">
|
||
<el-input v-model="banner.text" placeholder="文本"></el-input>
|
||
<el-input v-model="banner.url" placeholder="跳转链接"></el-input>
|
||
<el-input v-model="banner.src" placeholder="图片路径"></el-input>
|
||
</div>
|
||
<div style="display: inline-block">
|
||
<el-button type="danger" @click="deleteBanner(index)">删除</el-button>
|
||
</div>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button size="mini" @click="addBanner" type="primary">新增Banner</el-button>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button @click="updateConfig" type="primary">更新</el-button>
|
||
</el-form-item>
|
||
</el-form>
|
||
</el-col>
|
||
</el-row>
|
||
<div v-else style="width: 250px;text-align: center;margin: 40vh auto">
|
||
<el-input v-model="pwd" placeholder="请输入登录密码">
|
||
<el-button slot="append" type="primary" @click="loginAdmin">登录</el-button>
|
||
</el-input>
|
||
</div>
|
||
</div>
|
||
|
||
</body>
|
||
<script src="/static/asserts/axios.min.js"></script>
|
||
<script>
|
||
new Vue({
|
||
el: '#app',
|
||
delimiters: ['${', '}'],
|
||
data: function () {
|
||
return {
|
||
login: false,
|
||
pwd: '',
|
||
activeIndex: '2',
|
||
config: {
|
||
banners: []
|
||
},
|
||
files: [],
|
||
paginate: {
|
||
page: 1,
|
||
size: 10,
|
||
total: 0,
|
||
},
|
||
};
|
||
},
|
||
mounted: function () {
|
||
const pwd = localStorage.getItem('pwd');
|
||
if (pwd) {
|
||
login = true;
|
||
this.pwd = pwd;
|
||
axios.get('{{admin_address}}/config', {
|
||
headers: {
|
||
pwd: pwd
|
||
}
|
||
}).then(res => {
|
||
this.config = res.data.data;
|
||
});
|
||
this.loginAdmin();
|
||
}
|
||
},
|
||
methods: {
|
||
updateSize: function (value) {
|
||
this.paginate.size = value;
|
||
this.loginAdmin();
|
||
},
|
||
updatePage: function (value) {
|
||
this.paginate.page = value;
|
||
this.loginAdmin();
|
||
},
|
||
deleteBanner: function (index) {
|
||
this.config.banners.splice(index, 1);
|
||
},
|
||
addBanner: function () {
|
||
this.config.banners.push({
|
||
'url': '',
|
||
'src': '',
|
||
'text': '',
|
||
})
|
||
},
|
||
updateConfig: function () {
|
||
axios.patch('', this.config, {
|
||
'headers': {
|
||
'pwd': this.pwd,
|
||
'Content-Type': 'multipart/json'
|
||
}
|
||
}).then(res => {
|
||
this.$message({
|
||
message: res.data.detail,
|
||
type: 'success'
|
||
});
|
||
})
|
||
},
|
||
loginAdmin: function () {
|
||
axios.post('', this.paginate, {
|
||
'headers': {
|
||
'pwd': this.pwd,
|
||
'Content-Type': 'multipart/form-data'
|
||
}
|
||
}).then(res => {
|
||
this.paginate = res.data.paginate;
|
||
this.files = res.data.data
|
||
this.login = true;
|
||
localStorage.setItem('pwd', this.pwd);
|
||
}).catch(e => {
|
||
localStorage.clear()
|
||
this.$message({'message': e.response.data.detail, 'type': 'error'});
|
||
});
|
||
},
|
||
handleSelect(key, keyPath) {
|
||
this.activeIndex = key;
|
||
},
|
||
deleteFile: function (code) {
|
||
axios.delete('?code=' + code, {'headers': {'pwd': this.pwd}}).then(res => {
|
||
this.files = this.files.filter(item => item.code !== code)
|
||
this.$message({
|
||
message: res.data.detail,
|
||
type: 'success'
|
||
});
|
||
})
|
||
},
|
||
}
|
||
})
|
||
</script>
|
||
</html>
|