no message

This commit is contained in:
小陌 2023-09-25 14:23:40 +08:00
parent 50fa3fe16e
commit 98e4dd7b3c
2 changed files with 5 additions and 5 deletions

View File

@ -8,11 +8,11 @@ const APP_CONFIG = {
// Cookie name
SESSIONNAME: 'miucms_session',
//TokenName
TOKEN_NAME: "token",
TOKEN_NAME: "authorization",
// 网站LOGO, 正式形
APP_LOGO: '',
//接口地址
API_URL: 'https://ps.xiaoapi.com/admin',
API_URL: 'https://app.gter.net/admin',
// 微信扫码登录
MY_SHOW_LOGIN_OAUTH: true,
//

View File

@ -65,7 +65,7 @@
<el-table :data="upgradelist" border style="width:100%">
<el-table-column label="版本" width="160">
<el-table-column label="版本" width="170">
<template #default="scope">
<span>{{ scope.row.version }} ({{ scope.row.release }})</span>
</template>
@ -77,13 +77,13 @@
</template>
</el-table-column>
<el-table-column label="发布时间" width="160">
<el-table-column label="发布时间" width="170">
<template #default="scope">
<span v-time="scope.row.timestamp"></span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" width="145" fixed="right">
<el-table-column label="操作" align="center" width="140" fixed="right">
<template #default="scope">
<el-button :type="isCanUpdate ? 'default' : 'info'" @click="updateHandle(scope.row)">更新到此版本</el-button>
</template>