123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- <template>
- <!-- 头部云机id等信息 -->
- <div class="cloud-id-info-wrap">
- <!-- 云机套餐头像 -->
- <div class="cloud-id-avatar-wrap">
- <van-image
- width="24"
- height="24"
- :src="iconUrl"
- >
- <!-- 图片加载中显示 -->
- <template v-slot:loading>
- <van-loading type="spinner" size="20" />
- </template>
- </van-image>
- </div>
- <!-- 云机名称和ID -->
- <div class="cloud-id-desc-wrap">
- <div class="cloud-id-name mb-1">{{ cloudInfo.diskName }}</div>
- <div class="cloud-id-detail-wrap">
- <div class="cloud-id">ID {{ userCardId }}</div>
- <div class="cloud-id-active-group">当前分组:{{ activeGroupName }}</div>
- </div>
- </div>
- </div>
- </template>
- <script>
- /**
- * 头部云机id等信息
- */
- export default {
- name: 'CloudMainPanel',
- props: {
- // 当前云机id
- userCardId: {
- type: [String, Number],
- default: ''
- },
- // 云机列表
- cloudList: {
- type: Array,
- default: () => ([])
- },
- // 分组栏目列表
- groupList: {
- type: Array,
- default: () => []
- },
- // 云机套餐的图标
- imgFun: {
- type: Function,
- default: () => () => {}
- }
- },
- computed: {
- // 当前选择的云机分组名称
- activeGroupName() {
- return this.groupList.find(item => item.id === this.cloudInfo.groupId)?.groupName || '全部设备';
- },
- // 当前云机信息
- cloudInfo() {
- // 如果当前云机id为空, 那么就返回空对象
- if (!this.userCardId) {
- return {};
- }
- // 如果当前云机id不为空, 那么就返回当前云机的信息
- return this.cloudList.find(item => item.userCardId === +this.userCardId) ?? {};
- },
- // 当前云机套餐的图标
- iconUrl() {
- return Object.keys(this.cloudInfo).length ? this.imgFun(this.cloudInfo.buyVipType, this.cloudInfo.androidVersion) : require(`~/assets/image/rtc/userMealUpgradeVO_icon.png`)
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- // 文字高亮颜色
- $active-color: #FEAE4D;
- .cloud-id-info-wrap{
- display: flex;
- color: #f9f9f9;
- font-size: 10px;
- line-height: 10px;
- background-color: #565656;
- padding: 12px 16px;
- .cloud-id-avatar-wrap{
- padding-right: 8px;
- }
- .cloud-id-desc-wrap{
- flex: 1;
- .cloud-id-name{
- text-align: left;
- }
- .cloud-id-detail-wrap{
- display: flex;
- flex-wrap: nowrap;
- justify-content: space-between;
- .cloud-id{
- color: $active-color;
- }
- }
- }
- }
- </style>
|