帧视界壹通告,付费看视频的微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

101 lines
1.7 KiB

11 months ago
  1. <template>
  2. <view class="postList">
  3. <navbar
  4. leftClick
  5. @leftClick="$utils.navigateBack"
  6. title="认证演员"/>
  7. <view class="title">
  8. 认证创作者
  9. </view>
  10. <view class="box">
  11. <view class="search">
  12. <view class="icon">
  13. <uv-icon
  14. size="40rpx"
  15. name="search"></uv-icon>
  16. </view>
  17. <input type="text" placeholder="请输入搜索关键字..."/>
  18. <view class="text">
  19. 搜索
  20. </view>
  21. </view>
  22. <actorList :list="actorList"/>
  23. </view>
  24. </view>
  25. </template>
  26. <script>
  27. import actorList from '@/components/post/actorList.vue'
  28. export default {
  29. components : {
  30. actorList
  31. },
  32. data() {
  33. return {
  34. actorList : [
  35. {
  36. title : "创作人名称创作人名称创作人名称创作人名称",
  37. createTime : '2024-08-22 09:00:00',
  38. createBy : "小飞",
  39. },
  40. {
  41. title : "创作人名称",
  42. createTime : '2024-08-22 09:00:00',
  43. createBy : "小飞",
  44. },
  45. {
  46. title : "创作人名称",
  47. createTime : '2024-08-22 09:00:00',
  48. createBy : "小飞",
  49. },
  50. {
  51. title : "创作人名称",
  52. createTime : '2024-08-22 09:00:00',
  53. createBy : "小飞",
  54. },
  55. ],
  56. }
  57. },
  58. methods: {
  59. }
  60. }
  61. </script>
  62. <style lang="scss" scoped>
  63. .postList{
  64. .title{
  65. padding-top: 20rpx;
  66. padding-left: 30rpx;
  67. font-size: 32rpx;
  68. }
  69. .box{
  70. padding: 30rpx;
  71. .search{
  72. background-color: #fff;
  73. height: 70rpx;
  74. width: 100%;
  75. margin: 20rpx 0;
  76. display: flex;
  77. justify-content: center;
  78. align-items: center;
  79. font-size: 28rpx;
  80. border-radius: 10rpx;
  81. .icon{
  82. margin: 0 20rpx;
  83. }
  84. input{
  85. }
  86. .text{
  87. margin-left: auto;
  88. margin-right: 20rpx;
  89. }
  90. }
  91. }
  92. }
  93. </style>