| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <template>
- <view style="padding-bottom: 30rpx;">
- <view class="search-box ddflex">
- <view class="search-input ddflex fflex">
- <image class="search-input-icon" src="../../static/pages/images/search.png"></image>
- <input class="fflex" placeholder="请输入用户昵称或电话"/>
- <view class="search-btn">搜索</view>
- </view>
- </view>
- <view style="height: 135rpx;"></view>
- <view>
- <view class="user-item ddflex" v-for="item in 10">
- <view class="ddflex">
- <image class="user-header" src="../../static/images/userimg.png"></image>
- <view class="fflex">
- <view class="user-nickName">灰灰莫</view>
- <view class="user-phone">顾勇(13815141671)</view>
- </view>
- </view>
- <view class="option-btn">禁用</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- const app = getApp();
- const req = require("../../utils/request.js");
- export default {
- components: {},
- props: {},
- data() {
- return {
- systems: {},
- isTop:0,
- }
- },
- onLoad(options) {
- },
- onShow() {
-
- },
- methods: {
-
- },
- mounted() {
-
- },
- onPageScroll: function(e) {
- }
- }
- </script>
- <style>
- @import "./myUser.css";
- </style>
|