detail.vue 563 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <template>
  2. <view class="wrap">
  3. <uni-list>
  4. <uni-list-item title="你好" note="你是谁"></uni-list-item>
  5. </uni-list>
  6. </view>
  7. </template>
  8. <script >
  9. export default {
  10. data() {
  11. return {
  12. user:1,
  13. users:[]
  14. }
  15. },
  16. created() {
  17. this.init();
  18. },
  19. methods: {
  20. init(){
  21. }
  22. }
  23. }
  24. </script>
  25. <style lang="less" scoped>
  26. .handle-wrap{
  27. display: flex;
  28. justify-content: flex-start;
  29. flex-wrap: wrap;
  30. button{
  31. margin:20upx 20upx 0;
  32. &[type="success"]{
  33. background-color:#09BB07;
  34. color:#fff ;
  35. }
  36. }
  37. }
  38. </style>