15 lines
514 B
Vue
15 lines
514 B
Vue
<template>
|
|
<view class="mx-4 bg-white px-2 py-3 flex flex-items-center text-3.5 rounded-2 shadow-sm">
|
|
<view>
|
|
<text class="font-bold custom-color-black">团队</text>
|
|
<text class="font-bold color-red">公告</text>
|
|
</view>
|
|
<view class="ml-2 w-1 h-1 bg-black rounded-50%"></view>
|
|
<view class="ml-2">1</view>
|
|
<view class="ml-a">全部</view>
|
|
<wd-icon name="arrow-right" size="14px" class="ml-2" color="#bfbfbf"></wd-icon>
|
|
</view>
|
|
</template>
|
|
|
|
<script setup lang="ts"></script>
|