16 lines
676 B
Vue
16 lines
676 B
Vue
<template>
|
||
<div class="flex-1 h-full p-[20px] select-none">
|
||
<TitleSection title="账号设置" desc="请关联PMS和渠道房型名称,可使用智能对标" />
|
||
|
||
<div
|
||
class="w-full flex items-center mt-[20px] py-[20px] box-border border-b-[1px] border-dashed border-b-[#E5E8EE]">
|
||
<div class="label w-[64px] text-[16px] font-medium text-[#171717] mr-[24px]">当前版本</div>
|
||
<div class="value text-[16px] font-medium text-[#171717]">1.0.0</div>
|
||
<el-button type="text" class="ml-auto">检查更新</el-button>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup lang="ts">
|
||
import TitleSection from '@/components/TitleSection/index.vue'
|
||
</script> |