enterprise.jsx 15 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453
  1. import React, { Component } from "react";
  2. import { View, Text, Icon } from "@tarojs/components";
  3. import { getUserByName, getOrderByUid } from "../../utils/servers/servers";
  4. import { AtSearchBar, AtPagination, AtListItem, AtIcon, AtButton } from "taro-ui";
  5. import "taro-ui/dist/style/components/search-bar.scss";
  6. import "taro-ui/dist/style/components/button.scss";
  7. import "taro-ui/dist/style/components/list.scss";
  8. import "taro-ui/dist/style/components/icon.scss";
  9. import "taro-ui/dist/style/components/pagination.scss";
  10. import "./index.less";
  11. import ListBottomStart from "../../components/common/listBottomStart";
  12. import Taro from "@tarojs/taro";
  13. class Enterprise extends Component {
  14. constructor(props) {
  15. super(props);
  16. this.state = {
  17. value: "",
  18. list: [],
  19. listState: "NO_DATA",
  20. selectId: 0,
  21. pageNo: 1,
  22. listVisible: false,
  23. listValue: {},
  24. orderNo: [],
  25. visibles: true,
  26. };
  27. this.onChange = this.onChange.bind(this);
  28. }
  29. onChange(value, lv = true) {
  30. this.setState({
  31. value,
  32. });
  33. if (value.length < 2 && !lv) {
  34. Taro.showToast({ title: "最少输入两个字符", icon: "none" });
  35. return;
  36. }
  37. if (value.length < 4 && lv) {
  38. return;
  39. }
  40. this.getList(value);
  41. }
  42. componentWillUnmount() {
  43. this.setState({
  44. value: "",
  45. list: [],
  46. listState: "NO_DATA",
  47. selectId: 0,
  48. pageNo: 1,
  49. totalCount: 0,
  50. });
  51. }
  52. getByUid(val) {
  53. this.setState({
  54. listState: "LOADING",
  55. });
  56. getOrderByUid({
  57. uid: val.id,
  58. }).then((msg) => {
  59. if (msg.error.length === 0) {
  60. let data = msg.data;
  61. this.setState({
  62. listState: "NO_MORE_DATA",
  63. orderNo: data,
  64. });
  65. } else {
  66. Taro.showToast({ title: msg.error[0].message, icon: "none" });
  67. this.setState({
  68. listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
  69. });
  70. }
  71. });
  72. }
  73. getList(value = this.state.value, pageNo = 1) {
  74. Taro.showLoading({ title: "加载中..." });
  75. this.setState({
  76. listState: "LOADING",
  77. });
  78. getUserByName({
  79. name: value,
  80. pageNo: pageNo,
  81. pageSize: 10,
  82. })
  83. .then((msg) => {
  84. Taro.hideLoading();
  85. if (msg.error.length === 0) {
  86. if (msg.data.totalCount === 0) {
  87. this.setState({
  88. listState: "NO_DATA",
  89. });
  90. } else if (
  91. msg.data.totalCount === this.state.list.length &&
  92. pageNo !== 1
  93. ) {
  94. Taro.showToast({ title: "没有更多数据了", icon: "none" });
  95. this.setState({
  96. listState: "NO_MORE_DATA",
  97. });
  98. } else {
  99. if (
  100. msg.data.totalCount ===
  101. (pageNo === 1
  102. ? msg.data.list
  103. : this.state.list.concat(msg.data.list)
  104. ).length
  105. ) {
  106. this.setState({
  107. listState: "NO_MORE_DATA",
  108. });
  109. }
  110. }
  111. this.setState({
  112. list: msg.data.list,
  113. pageNo: msg.data.pageNo,
  114. totalCount: msg.data.totalCount,
  115. });
  116. } else {
  117. Taro.showToast({ title: msg.error[0].message, icon: "none" });
  118. this.setState({
  119. listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
  120. });
  121. }
  122. })
  123. .catch(() => {
  124. Taro.hideLoading();
  125. this.setState({
  126. listState: "RELOAD",
  127. });
  128. });
  129. }
  130. render() {
  131. return (
  132. <>
  133. <AtSearchBar
  134. showActionButton
  135. value={this.state.value}
  136. placeholder="请输入公出企业名称"
  137. onChange={this.onChange}
  138. onActionClick={() => {
  139. this.onChange(this.state.value, false);
  140. }}
  141. onConfirm={() => {
  142. this.onChange(this.state.value, false);
  143. }}
  144. onClear={() => {
  145. this.setState(
  146. {
  147. value: "",
  148. list: [],
  149. orderNo: [],
  150. listValue: {},
  151. listVisible: false,
  152. listState: "NO_DATA",
  153. selectId: 0,
  154. pageNo: 1,
  155. totalCount: 0,
  156. },
  157. () => {
  158. this.props.onChange({}, 0);
  159. }
  160. );
  161. }}
  162. />
  163. {
  164. this.props.newList.length > 0 && this.props.type != 1 &&
  165. <View className="slist">
  166. <View style={{ fontSize: "30rpx" }}>本次公出列表</View>
  167. {
  168. this.props.newList.map((item, index) =>
  169. <View className="slitems" key={index}>
  170. <Text>{index + 1}、{item.name}</Text>
  171. <AtIcon value='close' size='18'
  172. onClick={() => {
  173. let list = this.props.newList
  174. for (var i = 0; i < list.length; i++) {
  175. if (list[i].id == item.id) {
  176. list.splice(i, 1)
  177. this.setState({
  178. newList: list
  179. })
  180. }
  181. }
  182. }}
  183. />
  184. </View>
  185. )
  186. }
  187. <View className="cltips">增加企业:搜索增加更多企业</View>
  188. <View className="cltips">删除企业:点击“X”删除公出列表</View>
  189. </View>
  190. }
  191. {
  192. this.props.jsList.length > 0 && this.props.type == 1 &&
  193. <View className="slist">
  194. <View style={{ fontSize: "30rpx" }}>本次公出列表</View>
  195. {
  196. this.props.jsList.map((item, index) =>
  197. <View className="slitems" key={index}>
  198. <Text>{index + 1}、{item.name}{!!item.contractNo && `(${item.contractNo})`}</Text>
  199. <AtIcon value='close' size='18'
  200. onClick={() => {
  201. let list = this.props.jsList
  202. for (var i = 0; i < list.length; i++) {
  203. if (list[i].id == item.id) {
  204. list.splice(i, 1)
  205. this.setState({
  206. jsList: list
  207. })
  208. }
  209. }
  210. }}
  211. />
  212. </View>
  213. )
  214. }
  215. <View className="cltips">增加企业:搜索增加更多企业</View>
  216. <View className="cltips">删除企业:点击“X”删除公出列表</View>
  217. </View>
  218. }
  219. <View>
  220. {this.props.type == 0 || this.props.type == 2 ? (
  221. <View>
  222. {" "}
  223. {this.state.list.map((v, k) => (
  224. <View
  225. style={{
  226. padding: "10px",
  227. display: "flex",
  228. flexFlow: "row",
  229. alignItems: "center",
  230. justifyContent: "space-between",
  231. borderBottom: "1px #ece6e6 solid",
  232. }}
  233. key={k}
  234. onClick={() => {
  235. let list = this.props.newList
  236. for (var i = 0; i < list.length; i++) {
  237. if (list[i].id == v.id) {
  238. Taro.showToast({
  239. title: "该企业已在公出列表中",
  240. icon: 'none'
  241. })
  242. return
  243. }
  244. }
  245. list.push(v)
  246. this.setState({
  247. newList: list
  248. })
  249. // this.setState({
  250. // selectId: v.id,
  251. // });
  252. // this.getByUid(v)
  253. // this.props.onChange({ uid: v.id, nickname: v.name }, 0);
  254. }}
  255. >
  256. <View style={{ fontSize: "15px" }}>{v.name}</View>
  257. {this.state.selectId === v.id ? (
  258. <Icon size="20" type="success_no_circle" />
  259. ) : null}
  260. </View>
  261. ))}{" "}
  262. <ListBottomStart
  263. type="pagination"
  264. pageSize={10}
  265. state={this.state.listState}
  266. total={this.state.totalCount}
  267. current={this.state.pageNo}
  268. onPageChange={(type, current) => {
  269. this.getList(this.state.value, current);
  270. }}
  271. reload={() => {
  272. this.getList(this.state.value);
  273. }}
  274. />{" "}
  275. </View>
  276. ) : !this.state.listVisible ? (
  277. <View>
  278. {this.state.list.map((v, k) => (
  279. <View
  280. style={{
  281. padding: "10px",
  282. display: "flex",
  283. flexFlow: "row",
  284. alignItems: "center",
  285. justifyContent: "space-between",
  286. borderBottom: "1px #ece6e6 solid",
  287. }}
  288. key={k}
  289. onClick={() => {
  290. let select = 0
  291. if (this.props.jsList.length == 0) {
  292. select = 0
  293. }
  294. for (var i = 0; i < this.props.jsList.length; i++) {
  295. if (!!this.props.jsList[i].contractNo) {
  296. select = 1
  297. }
  298. }
  299. if (select == 0) {
  300. this.setState({
  301. listVisible: true,
  302. listValue: v,
  303. });
  304. this.getByUid(v);
  305. } else {
  306. let list = this.props.jsList
  307. for (var i = 0; i < list.length; i++) {
  308. if (list[i].id == v.id) {
  309. Taro.showToast({
  310. title: "该企业已在公出列表中",
  311. icon: 'none'
  312. })
  313. return
  314. }
  315. }
  316. list.push(v)
  317. this.setState({
  318. jsList: list
  319. })
  320. }
  321. // this.setState({
  322. // // selectId:v.id
  323. // listValue: v,
  324. // listVisible: true,
  325. // });
  326. // this.getByUid(v);
  327. // this.props.onVisible()
  328. // this.props.onChange({uid:v.id,nickname:v.name});
  329. }}
  330. >
  331. <View style={{ fontSize: "15px" }}>{v.name}</View>
  332. {this.state.selectId === v.id ? (
  333. <Icon size="20" type="success_no_circle" />
  334. ) : null}
  335. </View>
  336. ))}{" "}
  337. <ListBottomStart
  338. type="pagination"
  339. pageSize={10}
  340. state={this.state.listState}
  341. total={this.state.totalCount}
  342. current={this.state.pageNo}
  343. onPageChange={(type, current) => {
  344. this.getList(this.state.value, current);
  345. }}
  346. reload={() => {
  347. this.getList(this.state.value);
  348. }}
  349. />{" "}
  350. </View>
  351. ) : (
  352. ""
  353. )}
  354. {this.state.listVisible && this.props.type == 1 ? (
  355. <View>
  356. <AtListItem
  357. title={this.state.listValue.name}
  358. arrow="right"
  359. iconInfo={{ size: 25, color: "#000000", value: "bookmark" }}
  360. />
  361. <View>
  362. {this.state.orderNo.length > 0 ? (
  363. <View>
  364. {" "}
  365. {this.state.orderNo.map((v, k) => (
  366. <View
  367. key={k}
  368. style={{
  369. display: "flex",
  370. justifyContent: " center",
  371. marginBottom: "20px",
  372. }}
  373. >
  374. 编号:<View>{v.contractNo}</View>
  375. <View
  376. style={{
  377. width: "60px",
  378. height: "24px",
  379. backgroundColor: "#5599FF",
  380. borderRadius: "15px",
  381. textAlign: "center",
  382. lineHeight: "24px",
  383. marginLeft: "20px",
  384. color: "white",
  385. }}
  386. circle
  387. onClick={() => {
  388. this.setState({
  389. listVisible: false,
  390. });
  391. v.id = this.state.listValue.id;
  392. v.name = this.state.listValue.name;
  393. let list = this.props.jsList
  394. list.push(v)
  395. this.setState({
  396. jsList: list
  397. })
  398. // this.props.onChange(
  399. // {
  400. // uids: v.id,
  401. // userNames: v.name,
  402. // orderNo: v.orderNo,
  403. // contractNo: v.contractNo,
  404. // },
  405. // 1
  406. // );
  407. // Taro.eventCenter.trigger('enterprise', v)
  408. }}
  409. >
  410. 选择
  411. </View>
  412. </View>
  413. ))}
  414. <View
  415. style={{ color: "red", width: "260px", margin: "0 auto" }}
  416. >
  417. 注:请选择正确的派单编号!公出信息将统计至对应的订单中。
  418. </View>
  419. </View>
  420. ) : (
  421. <View style={{ color: "red" }}>
  422. 该企业暂无订单,无法技术公出!请联系营销员查询派单情况
  423. </View>
  424. )}
  425. </View>
  426. </View>
  427. ) : (
  428. ""
  429. )}
  430. </View>
  431. </>
  432. );
  433. }
  434. }
  435. export default Enterprise;