Compare commits

...

2 Commits

Author SHA1 Message Date
619931f002 moliparty-prod url 2025-10-11 16:34:26 +08:00
23f582f376 公会主播管理 - 列表增加操作时间字段 2025-10-11 16:34:00 +08:00
5 changed files with 15 additions and 5 deletions

View File

@@ -1,2 +1,2 @@
VUE_APP_API_BASE_URL=http://admin.web.pekolive.com
VUE_APP_API_BASE_URL=http://admin.web.moliparty.com
VUE_APP_DEBUG_MODE=false

View File

@@ -6,7 +6,7 @@
<!-- mini logo for sidebar mini 50x50 pixels -->
<span class="logo-mini"><b>M</b>S</span>
<!-- logo for regular state and mobile devices -->
<span class="logo-lg"><b>molistar</b>管理系统</span>
<span class="logo-lg"><b>MoliParty</b>管理系统</span>
</a>
<!-- Header Navbar: style can be found in header.less -->
<nav class="navbar navbar-static-top" role="navigation">

View File

@@ -59,6 +59,11 @@
</template>
</el-table-column>
<el-table-column prop="adminName" align="center" label="操作人" />
<el-table-column prop="enable" align="center" label="操作时间" >
<template v-slot="scope">
{{scope.row.enable ? convertTimestamp(scope.row.createTime) : convertTimestamp(scope.row.updateTime)}}
</template>
</el-table-column>
</el-table>
<!-- 分页 -->
<el-pagination style="margin-top: 10px" class="paginationClass" :current-page="formData.page"
@@ -181,6 +186,10 @@ export default {
formData.pageNum = val;
getData();
};
const convertTimestamp =(time)=> {
let date = new Date(time);
return date.format("yyyy-MM-dd hh:mm:ss");
};
return {
formData,
addFormData,
@@ -191,7 +200,8 @@ export default {
handleCurrentChange,
addFun,
detailPageFun,
deleteId
deleteId,
convertTimestamp
}
}

View File

@@ -4,7 +4,7 @@
:style="[smsSwitch ? 'height: 350px' : '']">
<div class="login_box">
<div class="login_logo">
<span style="font-size:24px;color:#222;font-weight:bold;">&nbsp;&nbsp;MOLISTAR&nbsp;&nbsp;&nbsp;&nbsp;</span>
<span style="font-size:24px;color:#222;font-weight:bold;">&nbsp;&nbsp;MoliParty&nbsp;&nbsp;&nbsp;&nbsp;</span>
</div>
<div class="login_form">
<form id="loginForm"

View File

@@ -19,7 +19,7 @@ module.exports = defineConfig({
config
.plugin('html') // 配置 html-webpack-plugin 插件
.tap(args => {
args[0].title = 'MOLISTAR管理后台' // 设置网页标题
args[0].title = 'MoliParty管理后台' // 设置网页标题
return args
})
},