123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819 |
- import React, { Component } from "react";
- import Taro from "@tarojs/taro";
- import { Button, Text, View } from "@tarojs/components";
- import dayjs from "dayjs";
- import "./index.less";
- import ImagePicker from "../../components/common/imagePicker";
- import { AtButton, AtTextarea, AtIcon, AtCalendar } from "taro-ui";
- import {
- addPublicRelease,
- getWorkingHoursList,
- checkOrderNoDuration,
- getRestrictProjectUser,
- } from "../../utils/servers/servers";
- import {
- getHours,
- getNumHourse,
- getUserWordTimes,
- getNameList,
- isPublicity,
- } from "../../utils/tools";
- import "taro-ui/dist/style/components/form.scss";
- import "taro-ui/dist/style/components/button.scss";
- import "taro-ui/dist/style/components/loading.scss";
- import "taro-ui/dist/style/components/icon.scss";
- import "taro-ui/dist/style/components/icon.scss";
- import "taro-ui/dist/style/components/textarea.scss";
- import "taro-ui/dist/style/components/calendar.scss";
- import "./publicContent.less";
- import InquiryModal from "../../components/common/inquiryModal"; //提示弹窗
- import UserQuery from "../../components/common/userquery"; //选择协单人弹窗
- class PublicContent extends Component {
- constructor(props) {
- super(props);
- this.state = {
- rangeStartVal: "",
- rangeEndVal: "",
- rangeEndMinuteVal: "",
- rangeStartMinuteVal: "",
- reason: "",
- plan: "",
- expectedEffect: "",
- imgs: [],
- validDates: [],
- totalDuration: 0,
- loading: false,
- workTypeList: [],
- workType: 0,
- isPickerRender: false,
- coorderList: [],
- cList: [],
- popup: false,
- isNewshow: false,
- };
- this.onSubmit = this.onSubmit.bind(this);
- this.selectArrder = this.selectArrder.bind(this);
- this.onChange = this.onChange.bind(this);
- this.getWorkingHoursList = this.getWorkingHoursList.bind(this);
- this.onPickerHide = this.onPickerHide.bind(this);
- this.onSetPickerTime = this.onSetPickerTime.bind(this);
- this.getNumHourse = this.getNumHourse.bind(this);
- }
- componentDidMount() {
- Taro.eventCenter.on("result", () => {
- this.imagePickerRef && this.imagePickerRef.clear();
- this.setState({
- rangeStartVal: "",
- rangeEndVal: "",
- rangeEndMinuteVal: "",
- rangeStartMinuteVal: "",
- reason: "",
- plan: "",
- expectedEffect: "",
- imgs: [],
- validDates: [],
- totalDuration: 0,
- loading: false,
- });
- });
- this.getWorkingHoursList();
- }
- getNumHourse(startTime, endTime) {
- this.setState({
- totalDuration: getNumHourse(
- startTime,
- endTime,
- this.state.validDates.length
- ),
- });
- }
- // 增加 省 市 区拼接,地址带区域的则把区域去掉
- getArea() {
- const { selectArrderLocation } = this.props
- let pcd = selectArrderLocation.province + selectArrderLocation.city + selectArrderLocation.district
- let str = selectArrderLocation.name
- let index = str.lastIndexOf("区")
- let name = str.substring(index + 1)
- return pcd + name
- }
- onSubmit() {
- let objectType = this.props.enterpriseInfor.id.indexOf(',') > -1 ? 1 : 0
- this.setState({
- loading: true,
- });
- let datas = {
- objectType,
- uids: this.props.enterpriseInfor.id,
- releaseStarts: this.state.rangeStartMinuteVal,
- releaseEnds: this.state.rangeEndMinuteVal,
- remarks: this.state.reason,
- districtName: this.getArea(),
- longitude: this.props.selectArrderLocation.longitude,
- latitude: this.props.selectArrderLocation.latitude,
- annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
- duration: this.state.totalDuration,
- type: this.props.enterpriseInfor.type,
- validDate: JSON.stringify(this.state.validDates),
- assist: this.state.coorderList.length === 0 ? 0 : 1,
- assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
- assistAidName: this.state.coorderList.length === 0 ? "" : getNameList(this.state.coorderList, this.state.cList).join(","),
- };
- if (this.props.enterpriseInfor.type == 0) {
- datas = {
- ...datas,
- ...{
- plan: this.state.plan,
- expectedEffect: this.state.expectedEffect,
- }
- };
- } else if (this.props.enterpriseInfor.type == 2) {
- datas = datas;
- } else {
- datas = {
- ...datas,
- ...{
- plan: this.state.plan,
- expectedEffect: this.state.expectedEffect,
- orderNo: this.props.enterpriseInfor.orderNo,
- }
- };
- }
- addPublicRelease(datas)
- .then((v) => {
- this.setState({
- loading: false,
- });
- let newData = {
- ...v.data,
- ...{
- isShow: this.props.enterpriseInfor.type == 0
- ? isPublicity(this.props.enterpriseInfor.userList, 0) : this.props.enterpriseInfor.type == 1
- ? this.state.isNewshow : false,
- list: isPublicity(this.props.enterpriseInfor.userList, 1)
- }
- }
- if (v.error.length === 0) {
- Taro.eventCenter.trigger("publicContent", newData);
- } else {
- Taro.showToast({
- title: v.error[0].message,
- icon: "none",
- });
- }
- })
- .catch(() => {
- this.setState({
- loading: false,
- });
- });
- }
- selectArrder() {
- const key = "AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT"; //使用在腾讯位置服务申请的key
- const referer = "科德打卡定位"; //调用插件的app的名称
- const category = "公司企业,房产小区";
- Taro.navigateTo({
- url:
- "plugin://chooseLocation/index?key=" +
- key +
- "&referer=" +
- referer +
- "&category=" +
- category,
- });
- }
- onChange(value, type) {
- let arr = this.state.imgs.concat([]);
- if (type === "add") {
- arr.push(value);
- } else if (type === "remove") {
- arr.splice(value, 1);
- }
- this.setState({
- imgs: arr,
- });
- }
- getWorkingHoursList() {
- getWorkingHoursList({})
- .then((v) => {
- if (v.error.length === 0) {
- let obj = Taro.getStorageSync("userInfor");
- let index = v.data.findIndex(
- (value) => value.type === obj.workTimeInfor.type
- );
- this.setState({
- workType: index !== -1 ? index : 0,
- });
- this.setState({
- workTypeList: v.data,
- });
- } else {
- Taro.showToast({
- title: v.error[0].message,
- icon: "none",
- });
- }
- })
- .catch((err) => {
- //console.log(err);
- });
- }
- onPickerHide() {
- this.setState({
- isPickerRender: false,
- });
- }
- onSetPickerTime(val) {
- let data = val.detail;
- this.setState({
- rangeStartMinuteVal: data.selectStartTime,
- rangeEndMinuteVal: data.selectEndTime,
- });
- let arr = [];
- if (data.startTime && data.endTime) {
- let a = dayjs(data.startTime);
- let b = dayjs(data.endTime);
- let num;
- if (a.hour() <= b.hour()) {
- num = b.diff(a, "day") + 1;
- } else {
- num = b.diff(a, "day") + 2;
- }
- let strAdd = data.startTime;
- for (let i = 0; i < num; i++) {
- let time = dayjs(strAdd).add(i, "days").format("YYYY-MM-DD");
- arr.push({ value: time });
- }
- }
- this.setState({
- rangeEndVal: dayjs(data.endTime).format("YYYY-MM-DD"),
- rangeStartVal: dayjs(data.startTime).format("YYYY-MM-DD"),
- validDates: arr,
- }, () => {
- let a1 = dayjs(dayjs(data.endTime).format("YYYY-MM-DD HH:mm:ss"));
- let b1 = dayjs(dayjs(data.startTime).format("YYYY-MM-DD HH:mm:ss"));
- this.getNumHourse(b1, a1);
- });
- }
- // 新增技术协单
- setList(list, arr) {
- this.setState({
- cList: list,
- coorderList: arr
- })
- }
- // 弹窗开关
- popupClick() {
- this.setState({
- popup: !this.state.popup
- })
- }
- // 技术公出逻辑判断
- checkOrderNoDuration() {
- const _this = this
- if (this.state.totalDuration == 0) {
- Taro.showToast({ title: "请选择公出时间", icon: "none" });
- return
- }
- checkOrderNoDuration({
- duration: this.state.totalDuration,
- orderNo: this.props.enterpriseInfor.orderNo,
- })
- .then((v) => {
- if (v.error.length == 0) {
- if (!v.data.code) {
- let obj = v.data.data
- _this.setState({
- isNewshow: true,
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: <View style={{ padding: "10px 15px" }}>
- <View>您准备公出<Text style={{ color: 'red' }}>{obj.userName}({obj.contractNo})</Text>,</View>
- <View>总计公出:<Text style={{ color: 'red' }}>{obj.peopleCount}人,{obj.timesCount}次,{obj.durationCount}时</Text>。</View>
- <View>
- <Text style={{ color: 'red' }}>
- 本合同{["低于1万元以下", "在1~3万", "在3~5万", "在5~10万", "在10万及以上"][obj.amountType]},
- {["原则上技术人员不可下户", `本次申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, `本次公出申请,已超出${obj.durationMax}小时`, ""][obj.amountType]}
- </Text>。
- </View>
- <View>如需公出,需<Text style={{ color: 'red' }}>{obj.adminName}</Text>审核。</View>
- <View>请确定,是否发起公出申请!</View>
- </View>,
- inquiryFn: () => {
- _this.onSubmit();
- },
- })
- } else {
- _this.setState({
- isNewshow: false,
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: "您确定要提交此申请吗?",
- inquiryFn: () => {
- _this.onSubmit();
- },
- })
- }
- } else {
- Taro.showToast({
- title: v.error[0].message,
- icon: "none",
- });
- }
- })
- .catch(() => {
- this.setState({
- loading: false,
- });
- });
- }
- // 业务公出限定项目
- getRestrictProjectUser() {
- const _this = this
- getRestrictProjectUser({
- ids: this.props.enterpriseInfor.id,
- })
- .then((v) => {
- if (v.error.length === 0) {
- let arr = []
- if (v.data && v.data.length > 0) {
- v.data.forEach(e => {
- e.type == 1 && arr.push(e["userName"])
- })
- }
- this.setState({
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: arr.length > 0
- ? <View style={{ color: 'red' }}>您公出的{arr.toString()},为限定项目的企业,建议您由经理协助公出恰谈!</View>
- : "您确定要提交此申请吗?",
- inquiryFn: () => {
- _this.onSubmit();
- },
- });
- } else {
- Taro.showToast({
- title: v.error[0].message,
- icon: "none",
- });
- }
- })
- .catch((err) => {
- });
- }
- render() {
- const { cList, coorderList, popup } = this.state
- const info = Taro.getStorageSync("userInfor");
- return (
- <View className="publicContent">
- <View className="formItem">
- <View className="formName">公出企业:</View>
- <View className="formValue" style={{ flexDirection: "column", alignItems: "flex-end" }}>
- {
- !!this.props.enterpriseInfor.name && this.props.enterpriseInfor.name.indexOf(',') > -1
- ? this.props.enterpriseInfor.name.split(',')?.map((item, index) => <View key={index}>{item}</View>)
- : this.props.enterpriseInfor.name
- }
- </View>
- </View>
- {
- (this.props.enterpriseInfor.type == 0 && isPublicity(this.props.enterpriseInfor.userList, 0)) &&
- <View className="othersTips">您正在申请公出他人企业:需跟单员“
- {isPublicity(this.props.enterpriseInfor.userList, 1).toString()}
- ”审核同意,您才可公出!</View>
- }
- <View className="formItem">
- <View className="formName">公出类型:</View>
- <View className="formValue">
- {this.props.enterpriseInfor.type == 0
- ? "业务公出" : this.props.enterpriseInfor.type == 1
- ? "技术公出" : this.props.enterpriseInfor.type == 2
- ? "行政公出" : this.props.enterpriseInfor.type == 3
- ? "技术协单" : ""}
- </View>
- </View>
- {this.props.enterpriseInfor.contractNo ? (
- <View className="formItem">
- <View className="formName">合同编号:</View>
- <View className="formValue">
- {this.props.enterpriseInfor.contractNo}
- </View>
- </View>
- ) : (
- ""
- )}
- <View className="formItem">
- <View className="formName">作息时间类型:</View>
- <View className="formValue">
- {this.state.workTypeList[this.state.workType]
- ? this.state.workTypeList[this.state.workType].name
- : ""}
- </View>
- </View>
- <View className="formItem">
- <View className="formName">公出时间:</View>
- <View className="formValue">
- <View
- className="time"
- onClick={() => {
- this.setState({
- isPickerRender: true,
- });
- }}
- >
- {this.state.rangeStartMinuteVal &&
- this.state.rangeEndMinuteVal ? (
- <View className="timeContent">
- <View>开始时间:{this.state.rangeStartMinuteVal}</View>
- <View>结束时间:{this.state.rangeEndMinuteVal}</View>
- </View>
- ) : (
- "请选择公出时间"
- )}
- </View>
- <timePicker
- config={{
- endDate: true,
- column: "minute",
- dateLimit: false,
- // initStartTime: "2019-01-01 12:32:44", //默认开始时间
- // initEndTime: "2019-12-01 12:32:44", //默认结束时间
- limitStartTime: dayjs()
- .subtract(3, "year")
- .format("YYYY-MM-DD HH:mm:ss"),
- limitEndTime: dayjs()
- .add(3, "year")
- .format("YYYY-MM-DD HH:mm:ss"),
- }}
- isPartition
- pickerShow={this.state.isPickerRender}
- onconditionaljudgment={(v) => {
- let a = dayjs(
- dayjs(v.detail.endTime)
- .second(0)
- .format("YYYY-MM-DD HH:mm:ss")
- );
- let b = dayjs(dayjs().second(0).format("YYYY-MM-DD HH:mm:ss"));
- if (a.isBefore(b)) {
- Taro.showToast({
- title: "结束时间不能小于当前时间",
- icon: "none",
- });
- v.detail.setLv(false);
- }
- }}
- onhidepicker={() => {
- this.onPickerHide();
- }}
- onsetpickertime={(v) => {
- this.onSetPickerTime(v);
- }}
- />
- </View>
- </View>
- <View className="formItem">
- <View className="formName">总时长:</View>
- <View className="formValue">{this.state.totalDuration}小时</View>
- </View>
- {this.state.validDates.length !== 0 ? (
- <View
- className="formItem"
- style={{ display: "block", paddingTop: "15px" }}
- >
- <View className="formName">
- <View>去除放假时间:</View>
- </View>
- <View className="tips">
- 绿色方块为公出时间,长按即可去除放假时间
- </View>
- <AtCalendar
- currentDate={this.state.rangeStartVal}
- minDate={this.state.rangeStartVal}
- maxDate={this.state.rangeEndVal}
- isSwiper={false}
- validDates={this.state.validDates}
- onDayLongClick={(item) => {
- if (
- !(
- dayjs(item.value).isSame(this.state.rangeStartVal) ||
- dayjs(item.value).isSame(this.state.rangeEndVal)
- )
- ) {
- if (
- !(
- dayjs(item.value).isAfter(this.state.rangeStartVal) &&
- dayjs(item.value).isBefore(this.state.rangeEndVal)
- )
- ) {
- return;
- }
- } else {
- Taro.showToast({
- title: "开始结束时间不能取消",
- icon: "none",
- });
- return;
- }
- let index = this.state.validDates.findIndex((v) => {
- let lv = dayjs(v.value).isSame(item.value);
- return lv;
- });
- const { start, end } = getUserWordTimes();
- let totalDuration = getHours(
- dayjs().format("YYYY-MM-DD") + start,
- dayjs(dayjs().format("YYYY-MM-DD") + end)
- ); //一天工作时长
- if (index < 0) {
- let arr = item.value.split("-");
- this.state.validDates.push({ value: arr.join("-") });
- this.setState({
- validDates: this.state.validDates,
- totalDuration: this.state.totalDuration + totalDuration,
- });
- } else {
- this.state.validDates.splice(index, 1);
- this.setState({
- validDates: this.state.validDates,
- totalDuration: this.state.totalDuration - totalDuration,
- });
- }
- }}
- />
- </View>
- ) : null}
- <View className="formItem" style={{ paddingBottom: 0 }}>
- <View className="formName">公出地点:</View>
- <View className="formValue" onClick={this.selectArrder}>
- <Text className="formValueText">
- {this.props.selectArrderLocation.name}
- </Text>
- <AtIcon value="chevron-right" size="30" color="#bbbbbb" />
- </View>
- </View>
- <View className="tips">
- 以地图为中心100米范围为可打卡区域,移动红标只需要拖动地图即可
- </View>
- {
- this.props.enterpriseInfor.type === 0 &&
- <View className="formItems" style={{ paddingBottom: 0, marginTop: 10 }}>
- <View className="formNames">技术协单: </View>
- <View className="formValues">
- {
- cList.length == 0
- ? <Text>无</Text>
- : cList.map((item, index) =>
- <View className="fitems" key={index}>
- {item.name}
- <View className="fclose"
- onClick={() => {
- coorderList.includes(item.id) &&
- (
- cList.splice(coorderList.indexOf(item.id), 1),
- coorderList.splice(coorderList.indexOf(item.id), 1)
- )
- this.setState({
- cList,
- coorderList,
- })
- }}
- ><AtIcon value="close-circle" size="15" color="#bbbbbb" /></View>
- </View>
- )
- }
- {cList.length < 5 && <Button className="addbuttom" type='primary' onClick={this.popupClick.bind(this)}>新增技术协单</Button>}
- </View>
- </View>
- }
- {
- this.props.enterpriseInfor.type === 0 &&
- <View className="tips">
- 请与技术协商后,再发起协单,协单将统计公出成本等
- </View>
- }
- <View
- className="formItem"
- style={{ display: "block", paddingTop: "15px" }}
- >
- {/* 公出目标 */}
- <View className="formName">
- <Text><Text style={{ color: "red" }}>*</Text>公出目标:</Text>
- <View
- className="formValue"
- style={{ paddingTop: "10px", textAlign: "left" }}
- >
- <AtTextarea
- height={46}
- value={this.state.reason}
- onChange={(v) => {
- this.setState({
- reason: v,
- });
- }}
- maxLength={200}
- placeholder={
- this.props.enterpriseInfor.type == 2
- ? "详细说明本次公出的内容,预计完成的内容"
- : "本次公出目标,谈的思路与步骤?"
- }
- />
- </View>
- </View>
- {/* 公出计划 */}
- {this.props.enterpriseInfor.type != 2 && (
- <View className="formName">
- <Text><Text style={{ color: "red" }}>*</Text>公出计划:</Text>
- <View
- className="formValue"
- style={{ paddingTop: "10px", textAlign: "left" }}
- >
- <AtTextarea
- height={46}
- value={this.state.plan}
- onChange={(v) => {
- this.setState({
- plan: v,
- });
- }}
- maxLength={200}
- placeholder="本次公出准备工作"
- />
- </View>
- </View>
- )}
- {/* 预计效果 */}
- {this.props.enterpriseInfor.type != 2 && (
- <View className="formName">
- <Text><Text style={{ color: "red" }}>*</Text>预计效果:</Text>
- <View
- className="formValue"
- style={{ paddingTop: "10px", textAlign: "left" }}
- >
- <AtTextarea
- height={46}
- value={this.state.expectedEffect}
- onChange={(v) => {
- this.setState({
- expectedEffect: v,
- });
- }}
- maxLength={200}
- placeholder="预计本次公出效果"
- />
- </View>
- </View>
- )}
- </View>
- {/* */}
- <View className="formItem" style={{ display: "block", paddingBottom: 0 }}>
- <View className="formName">
- {this.state.totalDuration > info.workTimeInfor.minHours && <Text style={{ color: "red" }}>*</Text>}
- 附件:
- </View>
- {this.state.totalDuration > info.workTimeInfor.minHours &&
- <View className="tips">
- 请上传公出事由的凭证截图,如您与企业的对话截图等
- </View>}
- <View
- className="formValue"
- style={{ paddingTop: "10px", textAlign: "left" }}
- >
- <ImagePicker
- showAddBtn
- ref={(ref) => (this.imagePickerRef = ref)}
- url="/api/admin/release/upload"
- onChange={this.onChange}
- />
- </View>
- </View>
- <View className="operation">
- <AtButton
- disabled={this.state.loading}
- type="secondary"
- circle
- onClick={() => {
- Taro.eventCenter.trigger("enterpriseBack");
- }}
- >
- 上一步
- </AtButton>
- <AtButton
- type="primary"
- loading={this.state.loading}
- circle
- onClick={() => {
- if (this.state.loading) {
- return;
- }
- if (!this.state.rangeStartMinuteVal) {
- Taro.showToast({ title: "请选择公出时间", icon: "none" });
- return;
- }
- if (!this.state.rangeEndMinuteVal) {
- Taro.showToast({ title: "请选择公出时间", icon: "none" });
- return;
- }
- if (
- !(
- this.props.selectArrderLocation.longitude &&
- this.props.selectArrderLocation.latitude
- )
- ) {
- Taro.showToast({ title: "请选择公出地点", icon: "none" });
- return;
- }
- if (!this.state.reason) {
- Taro.showToast({ title: "请输入公出目标", icon: "none" });
- return;
- }
- if (!this.state.plan && this.props.enterpriseInfor.type != 2) {
- Taro.showToast({ title: "请输入公出计划", icon: "none" });
- return;
- }
- if (!this.state.expectedEffect && this.props.enterpriseInfor.type != 2) {
- Taro.showToast({ title: "请输入预计效果", icon: "none" });
- return;
- }
- if (this.state.totalDuration === 0) {
- Taro.showToast({
- title: "请选择公出时间,目前设置公出时间不足0.5小时",
- icon: "none",
- });
- return;
- }
- let info = Taro.getStorageSync("userInfor");
- if (this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
- Taro.showToast({ title: "请上传附件", icon: "none" });
- return
- }
- this.props.enterpriseInfor.type == 1
- ? this.checkOrderNoDuration()
- : this.props.enterpriseInfor.type == 0
- ? this.getRestrictProjectUser()
- : this.setState({
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: "您确定要提交此申请吗?",
- inquiryFn: () => {
- this.onSubmit();
- },
- });
- }}
- >
- 提交申请
- </AtButton>
- </View>
- <InquiryModal
- isOpened={this.state.isInquiryOpened}
- title={this.state.inquiryTitle}
- content={this.state.inquiryContent}
- onClose={() => {
- this.setState({
- isInquiryOpened: false,
- inquiryTitle: "",
- inquiryContent: "",
- });
- }}
- onDetermine={() => {
- this.state.inquiryFn();
- this.setState({
- isInquiryOpened: false,
- inquiryTitle: "",
- inquiryContent: "",
- inquiryFn: () => { },
- });
- }}
- />
- {popup &&
- <UserQuery
- isOpened={popup}
- onDesc={this.popupClick.bind(this)}
- cList={cList}
- selList={[]}
- coorderList={coorderList}
- setList={this.setList.bind(this)}
- />
- }
- </View>
- );
- }
- }
- export default PublicContent;
|