|
|
- <template>
- <view class="postList">
-
- <navbar
- leftClick
- @leftClick="$utils.navigateBack"
- title="认证演员"/>
-
-
- <view class="title">
- 认证创作者
- </view>
-
- <view class="box">
- <view class="search">
- <view class="icon">
- <uv-icon
- size="40rpx"
- name="search"></uv-icon>
- </view>
- <input type="text" placeholder="请输入搜索关键字..."/>
- <view class="text">
- 搜索
- </view>
- </view>
-
- <actorList :list="actorList"/>
- </view>
- </view>
- </template>
-
- <script>
- import actorList from '@/components/post/actorList.vue'
- export default {
- components : {
- actorList
- },
- data() {
- return {
- actorList : [
- {
- title : "创作人名称创作人名称创作人名称创作人名称",
- createTime : '2024-08-22 09:00:00',
- createBy : "小飞",
- },
- {
- title : "创作人名称",
- createTime : '2024-08-22 09:00:00',
- createBy : "小飞",
- },
- {
- title : "创作人名称",
- createTime : '2024-08-22 09:00:00',
- createBy : "小飞",
- },
- {
- title : "创作人名称",
- createTime : '2024-08-22 09:00:00',
- createBy : "小飞",
- },
- ],
- }
- },
- methods: {
- }
- }
- </script>
-
- <style lang="scss" scoped>
- .postList{
- .title{
- padding-top: 20rpx;
- padding-left: 30rpx;
- font-size: 32rpx;
- }
- .box{
- padding: 30rpx;
- .search{
- background-color: #fff;
- height: 70rpx;
- width: 100%;
- margin: 20rpx 0;
- display: flex;
- justify-content: center;
- align-items: center;
- font-size: 28rpx;
- border-radius: 10rpx;
- .icon{
- margin: 0 20rpx;
- }
- input{
-
- }
- .text{
- margin-left: auto;
- margin-right: 20rpx;
- }
- }
- }
- }
- </style>
|