feat: 会员中心 hgcloud 主题初始化 + drone 部署步骤
All checks were successful
continuous-integration/drone/push Build is passing

- 解压官方默认主题 default_yfMBA.tar.gz 到 clientarea/hgcloud/
- .gitignore 排除压缩包和临时解压目录
- drone 新增步骤: 同步 hgcloud 到 /clientarea/template/pc/
This commit is contained in:
yiqiu
2026-03-19 17:56:44 +08:00
parent 75756e5a64
commit 3b41cffbc9
381 changed files with 386825 additions and 1 deletions

View File

@@ -0,0 +1,264 @@
(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.getSshList();
},
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: 10,
pageSizes: [10, 20],
total: 200,
orderby: "id",
sort: "desc",
keywords: "",
},
commonData: {},
activeName: "2",
loading: false,
dataList: [],
isShowDel: false,
delName: "",
delId: 0,
isShowCj: false,
cjData: {
name: "",
public_key: "",
},
errText: "",
isShowEdit: false,
editData: {
id: 0,
name: "",
public_key: "",
},
};
},
filters: {
formateTime(time) {
if (time && time !== 0) {
return formateDate(time * 1000);
} else {
return "--";
}
},
},
methods: {
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_tab1;
},
// 每页展示数改变
sizeChange(e) {
this.params.limit = e;
this.params.page = 1;
// 获取列表
},
// 当前页改变
currentChange(e) {
this.params.page = e;
},
inputChange() {
this.params.page = 1;
this.getSshList();
},
handleClick() {
console.log(this.activeName);
if (this.activeName == 1) {
location.href = "security.htm";
}
if (this.activeName == 3) {
location.href = "security_log.htm";
}
if (this.activeName == 4) {
location.href = "security_group.htm";
}
},
showCreateSsh() {
this.isShowCj = true;
this.errText = "";
this.cjData = {
name: "",
public_key: "",
};
console.log("sss");
},
getSshList() {
this.loading = true;
sshList(this.params)
.then((res) => {
if (res.data.status === 200) {
this.dataList = res.data.data.list;
this.params.total = res.data.data.count;
}
this.loading = false;
})
.catch((err) => {
this.loading = false;
});
},
deleteItem(row) {
this.delName = row.name;
this.delId = row.id;
this.isShowDel = true;
},
editItem(row) {
this.errText = "";
this.editData.id = row.id;
this.editData.name = row.name;
this.editData.public_key = row.public_key;
this.isShowEdit = true;
},
editClose() {
this.isShowEdit = false;
},
editSub() {
let isPass = true;
const data = this.editData;
if (!data.name) {
this.errText = lang.security_tips10;
isPass = false;
return false;
}
if (!data.public_key) {
this.errText = lang.security_tips11;
isPass = false;
return false;
}
if ((isPass = true)) {
this.errText = "";
const params = {
...data,
};
editSsh(params)
.then((res) => {
if (res.data.status === 200) {
this.$message.success(res.data.msg);
this.getSshList();
this.isShowEdit = false;
}
})
.catch((error) => {
this.errText = error.data.msg;
});
}
},
// 取消删除
delClose() {
this.isShowDel = false;
},
// 确认删除
delSub() {
this.isShowDel = false;
const params = {
id: this.delId,
};
delSsh(params)
.then((res) => {
if (res.data.status === 200) {
this.isShowDel = false;
this.$message.success(res.data.msg);
this.getSshList();
}
})
.catch((err) => {
this.$message.error(err.data.msg);
});
},
cjSub() {
const data = this.cjData;
let isPass = true;
if (!data.name) {
this.errText = lang.security_tips12;
isPass = false;
return false;
}
if (!data.public_key) {
this.errText = lang.security_tips13;
isPass = false;
return false;
}
if (isPass) {
this.errText = "";
const params = {
...data,
};
createSsh(params)
.then((res) => {
if (res.data.status === 200) {
this.$message.success(res.data.msg);
this.isShowCj = false;
this.getSshList();
}
})
.catch((err) => {
this.errText = err.data.msg;
});
}
},
cjClose() {
this.isShowCj = false;
},
toLearn() {
window.open('https://www.idcsmart.com/wiki_list/917.php', '_blank')
}
},
}).$mount(template);
typeof old_onload == "function" && old_onload();
};
})(window);