searchUser.vue 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <template>
  2. <view class="container">
  3. <form @submit="searchUserInfo">
  4. <view class="search-form flex-row flex-start">
  5. <input name="phone" class="input" :placeholder="$t('手机号码')" />
  6. <button form-type="submit" size="mini" type="primary" class="button">{{$t('搜索')}}</button>
  7. </view>
  8. </form>
  9. <view v-if="userInfo" class="result-form">
  10. <view class="form-item">
  11. <view class="form-label">{{$t('用户ID')}}</view>
  12. <view class="form-value">{{ userInfo.user_id }}</view>
  13. </view>
  14. <view class="form-item">
  15. <view class="form-label">{{$t('用户所属总店')}}</view>
  16. <view class="form-value">{{ userInfo.shop_name }}</view>
  17. </view>
  18. <view class="form-item">
  19. <view class="form-label">{{$t('用户名')}}</view>
  20. <view class="form-value">{{ userInfo.user_name }}</view>
  21. </view>
  22. <view class="form-item">
  23. <view class="form-label">{{$t('手机')}}</view>
  24. <view class="form-value">{{ userInfo.phone }}</view>
  25. </view>
  26. <view class="form-item no-border">
  27. <view class="form-label">{{$t('微信昵称')}}</view>
  28. <view class="form-value">{{ userInfo.nickname }}</view>
  29. </view>
  30. </view>
  31. <view v-if="userInfo" class="check-btn">
  32. <button type="warn" plain @tap="bindCheck">{{$t('确定')}}</button>
  33. </view>
  34. </view>
  35. </template>
  36. <script>
  37. // myPages/pages/searchUser/searchUser.js
  38. var config = require('../../../common/config.js');
  39. var http = require('../../../common/http.js');
  40. var common = require('../../../common/common.js');
  41. var storage = require('../../../common/storage.js');
  42. export default {
  43. data() {
  44. return {
  45. userInfo: null
  46. };
  47. }
  48. /**
  49. * 生命周期函数--监听页面加载
  50. */,
  51. onLoad: function (options) {
  52. uni.setNavigationBarTitle({
  53. title: this.$t('搜索用户')
  54. });
  55. },
  56. methods: {
  57. searchUserInfo: function (e) {
  58. const phone = e.detail.value.phone;
  59. if (common.isEmpty(phone)) {
  60. common.simpleToast(this,this.$t('请输入手机号码'));
  61. return;
  62. }
  63. const that = this;
  64. http.postApi(
  65. config.API_CLIENT_GET_BY_PHONE,
  66. {
  67. phone: phone
  68. },
  69. function (resp) {
  70. if (resp.data.code === 200) {
  71. that.setData({
  72. userInfo: resp.data.data.userInfo
  73. });
  74. } else {
  75. common.simpleToast(that,resp.data.msg);
  76. }
  77. }
  78. );
  79. },
  80. bindCheck: function () {
  81. storage.setSearchClientUserInfo(this.userInfo);
  82. uni.navigateBack({
  83. delta: 1
  84. });
  85. }
  86. }
  87. };
  88. </script>
  89. <style>
  90. @import './searchUser.css';
  91. </style>