update 平台配置页面

This commit is contained in:
2024-04-22 15:02:55 +08:00
parent 01319e7648
commit 32403e337c
7 changed files with 86 additions and 6 deletions

View File

@@ -0,0 +1,50 @@
<template>
<div class="app-container Input">
<el-tabs type="border-card">
<el-tab-pane label="密钥配置" name="order">
</el-tab-pane>
<el-tab-pane label="同步数据" name="pile">
</el-tab-pane>
</el-tabs>
</div>
</template>
<script>
export default {
dicts: ["third_party_type"],
components: {
},
data() {
return {
id: this.$route.params.id,
platformName: this.$route.params.platformName,
};
},
created() {
this.updateTitle();
},
mounted() {
},
methods: {
// 更新页面title显示
updateTitle() {
const platformName = this.platformName;
const title = "【" + platformName + "】平台配置";
const route = Object.assign({}, this.$route, { title: `${title}` });
this.$store.dispatch("tagsView/updateVisitedView", route);
},
}
};
</script>
<style scoped lang="scss">
</style>