mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-06-13 03:39:55 +08:00
update 平台配置页面
This commit is contained in:
50
jsowell-ui/src/views/thirdparty/secret/detail.vue
vendored
Normal file
50
jsowell-ui/src/views/thirdparty/secret/detail.vue
vendored
Normal 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>
|
||||
Reference in New Issue
Block a user