index.jsx 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. import React, { Component } from "react";
  2. import { View, Button, Text } 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
  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. //selList 本次共出的协单人或协单助手
  64. //req是否调用接口添加 addClick接口
  65. const { selList = [], coorderList, cList, req = false, addClick } = this.props
  66. return (
  67. <AtModal
  68. isOpened={this.props.isOpened}
  69. onClose={this.props.onDesc}
  70. >
  71. <AtModalContent>
  72. <AtSearchBar
  73. placeholder="请输入协单人/助手姓名"
  74. showActionButton
  75. value={this.state.value}
  76. onChange={this.onChange}
  77. onActionClick={() => {
  78. this.onChange(this.state.value, false);
  79. }}
  80. onConfirm={() => {
  81. this.onChange(this.state.value, false);
  82. }}
  83. onClear={() => {
  84. this.setState({
  85. value: "",
  86. list: [],
  87. listState: "NO_DATA",
  88. pageNo: 1,
  89. listVisible: false,
  90. });
  91. }}
  92. />
  93. <AtList>
  94. {
  95. this.state.list.map(v =>
  96. <View key={v.id}>
  97. <AtListItem
  98. title={v.name}
  99. onClick={() => {
  100. if (coorderList.includes(v.id)) {
  101. Taro.showToast({ title: "你已经邀请过Ta了~", icon: "none" });
  102. return
  103. } else if (isOneself(v.id)) {
  104. Taro.showToast({ title: "你不能邀请自己哦~", icon: "none" });
  105. return
  106. } else if (selList.includes(v.id)) {
  107. Taro.showToast({ title: "本次公出已经邀请过Ta了", icon: "none" });
  108. return
  109. } else {
  110. if (req) {
  111. addClick(v.id)
  112. } else {
  113. coorderList.push(v.id);
  114. cList.push(v);
  115. this.props.setList(cList, coorderList);
  116. this.props.onDesc();
  117. }
  118. }
  119. }}
  120. />
  121. </View>
  122. )
  123. }
  124. </AtList>
  125. <View
  126. style={{ color: "red", margin: "20px auto 0", textAlign: "center" }}
  127. onClick={this.props.onDesc}
  128. >点击关闭弹窗</View>
  129. </AtModalContent>
  130. </AtModal>
  131. );
  132. }
  133. }
  134. export default UserQuery;