mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-04-06 03:57:53 +08:00
connect to backend
This commit is contained in:
parent
0775a81510
commit
e4736f38b5
@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="dashboard-editor-container">
|
<div v-loading="loading" class="dashboard-editor-container">
|
||||||
<el-button class="edit-yaml-button" type="primary" @click="openYamlEditorDialog">编辑 YAML</el-button>
|
<el-button class="edit-yaml-button" type="primary" @click="openYamlEditorDialog">编辑 YAML</el-button>
|
||||||
<el-table :data="tableData" border style="width: 100%">
|
<el-table :data="tableData" border style="width: 100%" height="800">
|
||||||
<el-table-column prop="cluster" label="Cluster" />
|
<el-table-column prop="cluster" label="Cluster" />
|
||||||
<el-table-column prop="namespace" label="Namespace" />
|
<el-table-column prop="namespace" label="Namespace" />
|
||||||
<el-table-column prop="name" label="Name" />
|
<el-table-column prop="name" label="Name" />
|
||||||
@ -13,18 +13,9 @@
|
|||||||
<el-table-column prop="age" label="Age" />
|
<el-table-column prop="age" label="Age" />
|
||||||
</el-table>
|
</el-table>
|
||||||
<!-- YAML 编辑器弹框 -->
|
<!-- YAML 编辑器弹框 -->
|
||||||
<el-dialog
|
<el-dialog title="编辑 YAML" :visible.sync="yamlEditorVisible" width="50%" @close="closeYamlEditorDialog">
|
||||||
title="编辑 YAML"
|
|
||||||
:visible.sync="yamlEditorVisible"
|
|
||||||
width="50%"
|
|
||||||
@close="closeYamlEditorDialog"
|
|
||||||
>
|
|
||||||
<div class="editor-container">
|
<div class="editor-container">
|
||||||
<textarea
|
<textarea v-model="yamlContent" style="width: 100%; height: 400px;" placeholder="编辑 YAML 内容" />
|
||||||
v-model="yamlContent"
|
|
||||||
style="width: 100%; height: 400px;"
|
|
||||||
placeholder="编辑 YAML 内容"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button @click="closeYamlEditorDialog">取消</el-button>
|
<el-button @click="closeYamlEditorDialog">取消</el-button>
|
||||||
@ -42,7 +33,8 @@ export default {
|
|||||||
return {
|
return {
|
||||||
tableData: [], // 初始为空数组,将在 mounted 时获取数据
|
tableData: [], // 初始为空数组,将在 mounted 时获取数据
|
||||||
yamlEditorVisible: false, // 控制 YAML 编辑器弹框的显示
|
yamlEditorVisible: false, // 控制 YAML 编辑器弹框的显示
|
||||||
yamlContent: '' // YAML 编辑器中的内容
|
yamlContent: '', // YAML 编辑器中的内容
|
||||||
|
loading: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -88,37 +80,81 @@ export default {
|
|||||||
this.yamlEditorVisible = false
|
this.yamlEditorVisible = false
|
||||||
},
|
},
|
||||||
saveYamlChanges() {
|
saveYamlChanges() {
|
||||||
// 保存 YAML 数据,无需转换为 JSON
|
|
||||||
console.log('保存的 YAML 数据:', this.yamlContent)
|
console.log('保存的 YAML 数据:', this.yamlContent)
|
||||||
this.closeYamlEditorDialog() // 关闭弹框
|
this.loading = true
|
||||||
|
fetch(API_URL + '/pod/deploy', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
yaml: this.yamlContent // 将 YAML 内容作为请求体中的 "yaml" 字段
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.then(response => {
|
||||||
|
console.log('meme')
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error('请求失败,状态码: ' + response.status)
|
||||||
|
}
|
||||||
|
return response.json() // 将响应解析为 JSON
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
// 处理后端返回的数据
|
||||||
|
console.log('后端响应数据:', data)
|
||||||
|
if (!data.error) {
|
||||||
|
console.log('部署输出:', data.stdout)
|
||||||
|
this.$notify({
|
||||||
|
title: '调度成功',
|
||||||
|
message: '该应用已被调度到集群' + data.dst + '上\n' + data.stdout,
|
||||||
|
type: 'success'
|
||||||
|
})
|
||||||
|
} else if (data.error) {
|
||||||
|
console.error('部署错误:', data.error)
|
||||||
|
this.$notify.error({
|
||||||
|
title: '调度失败',
|
||||||
|
message: '调度失败'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
this.fetchTableData()
|
||||||
|
this.loading = false
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
// 处理请求或解析中的任何错误
|
||||||
|
console.error('请求出错:', error)
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.closeYamlEditorDialog() // 关闭弹框
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.dashboard-editor-container {
|
.dashboard-editor-container {
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
background-color: rgb(240, 242, 245);
|
background-color: rgb(240, 242, 245);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.github-corner {
|
.github-corner {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 0px;
|
top: 0px;
|
||||||
border: 0;
|
border: 0;
|
||||||
right: 0;
|
right: 0;
|
||||||
}
|
|
||||||
|
|
||||||
.chart-wrapper {
|
|
||||||
background: #fff;
|
|
||||||
padding: 16px 16px 0;
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:1024px) {
|
.chart-wrapper {
|
||||||
.chart-wrapper {
|
background: #fff;
|
||||||
padding: 8px;
|
padding: 16px 16px 0;
|
||||||
}
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
</style>
|
}
|
||||||
|
|
||||||
|
@media (max-width:1024px) {
|
||||||
|
.chart-wrapper {
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
@ -16,18 +16,12 @@
|
|||||||
</el-table>
|
</el-table>
|
||||||
|
|
||||||
<!-- YAML 编辑器弹框 -->
|
<!-- YAML 编辑器弹框 -->
|
||||||
<el-dialog
|
<el-dialog title="编辑 YAML" :visible.sync="yamlEditorVisible" width="50%" @close="closeYamlEditorDialog">
|
||||||
title="编辑 YAML"
|
<el-select v-model="value" placeholder="请选择">
|
||||||
:visible.sync="yamlEditorVisible"
|
<el-option v-for="item in ['a','b']" :key="item" :label="item" :value="item" />
|
||||||
width="50%"
|
</el-select>
|
||||||
@close="closeYamlEditorDialog"
|
|
||||||
>
|
|
||||||
<div class="editor-container">
|
<div class="editor-container">
|
||||||
<textarea
|
<textarea v-model="yamlContent" style="width: 100%; height: 400px;" placeholder="编辑 YAML 内容" />
|
||||||
v-model="yamlContent"
|
|
||||||
style="width: 100%; height: 400px;"
|
|
||||||
placeholder="编辑 YAML 内容"
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
<span slot="footer" class="dialog-footer">
|
<span slot="footer" class="dialog-footer">
|
||||||
<el-button @click="closeYamlEditorDialog">取消</el-button>
|
<el-button @click="closeYamlEditorDialog">取消</el-button>
|
||||||
@ -46,7 +40,9 @@ export default {
|
|||||||
return {
|
return {
|
||||||
tableData: [], // 初始为空数组,将在 mounted 时获取数据
|
tableData: [], // 初始为空数组,将在 mounted 时获取数据
|
||||||
yamlEditorVisible: false, // 控制 YAML 编辑器弹框的显示
|
yamlEditorVisible: false, // 控制 YAML 编辑器弹框的显示
|
||||||
yamlContent: '' // YAML 编辑器中的内容
|
yamlContent: '', // YAML 编辑器中的内容
|
||||||
|
loading: false,
|
||||||
|
value: ''
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
@ -94,47 +90,91 @@ export default {
|
|||||||
this.yamlEditorVisible = false
|
this.yamlEditorVisible = false
|
||||||
},
|
},
|
||||||
saveYamlChanges() {
|
saveYamlChanges() {
|
||||||
// 保存 YAML 数据,无需转换为 JSON
|
|
||||||
console.log('保存的 YAML 数据:', this.yamlContent)
|
console.log('保存的 YAML 数据:', this.yamlContent)
|
||||||
this.closeYamlEditorDialog() // 关闭弹框
|
console.log(this.value)
|
||||||
|
this.loading = true
|
||||||
|
fetch(API_URL + '/service/deploy', {
|
||||||
|
method: 'POST',
|
||||||
|
headers: {
|
||||||
|
'Content-Type': 'application/json'
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
dst: this.value,
|
||||||
|
yaml: this.yamlContent // 将 YAML 内容作为请求体中的 "yaml" 字段
|
||||||
|
})
|
||||||
|
})
|
||||||
|
.then(response => {
|
||||||
|
if (!response.ok) {
|
||||||
|
throw new Error('请求失败,状态码: ' + response.status)
|
||||||
|
}
|
||||||
|
return response.json() // 将响应解析为 JSON
|
||||||
|
})
|
||||||
|
.then(data => {
|
||||||
|
// 处理后端返回的数据
|
||||||
|
console.log('后端响应数据:', data)
|
||||||
|
if (!data.error) {
|
||||||
|
console.log('部署输出:', data.stdout)
|
||||||
|
this.$notify({
|
||||||
|
title: '调度成功',
|
||||||
|
message: '该服务已被部署到集群' + this.value + '上\n' + data.stdout,
|
||||||
|
type: 'success'
|
||||||
|
})
|
||||||
|
} else if (data.error) {
|
||||||
|
console.error('部署错误:', data.error)
|
||||||
|
this.$notify.error({
|
||||||
|
title: '调度失败',
|
||||||
|
message: '调度失败'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
this.fetchTableData()
|
||||||
|
this.loading = false
|
||||||
|
})
|
||||||
|
.catch(error => {
|
||||||
|
// 处理请求或解析中的任何错误
|
||||||
|
console.error('请求出错:', error)
|
||||||
|
})
|
||||||
|
.finally(() => {
|
||||||
|
this.closeYamlEditorDialog() // 关闭弹框
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.dashboard-editor-container {
|
.dashboard-editor-container {
|
||||||
padding: 32px;
|
padding: 32px;
|
||||||
background-color: rgb(240, 242, 245);
|
background-color: rgb(240, 242, 245);
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.edit-yaml-button {
|
.edit-yaml-button {
|
||||||
top: 16px;
|
top: 16px;
|
||||||
left: 16px;
|
left: 16px;
|
||||||
}
|
|
||||||
|
|
||||||
.github-corner {
|
|
||||||
position: absolute;
|
|
||||||
top: 0px;
|
|
||||||
border: 0;
|
|
||||||
right: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.chart-wrapper {
|
|
||||||
background: #fff;
|
|
||||||
padding: 16px 16px 0;
|
|
||||||
margin-bottom: 32px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.editor-container {
|
.github-corner {
|
||||||
position: relative;
|
position: absolute;
|
||||||
height: 100%;
|
top: 0px;
|
||||||
|
border: 0;
|
||||||
|
right: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width:1024px) {
|
.chart-wrapper {
|
||||||
.chart-wrapper {
|
background: #fff;
|
||||||
padding: 8px;
|
padding: 16px 16px 0;
|
||||||
}
|
margin-bottom: 32px;
|
||||||
}
|
}
|
||||||
</style>
|
}
|
||||||
|
|
||||||
|
.editor-container {
|
||||||
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width:1024px) {
|
||||||
|
.chart-wrapper {
|
||||||
|
padding: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user