mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-07-15 11:40:44 +08:00
51 lines
1.0 KiB
Vue
51 lines
1.0 KiB
Vue
|
|
<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>
|