index.jsx 3.3 KB

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