123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453 |
- import React, { Component } from "react";
- import { View, Text, Icon } from "@tarojs/components";
- import { getUserByName, getOrderByUid } from "../../utils/servers/servers";
- import { AtSearchBar, AtPagination, AtListItem, AtIcon, AtButton } from "taro-ui";
- import "taro-ui/dist/style/components/search-bar.scss";
- import "taro-ui/dist/style/components/button.scss";
- import "taro-ui/dist/style/components/list.scss";
- import "taro-ui/dist/style/components/icon.scss";
- import "taro-ui/dist/style/components/pagination.scss";
- import "./index.less";
- import ListBottomStart from "../../components/common/listBottomStart";
- import Taro from "@tarojs/taro";
- class Enterprise extends Component {
- constructor(props) {
- super(props);
- this.state = {
- value: "",
- list: [],
- listState: "NO_DATA",
- selectId: 0,
- pageNo: 1,
- listVisible: false,
- listValue: {},
- orderNo: [],
- visibles: true,
- };
- this.onChange = this.onChange.bind(this);
- }
- onChange(value, lv = true) {
- this.setState({
- value,
- });
- if (value.length < 2 && !lv) {
- Taro.showToast({ title: "最少输入两个字符", icon: "none" });
- return;
- }
- if (value.length < 4 && lv) {
- return;
- }
- this.getList(value);
- }
- componentWillUnmount() {
- this.setState({
- value: "",
- list: [],
- listState: "NO_DATA",
- selectId: 0,
- pageNo: 1,
- totalCount: 0,
- });
- }
- getByUid(val) {
- this.setState({
- listState: "LOADING",
- });
- getOrderByUid({
- uid: val.id,
- }).then((msg) => {
- if (msg.error.length === 0) {
- let data = msg.data;
- this.setState({
- listState: "NO_MORE_DATA",
- orderNo: data,
- });
- } else {
- Taro.showToast({ title: msg.error[0].message, icon: "none" });
- this.setState({
- listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
- });
- }
- });
- }
- getList(value = this.state.value, pageNo = 1) {
- Taro.showLoading({ title: "加载中..." });
- this.setState({
- listState: "LOADING",
- });
- getUserByName({
- name: value,
- pageNo: pageNo,
- pageSize: 10,
- })
- .then((msg) => {
- Taro.hideLoading();
- if (msg.error.length === 0) {
- if (msg.data.totalCount === 0) {
- this.setState({
- listState: "NO_DATA",
- });
- } else if (
- msg.data.totalCount === this.state.list.length &&
- pageNo !== 1
- ) {
- Taro.showToast({ title: "没有更多数据了", icon: "none" });
- this.setState({
- listState: "NO_MORE_DATA",
- });
- } else {
- if (
- msg.data.totalCount ===
- (pageNo === 1
- ? msg.data.list
- : this.state.list.concat(msg.data.list)
- ).length
- ) {
- this.setState({
- listState: "NO_MORE_DATA",
- });
- }
- }
- this.setState({
- list: msg.data.list,
- pageNo: msg.data.pageNo,
- totalCount: msg.data.totalCount,
- });
- } else {
- Taro.showToast({ title: msg.error[0].message, icon: "none" });
- this.setState({
- listState: msg.error[0].field === "403" ? "NO_DATA" : "RELOAD",
- });
- }
- })
- .catch(() => {
- Taro.hideLoading();
- this.setState({
- listState: "RELOAD",
- });
- });
- }
- render() {
- return (
- <>
- <AtSearchBar
- showActionButton
- value={this.state.value}
- placeholder="请输入公出企业名称"
- onChange={this.onChange}
- onActionClick={() => {
- this.onChange(this.state.value, false);
- }}
- onConfirm={() => {
- this.onChange(this.state.value, false);
- }}
- onClear={() => {
- this.setState(
- {
- value: "",
- list: [],
- orderNo: [],
- listValue: {},
- listVisible: false,
- listState: "NO_DATA",
- selectId: 0,
- pageNo: 1,
- totalCount: 0,
- },
- () => {
- this.props.onChange({}, 0);
- }
- );
- }}
- />
- {
- this.props.newList.length > 0 && this.props.type != 1 &&
- <View className="slist">
- <View style={{ fontSize: "30rpx" }}>本次公出列表</View>
- {
- this.props.newList.map((item, index) =>
- <View className="slitems" key={index}>
- <Text>{index + 1}、{item.name}</Text>
- <AtIcon value='close' size='18'
- onClick={() => {
- let list = this.props.newList
- for (var i = 0; i < list.length; i++) {
- if (list[i].id == item.id) {
- list.splice(i, 1)
- this.setState({
- newList: list
- })
- }
- }
- }}
- />
- </View>
- )
- }
- <View className="cltips">增加企业:搜索增加更多企业</View>
- <View className="cltips">删除企业:点击“X”删除公出列表</View>
- </View>
- }
- {
- this.props.jsList.length > 0 && this.props.type == 1 &&
- <View className="slist">
- <View style={{ fontSize: "30rpx" }}>本次公出列表</View>
- {
- this.props.jsList.map((item, index) =>
- <View className="slitems" key={index}>
- <Text>{index + 1}、{item.name}{!!item.contractNo && `(${item.contractNo})`}</Text>
- <AtIcon value='close' size='18'
- onClick={() => {
- let list = this.props.jsList
- for (var i = 0; i < list.length; i++) {
- if (list[i].id == item.id) {
- list.splice(i, 1)
- this.setState({
- jsList: list
- })
- }
- }
- }}
- />
- </View>
- )
- }
- <View className="cltips">增加企业:搜索增加更多企业</View>
- <View className="cltips">删除企业:点击“X”删除公出列表</View>
- </View>
- }
- <View>
- {this.props.type == 0 || this.props.type == 2 ? (
- <View>
- {" "}
- {this.state.list.map((v, k) => (
- <View
- style={{
- padding: "10px",
- display: "flex",
- flexFlow: "row",
- alignItems: "center",
- justifyContent: "space-between",
- borderBottom: "1px #ece6e6 solid",
- }}
- key={k}
- onClick={() => {
- let list = this.props.newList
- for (var i = 0; i < list.length; i++) {
- if (list[i].id == v.id) {
- Taro.showToast({
- title: "该企业已在公出列表中",
- icon: 'none'
- })
- return
- }
- }
- list.push(v)
- this.setState({
- newList: list
- })
- // this.setState({
- // selectId: v.id,
- // });
- // this.getByUid(v)
- // this.props.onChange({ uid: v.id, nickname: v.name }, 0);
- }}
- >
- <View style={{ fontSize: "15px" }}>{v.name}</View>
- {this.state.selectId === v.id ? (
- <Icon size="20" type="success_no_circle" />
- ) : null}
- </View>
- ))}{" "}
- <ListBottomStart
- type="pagination"
- pageSize={10}
- state={this.state.listState}
- total={this.state.totalCount}
- current={this.state.pageNo}
- onPageChange={(type, current) => {
- this.getList(this.state.value, current);
- }}
- reload={() => {
- this.getList(this.state.value);
- }}
- />{" "}
- </View>
- ) : !this.state.listVisible ? (
- <View>
- {this.state.list.map((v, k) => (
- <View
- style={{
- padding: "10px",
- display: "flex",
- flexFlow: "row",
- alignItems: "center",
- justifyContent: "space-between",
- borderBottom: "1px #ece6e6 solid",
- }}
- key={k}
- onClick={() => {
- let select = 0
- if (this.props.jsList.length == 0) {
- select = 0
- }
- for (var i = 0; i < this.props.jsList.length; i++) {
- if (!!this.props.jsList[i].contractNo) {
- select = 1
- }
- }
- if (select == 0) {
- this.setState({
- listVisible: true,
- listValue: v,
- });
- this.getByUid(v);
- } else {
- let list = this.props.jsList
- for (var i = 0; i < list.length; i++) {
- if (list[i].id == v.id) {
- Taro.showToast({
- title: "该企业已在公出列表中",
- icon: 'none'
- })
- return
- }
- }
- list.push(v)
- this.setState({
- jsList: list
- })
- }
- // this.setState({
- // // selectId:v.id
- // listValue: v,
- // listVisible: true,
- // });
- // this.getByUid(v);
- // this.props.onVisible()
- // this.props.onChange({uid:v.id,nickname:v.name});
- }}
- >
- <View style={{ fontSize: "15px" }}>{v.name}</View>
- {this.state.selectId === v.id ? (
- <Icon size="20" type="success_no_circle" />
- ) : null}
- </View>
- ))}{" "}
- <ListBottomStart
- type="pagination"
- pageSize={10}
- state={this.state.listState}
- total={this.state.totalCount}
- current={this.state.pageNo}
- onPageChange={(type, current) => {
- this.getList(this.state.value, current);
- }}
- reload={() => {
- this.getList(this.state.value);
- }}
- />{" "}
- </View>
- ) : (
- ""
- )}
- {this.state.listVisible && this.props.type == 1 ? (
- <View>
- <AtListItem
- title={this.state.listValue.name}
- arrow="right"
- iconInfo={{ size: 25, color: "#000000", value: "bookmark" }}
- />
- <View>
- {this.state.orderNo.length > 0 ? (
- <View>
- {" "}
- {this.state.orderNo.map((v, k) => (
- <View
- key={k}
- style={{
- display: "flex",
- justifyContent: " center",
- marginBottom: "20px",
- }}
- >
- 编号:<View>{v.contractNo}</View>
- <View
- style={{
- width: "60px",
- height: "24px",
- backgroundColor: "#5599FF",
- borderRadius: "15px",
- textAlign: "center",
- lineHeight: "24px",
- marginLeft: "20px",
- color: "white",
- }}
- circle
- onClick={() => {
- this.setState({
- listVisible: false,
- });
- v.id = this.state.listValue.id;
- v.name = this.state.listValue.name;
- let list = this.props.jsList
- list.push(v)
- this.setState({
- jsList: list
- })
- // this.props.onChange(
- // {
- // uids: v.id,
- // userNames: v.name,
- // orderNo: v.orderNo,
- // contractNo: v.contractNo,
- // },
- // 1
- // );
- // Taro.eventCenter.trigger('enterprise', v)
- }}
- >
- 选择
- </View>
- </View>
- ))}
- <View
- style={{ color: "red", width: "260px", margin: "0 auto" }}
- >
- 注:请选择正确的派单编号!公出信息将统计至对应的订单中。
- </View>
- </View>
- ) : (
- <View style={{ color: "red" }}>
- 该企业暂无订单,无法技术公出!请联系营销员查询派单情况
- </View>
- )}
- </View>
- </View>
- ) : (
- ""
- )}
- </View>
- </>
- );
- }
- }
- export default Enterprise;
|