myUser.vue 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <template>
  2. <view style="padding-bottom: 30rpx;">
  3. <view class="search-box ddflex">
  4. <view class="search-input ddflex fflex">
  5. <image class="search-input-icon" src="../../static/pages/images/search.png"></image>
  6. <input class="fflex" placeholder="请输入用户昵称或电话"/>
  7. <view class="search-btn">搜索</view>
  8. </view>
  9. </view>
  10. <view style="height: 135rpx;"></view>
  11. <view>
  12. <view class="user-item ddflex" v-for="item in 10">
  13. <view class="ddflex">
  14. <image class="user-header" src="../../static/images/userimg.png"></image>
  15. <view class="fflex">
  16. <view class="user-nickName">灰灰莫</view>
  17. <view class="user-phone">顾勇(13815141671)</view>
  18. </view>
  19. </view>
  20. <view class="option-btn">禁用</view>
  21. </view>
  22. </view>
  23. </view>
  24. </template>
  25. <script>
  26. const app = getApp();
  27. const req = require("../../utils/request.js");
  28. export default {
  29. components: {},
  30. props: {},
  31. data() {
  32. return {
  33. systems: {},
  34. isTop:0,
  35. }
  36. },
  37. onLoad(options) {
  38. },
  39. onShow() {
  40. },
  41. methods: {
  42. },
  43. mounted() {
  44. },
  45. onPageScroll: function(e) {
  46. }
  47. }
  48. </script>
  49. <style>
  50. @import "./myUser.css";
  51. </style>