Files
BlackFruit-UI/clientarea/hgcloud/js/security_log.js
yiqiu 3b41cffbc9
All checks were successful
continuous-integration/drone/push Build is passing
feat: 会员中心 hgcloud 主题初始化 + drone 部署步骤
- 解压官方默认主题 default_yfMBA.tar.gz 到 clientarea/hgcloud/
- .gitignore 排除压缩包和临时解压目录
- drone 新增步骤: 同步 hgcloud 到 /clientarea/template/pc/
2026-03-19 17:56:44 +08:00

150 lines
4.1 KiB
JavaScript

(function (window, undefined) {
var old_onload = window.onload;
window.onload = function () {
const template = document.getElementsByClassName("template")[0];
Vue.prototype.lang = window.lang;
new Vue({
components: {
asideMenu,
topMenu,
pagination,
},
created () {
this.getCommonData();
},
mounted () {
this.getLogList();
},
updated () {
// // 关闭loading
// document.getElementById('mainLoading').style.display = 'none';
// document.getElementsByClassName('template')[0].style.display = 'block'
},
destroyed () { },
data () {
return {
isShowAPI: false,
isShowAPILog: false,
params: {
page: 1,
limit: 20,
pageSizes: [20, 50, 100],
total: 200,
orderby: "id",
sort: "desc",
keywords: "",
type: "api",
},
commonData: {},
activeName: "3",
loading: false,
dataList: [],
isNextPageDisabled: false
};
},
filters: {
formateTime (time) {
if (time && time !== 0) {
return formateDate(time * 1000);
} else {
return "--";
}
},
},
methods: {
handleChange (type) {
if (type === 1) {
this.params.page += 1;
} else {
if (this.params.page > 1) {
this.params.page -= 1;
}
}
this.getLogList();
},
getRule (arr) {
let isShow1 = this.showFun(arr, "ApiController::list");
let isShow2 = this.showFun(arr, "LogController::list");
if (isShow1) {
this.isShowAPI = true;
this.activeName = this.activeName;
} else {
this.activeName = "2";
}
if (isShow2) {
this.isShowAPILog = true;
}
this.handleClick();
},
showFun (arr, str) {
if (typeof arr == "string") {
return true;
} else {
let isShow = "";
isShow = arr.find((item) => {
let isHave = item.includes(str);
if (isHave) {
return isHave;
}
});
return isShow;
}
},
// 获取通用配置
getCommonData () {
this.commonData = JSON.parse(localStorage.getItem("common_set_before"));
document.title = this.commonData.website_name + "-" + lang.security_tab2;
},
// 每页展示数改变
sizeChange (e) {
this.params.limit = e;
this.params.page = 1;
// 获取列表
this.getLogList();
},
// 当前页改变
currentChange (e) {
this.params.page = e;
this.getLogList();
},
inputChange () {
this.params.page = 1;
this.getLogList();
},
handleClick (tap, event) {
if (this.activeName == 1) {
location.href = "security.htm";
}
if (this.activeName == 2) {
location.href = "security_ssh.htm";
}
if (this.activeName == 4) {
location.href = "security_group.htm";
}
},
getLogList () {
this.loading = true;
logList(this.params)
.then((res) => {
if (res.data.status === 200) {
this.dataList = res.data.data.list;
this.params.total = res.data.data.count;
if (this.dataList.length === 0) {
this.isNextPageDisabled = true;
} else {
this.isNextPageDisabled = false;
}
}
this.loading = false;
})
.catch((err) => {
this.loading = false;
});
},
},
}).$mount(template);
typeof old_onload == "function" && old_onload();
};
})(window);