1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045 |
- import React, { Component } from "react";
- import Taro from "@tarojs/taro";
- import { Text, View, Button, Icon } from "@tarojs/components";
- import dayjs from "dayjs";
- import "./index.less";
- import ImagePicker from "../../components/common/imagePicker";
- import { resourceAddress } from "../../utils/config";
- import { AtButton, AtTextarea, AtIcon, AtCalendar } from "taro-ui";
- import {
- updatePublicRelease,
- getWorkingHoursList,
- addPublicRelease,
- } from "../../utils/servers/servers";
- import { getHours, getNumHourse, getUserWordTimes, getNameList, getList, isTips, } 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,
- popup: false,
- coorderList: [],
- cList: [],
- };
- 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() {
- const { dtails, again = false } = this.props
- let arr = [];
- for (let i of this.props.dtails.annexUrl) {
- arr.push(i.url.split(resourceAddress).join(""));
- }
- let list = [];
- if (!dtails.assistAid) {
- list = []
- } else {
- let a = dtails.assistAid.split(",")
- let b = dtails.assistAidName.split(",")
- for (var i = 0; i < a.length; i++) {
- list.push({
- id: a[i],
- name: b[i],
- })
- }
- }
- if (again) {
- // 再次公出详情
- this.setState({
- imgs: arr,
- totalDuration: 0,
- reason: this.props.dtails.remarks,
- validDates: [],
- rangeEndVal: '',
- rangeEndMinuteVal: '',
- rangeStartVal: '',
- rangeStartMinuteVal: '',
- plan: this.props.dtails.plan || "",
- expectedEffect: this.props.dtails.expectedEffect || "",
- cList: list,
- coorderList: !dtails.assistAid ? [] : dtails.assistAid.split(","),
- })
- } else {
- // 编辑详情
- this.setState({
- imgs: arr,
- totalDuration: this.props.dtails.duration,
- reason: this.props.dtails.remarks,
- validDates: JSON.parse(this.props.dtails.validDate),
- rangeEndVal: dayjs(this.props.dtails.releaseEnds).format("YYYY-MM-DD"),
- rangeEndMinuteVal: dayjs(this.props.dtails.releaseEnds).format("YYYY-MM-DD HH:mm:ss"),
- rangeStartVal: dayjs(this.props.dtails.releaseStarts).format("YYYY-MM-DD"),
- rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format("YYYY-MM-DD HH:mm:ss"),
- plan: this.props.dtails.plan || "",
- expectedEffect: this.props.dtails.expectedEffect || "",
- cList: list,
- coorderList: !dtails.assistAid ? [] : dtails.assistAid.split(","),
- });
- }
- this.getWorkingHoursList();
- }
- componentWillUnmount() {
- this.imagePickerRef && this.imagePickerRef.clear();
- this.setState({
- rangeStartVal: "",
- rangeEndVal: "",
- rangeEndMinuteVal: "",
- rangeStartMinuteVal: "",
- reason: "",
- plan: "",
- expectedEffect: "",
- imgs: [],
- validDates: [],
- totalDuration: 0,
- loading: false,
- });
- }
- 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);
- });
- }
- getNumHourse(startTime, endTime) {
- this.setState({
- totalDuration: getNumHourse(
- startTime,
- endTime,
- this.state.validDates.length
- ),
- });
- }
- // 修改公出提交
- onSubmit() {
- const { isVerify = false } = this.props;
- let objectType = this.props.dtails.uids.indexOf(',') > -1 ? 1 : 0
- if (!this.props.dtails.uids) {
- Taro.showToast({ title: "请选择公出企业", icon: "none" });
- return;
- }
- if (!this.state.rangeStartMinuteVal) {
- Taro.showToast({ title: "请选择公出时间", icon: "none" });
- return;
- }
- if (!this.state.rangeEndMinuteVal) {
- Taro.showToast({ title: "请选择公出时间", icon: "none" });
- return;
- }
- if (
- !(this.props.locationInfor.longitude && this.props.locationInfor.latitude)
- ) {
- Taro.showToast({ title: "请选择公出地点", icon: "none" });
- return;
- }
- if (!this.state.reason) {
- Taro.showToast({ title: "请输入公出目标", icon: "none" });
- return;
- }
- if (!this.state.plan && this.props.dtails.type != 2) {
- Taro.showToast({ title: "请输入公出计划", icon: "none" });
- return;
- }
- if (!this.state.expectedEffect && this.props.dtails.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.setState({
- loading: true,
- });
- let datas;
- if (this.props.dtails.type == 0) {
- datas = {
- id: this.props.dtails.id,
- uids: this.props.dtails.uids,
- releaseStarts: this.state.rangeStartMinuteVal,
- releaseEnds: this.state.rangeEndMinuteVal,
- remarks: this.state.reason,
- plan: this.state.plan,
- expectedEffect: this.state.expectedEffect,
- districtName: this.props.locationInfor.name,
- longitude: this.props.locationInfor.longitude,
- latitude: this.props.locationInfor.latitude,
- annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
- duration: this.state.totalDuration,
- validDate: JSON.stringify(this.state.validDates),
- type: this.props.dtails.type,
- status: 1,
- 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(","),
- };
- } else if (this.props.dtails.type == 2) {
- datas = {
- id: this.props.dtails.id,
- uids: this.props.dtails.uids,
- releaseStarts: this.state.rangeStartMinuteVal,
- releaseEnds: this.state.rangeEndMinuteVal,
- remarks: this.state.reason,
- // plan: this.state.plan,
- // expectedEffect: this.state.expectedEffect,
- districtName: this.props.locationInfor.name,
- longitude: this.props.locationInfor.longitude,
- latitude: this.props.locationInfor.latitude,
- annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
- duration: this.state.totalDuration,
- validDate: JSON.stringify(this.state.validDates),
- type: this.props.dtails.type,
- orderNo: this.props.dtails.orderNo,
- status: 1,
- 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(","),
- };
- } else {
- datas = {
- id: this.props.dtails.id,
- uids: this.props.dtails.uids,
- releaseStarts: this.state.rangeStartMinuteVal,
- releaseEnds: this.state.rangeEndMinuteVal,
- remarks: this.state.reason,
- plan: this.state.plan,
- expectedEffect: this.state.expectedEffect,
- districtName: this.props.locationInfor.name,
- longitude: this.props.locationInfor.longitude,
- latitude: this.props.locationInfor.latitude,
- annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
- duration: this.state.totalDuration,
- validDate: JSON.stringify(this.state.validDates),
- type: this.props.dtails.type,
- orderNo: this.props.dtails.orderNo,
- status: 1,
- 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 (isVerify) {
- datas = { ...datas, ...{ reason: this.props.reason, objectType, } };
- }
- updatePublicRelease(datas)
- .then((v) => {
- this.setState({
- loading: false,
- });
- if (v.error.length === 0) {
- Taro.showToast({
- title: "修改成功",
- });
- Taro.eventCenter.trigger("listOperation", {
- type: this.props.permission,
- index: this.props.index,
- status: 1,
- districtName: this.props.locationInfor.name,
- releaseStarts: this.state.rangeStartMinuteVal,
- releaseEnds: this.state.rangeEndMinuteVal,
- });
- this.props.onClose();
- } else {
- Taro.showToast({
- title: v.error[0].message,
- icon: "none",
- });
- }
- })
- .catch(() => {
- this.setState({
- loading: false,
- });
- });
- }
- // 再次公出提交
- goAgain() {
- if (!this.state.rangeStartMinuteVal) {
- Taro.showToast({ title: "请选择公出时间", icon: "none" });
- return;
- }
- if (!this.state.rangeEndMinuteVal) {
- Taro.showToast({ title: "请选择公出时间", icon: "none" });
- return;
- }
- if (
- !(
- this.props.locationInfor.longitude &&
- this.props.locationInfor.latitude
- )
- ) {
- Taro.showToast({ title: "请选择公出地点", icon: "none" });
- return;
- }
- if (!this.state.reason) {
- Taro.showToast({ title: "请输入公出目标", icon: "none" });
- return;
- }
- if (!this.state.plan && this.props.dtails.type != 2) {
- Taro.showToast({ title: "请输入公出计划", icon: "none" });
- return;
- }
- if (!this.state.expectedEffect && this.props.dtails.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.props.dtails.type == 0 && this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
- Taro.showToast({ title: "请上传附件", icon: "none" });
- return
- }
- this.setState({
- loading: true,
- });
- let datas = {
- publicAgain: 1,
- uids: this.props.dtails.uids,
- objectType: this.props.dtails.uids.indexOf(',') > -1 ? 1 : 0,
- releaseStarts: this.state.rangeStartMinuteVal,
- releaseEnds: this.state.rangeEndMinuteVal,
- remarks: this.state.reason,
- districtName: this.props.locationInfor.name,
- longitude: this.props.locationInfor.longitude,
- latitude: this.props.locationInfor.latitude,
- annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
- duration: this.state.totalDuration,
- type: this.props.dtails.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.dtails.type == 0) {
- datas = {
- ...datas,
- ...{
- plan: this.state.plan,
- expectedEffect: this.state.expectedEffect,
- }
- };
- } else if (this.props.dtails.type == 2) {
- datas = datas;
- } else {
- datas = {
- ...datas,
- ...{
- plan: this.state.plan,
- expectedEffect: this.state.expectedEffect,
- orderNo: this.props.dtails.orderNo,
- }
- };
- }
- addPublicRelease(datas)
- .then((v) => {
- this.setState({
- loading: false,
- });
- if (v.error.length === 0) {
- Taro.showToast({
- title: "申请成功",
- });
- // this.props.onClose();
- this.setState({
- isAgains: true,
- goId: v.data.data.id,
- goDatas: v.data.data,
- })
- } 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,
- });
- }
- 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
- })
- }
- render() {
- const { dtails, type, again = false } = this.props;
- 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" }}>
- {/* {dtails.nickname} */}
- {
- !!dtails.userNames && dtails.userNames.indexOf(',') > -1
- ? dtails.userNames.split(',')?.map((item, index) => <View key={index}>{item}</View>)
- : dtails.userNames
- }
- </View>
- </View>
- {
- (dtails.type == 0 && !!dtails.newList && isTips(dtails.newList)) &&
- <View className="othersTips">您正在申请公出他人企业:需跟单员“
- {getList(dtails.newList, "aname", true).toString()}
- ”审核同意,您才可公出!</View>
- }
- <View className="formItem">
- <View className="formName">公出类型:</View>
- <View className="formValue">
- {dtails.type == 0
- ? "业务公出" : dtails.type == 1
- ? "技术公出" : dtails.type == 2
- ? "行政公出" : dtails.type == 3
- ? "技术协单" : ""}
- </View>
- </View>
- {dtails.contractNo && dtails.type == 1 ? (
- <View className="formItem">
- <View className="formName">合同编号:</View>
- <View className="formValue">{dtails.contractNo}</View>
- </View>
- ) : (
- ""
- )}
- <View className="formItem">
- <View className="formName">作息时间类型:</View>
- <View className="formValue">
- <picker
- onChange={(e) => {
- this.setState({
- workType: e.detail.value,
- });
- if (this.state.workTypeList[e.detail.value]) {
- let obj = Taro.getStorageSync("userInfor");
- obj.workTimeInfor = this.state.workTypeList[e.detail.value];
- Taro.setStorageSync("userInfor", obj);
- this.setState({
- rangeStartVal: "",
- rangeStartMinuteVal: "",
- rangeEndMinuteVal: "",
- rangeEndVal: "",
- validDates: [],
- totalDuration: 0,
- });
- }
- }}
- value={this.state.workType}
- rangeKey="name"
- range={this.state.workTypeList}
- >
- <view style={{ display: "flex", alignItems: "center" }}>
- {this.state.workTypeList[this.state.workType]
- ? this.state.workTypeList[this.state.workType].name
- : ""}
- <AtIcon value="chevron-right" size="20" color="#bbbbbb" />
- </view>
- </picker>
- </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: this.state.rangeStartMinuteVal, //默认开始时间
- initEndTime: this.state.rangeEndMinuteVal, //默认结束时间
- 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>
- {
- dtails.type === 0 &&
- <View className="formItem" style={{ alignItems: "flex-start" }}>
- <View className="formName">技术协单:</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>
- }
- {
- dtails.type === 0 &&
- <View className="tips">
- 技术协单,将统计相关的公出成本等
- </View>
- }
- {this.state.validDates.length !== 0 ? (
- <View
- className="formItem"
- style={{ display: "block", paddingTop: "15px" }}
- >
- <View className="formName">
- <View>去除放假时间:</View>
- <View className="tips">
- 绿色方块为公出时间,长按即可去除放假时间
- </View>
- </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.locationInfor.name}
- </Text>
- <AtIcon value="chevron-right" size="30" color="#bbbbbb" />
- </View>
- </View>
- <View className="tips">
- 以地图为中心100米范围为可打卡区域,移动红标只需要拖动地图即可
- </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={
- dtails.type == 2
- ? "详细说明本次公出的内容,预计完成的内容"
- : "本次公出目标,谈的思路与步骤?"
- }
- />
- </View>
- </View>
- {/* 公出计划 */}
- {dtails.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>
- )}
- {/* 预计效果 */}
- {dtails.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" }}>
- <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" }}
- >
- {dtails.annexUrl && this.props.isOpened ? (
- <ImagePicker
- files={dtails.annexUrl}
- showAddBtn={true}
- ref={(ref) => (this.imagePickerRef = ref)}
- url="/api/admin/release/upload"
- onChange={this.onChange}
- />
- ) : null}
- </View>
- </View>
- {/* again为再次公出按钮显示 */}
- {
- again
- ? <View className="operation">
- <AtButton
- disabled={this.state.loading}
- type="secondary"
- circle
- onClick={() => {
- this.props.onClose();
- }}
- >
- 取消
- </AtButton>
- <AtButton
- type="primary"
- loading={this.state.loading}
- circle
- onClick={() => {
- this.setState({
- isInquiryOpened: true,
- inquiryTitle: "提醒",
- inquiryContent: "您确定要提交此申请吗?",
- inquiryFn: () => {
- this.goAgain();
- },
- });
- }}
- >
- 确定
- </AtButton>
- </View>
- : <View className="operation">
- <AtButton
- disabled={this.state.loading}
- type="primary"
- circle
- onClick={() => {
- this.props.onBack();
- }}
- >
- 上一步
- </AtButton>
- <AtButton
- disabled={this.state.loading}
- type="secondary"
- circle
- onClick={() => {
- this.props.onClose();
- }}
- >
- 取消
- </AtButton>
- <AtButton
- type="primary"
- loading={this.state.loading}
- circle
- onClick={() => {
- 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={dtails.assistantAid ? dtails.assistantAid.split(",") : []}
- coorderList={coorderList}
- setList={this.setList.bind(this)}
- />
- }
- {/* 再次公出申请成功 */}
- {
- this.state.isAgains &&
- <InquiryModal
- isOpened={this.state.isAgains}
- isNo={false}
- isChildren={true}
- onDetermine={() => {
- this.props.onClose();
- this.setState({
- isAgains: false,
- goId: "",
- goDatas: {},
- })
- }}
- onClose={() => {
- this.props.onClose();
- this.setState({
- isAgains: false,
- goId: "",
- goDatas: {},
- })
- }}
- >
- <View className='result'>
- <View className='resultIcon'>
- <Icon size='80' type='success' />
- </View>
- <View className='resultTitle'>
- <View>申请成功,可以打卡了!</View>
- <View className='resultError'></View>
- </View>
- <View className='resultOperation'>
- <AtButton circle type='primary' onClick={() => {
- this.props.onClose();
- Taro.eventCenter.trigger("GoPunchIn", this.state.goDatas);
- Taro.switchTab({
- url: '/pages/punchClock/index',
- })
- }}>
- 前往打卡
- </AtButton>
- <AtButton type='secondary' circle onClick={() => {
- this.props.onClose();
- this.state.goId &&
- Taro.navigateTo({
- url: '/pages/egressDetails/index?id=' + this.state.goId
- })
- }}>
- 前往分享
- </AtButton>
- </View>
- </View>
- </InquiryModal>
- }
- </View>
- );
- }
- }
- export default PublicContent;
|