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.

ETC-product-status-list-query.vue 537B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="item">
  3. <text>产品名称:</text><input placeholder="请输入产品名称" />
  4. </view>
  5. <view class="item">
  6. <text>产品状态:</text><input placeholder="请输入产品状态" />
  7. </view>
  8. <view class="item">
  9. <text>产品编号:</text><input placeholder="请输入产品编号" />
  10. </view>
  11. </template>
  12. <script setup lang="ts">
  13. </script>
  14. <style scoped>
  15. .item {
  16. display: flex;
  17. font-size: 30rpx;
  18. margin: 20rpx 0 0 20rpx;
  19. }
  20. input {
  21. border: 1rpx solid #ccc;
  22. padding: 0 10rpx;
  23. }
  24. </style>