index.jsx 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. import React, { Component } from "react";
  2. import { View, Button } from "@tarojs/components";
  3. import { AtModal, AtModalContent, AtSearchBar, AtList, AtListItem } from "taro-ui";
  4. import { getadminByName } from "../../../utils/servers/servers";
  5. import './index.less';
  6. import "taro-ui/dist/style/components/modal.scss";
  7. import Taro from "@tarojs/taro";
  8. class UserQuery extends Component {
  9. constructor(props) {
  10. super(props);
  11. this.state = {
  12. value: "",
  13. list: [],
  14. listState: "NO_DATA",
  15. pageNo: 1,
  16. listVisible: false,
  17. listValue: {},
  18. };
  19. this.onChange = this.onChange.bind(this);
  20. }
  21. onChange(value, lv = true) {
  22. this.setState({
  23. value,
  24. });
  25. if (value.length < 2 && !lv) {
  26. Taro.showToast({ title: "最少输入两个字符", icon: "none" });
  27. return;
  28. }
  29. if (value.length < 4 && lv) {
  30. return;
  31. }
  32. this.getList(value);
  33. }
  34. getList(value = this.state.value, pageNo = 1) {
  35. this.setState({
  36. listState: "LOADING",
  37. });
  38. getadminByName({
  39. adminName: value,
  40. pageNo: pageNo,
  41. pageSize: 10,
  42. })
  43. .then((msg) => {
  44. if (msg.error.length === 0) {
  45. this.setState({
  46. list: msg.data
  47. })
  48. } else {
  49. Taro.showToast({ title: msg.error[0].message, icon: "none" });
  50. this.setState({
  51. listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
  52. });
  53. }
  54. })
  55. .catch(() => {
  56. this.setState({
  57. listState: "RELOAD",
  58. });
  59. });
  60. }
  61. render() {
  62. const { coorderList, cList } = this.props
  63. return (
  64. <AtModal isOpened={this.props.isOpened} onClose={this.props.onDesc}>
  65. <AtModalContent>
  66. <AtSearchBar
  67. showActionButton
  68. value={this.state.value}
  69. onChange={this.onChange}
  70. onActionClick={() => {
  71. this.onChange(this.state.value, false);
  72. }}
  73. onConfirm={() => {
  74. this.onChange(this.state.value, false);
  75. }}
  76. onClear={() => {
  77. this.setState({
  78. value: "",
  79. list: [],
  80. listState: "NO_DATA",
  81. pageNo: 1,
  82. listVisible: false,
  83. });
  84. }}
  85. />
  86. <AtList>
  87. {
  88. this.state.list.map(v =>
  89. <View key={v.id}>
  90. <AtListItem
  91. title={v.name}
  92. onClick={() => {
  93. console.log("coorderList==", coorderList)
  94. if (coorderList.includes(v.id)) {
  95. Taro.showToast({ title: "你已经邀请过Ta了", icon: "none" });
  96. return
  97. } else {
  98. coorderList.push(v.id);
  99. cList.push(v);
  100. this.props.setList(cList, coorderList);
  101. this.props.onDesc();
  102. }
  103. }}
  104. />
  105. </View>
  106. )
  107. }
  108. </AtList>
  109. </AtModalContent>
  110. </AtModal>
  111. );
  112. }
  113. }
  114. export default UserQuery;