publicContent.jsx 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045
  1. import React, { Component } from "react";
  2. import Taro from "@tarojs/taro";
  3. import { Text, View, Button, Icon } from "@tarojs/components";
  4. import dayjs from "dayjs";
  5. import "./index.less";
  6. import ImagePicker from "../../components/common/imagePicker";
  7. import { resourceAddress } from "../../utils/config";
  8. import { AtButton, AtTextarea, AtIcon, AtCalendar } from "taro-ui";
  9. import {
  10. updatePublicRelease,
  11. getWorkingHoursList,
  12. addPublicRelease,
  13. } from "../../utils/servers/servers";
  14. import { getHours, getNumHourse, getUserWordTimes, getNameList, getList, isTips, } from "../../utils/tools";
  15. import "taro-ui/dist/style/components/form.scss";
  16. import "taro-ui/dist/style/components/button.scss";
  17. import "taro-ui/dist/style/components/loading.scss";
  18. import "taro-ui/dist/style/components/icon.scss";
  19. import "taro-ui/dist/style/components/icon.scss";
  20. import "taro-ui/dist/style/components/textarea.scss";
  21. import "taro-ui/dist/style/components/calendar.scss";
  22. import "./publicContent.less";
  23. import InquiryModal from "../../components/common/inquiryModal";
  24. import UserQuery from "../../components/common/userquery"; //选择协单人弹窗
  25. class PublicContent extends Component {
  26. constructor(props) {
  27. super(props);
  28. this.state = {
  29. rangeStartVal: "",
  30. rangeEndVal: "",
  31. rangeEndMinuteVal: "",
  32. rangeStartMinuteVal: "",
  33. reason: "",
  34. plan: "",
  35. expectedEffect: "",
  36. imgs: [],
  37. validDates: [],
  38. totalDuration: 0,
  39. loading: false,
  40. workTypeList: [],
  41. workType: 0,
  42. isPickerRender: false,
  43. popup: false,
  44. coorderList: [],
  45. cList: [],
  46. };
  47. this.onSubmit = this.onSubmit.bind(this);
  48. this.selectArrder = this.selectArrder.bind(this);
  49. this.onChange = this.onChange.bind(this);
  50. this.getWorkingHoursList = this.getWorkingHoursList.bind(this);
  51. this.onPickerHide = this.onPickerHide.bind(this);
  52. this.onSetPickerTime = this.onSetPickerTime.bind(this);
  53. this.getNumHourse = this.getNumHourse.bind(this);
  54. }
  55. componentDidMount() {
  56. const { dtails, again = false } = this.props
  57. let arr = [];
  58. for (let i of this.props.dtails.annexUrl) {
  59. arr.push(i.url.split(resourceAddress).join(""));
  60. }
  61. let list = [];
  62. if (!dtails.assistAid) {
  63. list = []
  64. } else {
  65. let a = dtails.assistAid.split(",")
  66. let b = dtails.assistAidName.split(",")
  67. for (var i = 0; i < a.length; i++) {
  68. list.push({
  69. id: a[i],
  70. name: b[i],
  71. })
  72. }
  73. }
  74. if (again) {
  75. // 再次公出详情
  76. this.setState({
  77. imgs: arr,
  78. totalDuration: 0,
  79. reason: this.props.dtails.remarks,
  80. validDates: [],
  81. rangeEndVal: '',
  82. rangeEndMinuteVal: '',
  83. rangeStartVal: '',
  84. rangeStartMinuteVal: '',
  85. plan: this.props.dtails.plan || "",
  86. expectedEffect: this.props.dtails.expectedEffect || "",
  87. cList: list,
  88. coorderList: !dtails.assistAid ? [] : dtails.assistAid.split(","),
  89. })
  90. } else {
  91. // 编辑详情
  92. this.setState({
  93. imgs: arr,
  94. totalDuration: this.props.dtails.duration,
  95. reason: this.props.dtails.remarks,
  96. validDates: JSON.parse(this.props.dtails.validDate),
  97. rangeEndVal: dayjs(this.props.dtails.releaseEnds).format("YYYY-MM-DD"),
  98. rangeEndMinuteVal: dayjs(this.props.dtails.releaseEnds).format("YYYY-MM-DD HH:mm:ss"),
  99. rangeStartVal: dayjs(this.props.dtails.releaseStarts).format("YYYY-MM-DD"),
  100. rangeStartMinuteVal: dayjs(this.props.dtails.releaseStarts).format("YYYY-MM-DD HH:mm:ss"),
  101. plan: this.props.dtails.plan || "",
  102. expectedEffect: this.props.dtails.expectedEffect || "",
  103. cList: list,
  104. coorderList: !dtails.assistAid ? [] : dtails.assistAid.split(","),
  105. });
  106. }
  107. this.getWorkingHoursList();
  108. }
  109. componentWillUnmount() {
  110. this.imagePickerRef && this.imagePickerRef.clear();
  111. this.setState({
  112. rangeStartVal: "",
  113. rangeEndVal: "",
  114. rangeEndMinuteVal: "",
  115. rangeStartMinuteVal: "",
  116. reason: "",
  117. plan: "",
  118. expectedEffect: "",
  119. imgs: [],
  120. validDates: [],
  121. totalDuration: 0,
  122. loading: false,
  123. });
  124. }
  125. getWorkingHoursList() {
  126. getWorkingHoursList({})
  127. .then((v) => {
  128. if (v.error.length === 0) {
  129. let obj = Taro.getStorageSync("userInfor");
  130. let index = v.data.findIndex(
  131. (value) => value.type === obj.workTimeInfor.type
  132. );
  133. this.setState({
  134. workType: index !== -1 ? index : 0,
  135. });
  136. this.setState({
  137. workTypeList: v.data,
  138. });
  139. } else {
  140. Taro.showToast({
  141. title: v.error[0].message,
  142. icon: "none",
  143. });
  144. }
  145. })
  146. .catch((err) => {
  147. //console.log(err);
  148. });
  149. }
  150. getNumHourse(startTime, endTime) {
  151. this.setState({
  152. totalDuration: getNumHourse(
  153. startTime,
  154. endTime,
  155. this.state.validDates.length
  156. ),
  157. });
  158. }
  159. // 修改公出提交
  160. onSubmit() {
  161. const { isVerify = false } = this.props;
  162. let objectType = this.props.dtails.uids.indexOf(',') > -1 ? 1 : 0
  163. if (!this.props.dtails.uids) {
  164. Taro.showToast({ title: "请选择公出企业", icon: "none" });
  165. return;
  166. }
  167. if (!this.state.rangeStartMinuteVal) {
  168. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  169. return;
  170. }
  171. if (!this.state.rangeEndMinuteVal) {
  172. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  173. return;
  174. }
  175. if (
  176. !(this.props.locationInfor.longitude && this.props.locationInfor.latitude)
  177. ) {
  178. Taro.showToast({ title: "请选择公出地点", icon: "none" });
  179. return;
  180. }
  181. if (!this.state.reason) {
  182. Taro.showToast({ title: "请输入公出目标", icon: "none" });
  183. return;
  184. }
  185. if (!this.state.plan && this.props.dtails.type != 2) {
  186. Taro.showToast({ title: "请输入公出计划", icon: "none" });
  187. return;
  188. }
  189. if (!this.state.expectedEffect && this.props.dtails.type != 2) {
  190. Taro.showToast({ title: "请输入预计效果", icon: "none" });
  191. return;
  192. }
  193. if (this.state.totalDuration === 0) {
  194. Taro.showToast({
  195. title: "请选择公出时间,目前设置公出时间不足0.5小时",
  196. icon: "none",
  197. });
  198. return;
  199. }
  200. let info = Taro.getStorageSync("userInfor");
  201. if (this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
  202. Taro.showToast({ title: "请上传附件", icon: "none" });
  203. return
  204. }
  205. this.setState({
  206. loading: true,
  207. });
  208. let datas;
  209. if (this.props.dtails.type == 0) {
  210. datas = {
  211. id: this.props.dtails.id,
  212. uids: this.props.dtails.uids,
  213. releaseStarts: this.state.rangeStartMinuteVal,
  214. releaseEnds: this.state.rangeEndMinuteVal,
  215. remarks: this.state.reason,
  216. plan: this.state.plan,
  217. expectedEffect: this.state.expectedEffect,
  218. districtName: this.props.locationInfor.name,
  219. longitude: this.props.locationInfor.longitude,
  220. latitude: this.props.locationInfor.latitude,
  221. annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
  222. duration: this.state.totalDuration,
  223. validDate: JSON.stringify(this.state.validDates),
  224. type: this.props.dtails.type,
  225. status: 1,
  226. assist: this.state.coorderList.length === 0 ? 0 : 1,
  227. assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
  228. assistAidName: this.state.coorderList.length === 0 ? "" : getNameList(this.state.coorderList, this.state.cList).join(","),
  229. };
  230. } else if (this.props.dtails.type == 2) {
  231. datas = {
  232. id: this.props.dtails.id,
  233. uids: this.props.dtails.uids,
  234. releaseStarts: this.state.rangeStartMinuteVal,
  235. releaseEnds: this.state.rangeEndMinuteVal,
  236. remarks: this.state.reason,
  237. // plan: this.state.plan,
  238. // expectedEffect: this.state.expectedEffect,
  239. districtName: this.props.locationInfor.name,
  240. longitude: this.props.locationInfor.longitude,
  241. latitude: this.props.locationInfor.latitude,
  242. annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
  243. duration: this.state.totalDuration,
  244. validDate: JSON.stringify(this.state.validDates),
  245. type: this.props.dtails.type,
  246. orderNo: this.props.dtails.orderNo,
  247. status: 1,
  248. assist: this.state.coorderList.length === 0 ? 0 : 1,
  249. assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
  250. assistAidName: this.state.coorderList.length === 0 ? "" : getNameList(this.state.coorderList, this.state.cList).join(","),
  251. };
  252. } else {
  253. datas = {
  254. id: this.props.dtails.id,
  255. uids: this.props.dtails.uids,
  256. releaseStarts: this.state.rangeStartMinuteVal,
  257. releaseEnds: this.state.rangeEndMinuteVal,
  258. remarks: this.state.reason,
  259. plan: this.state.plan,
  260. expectedEffect: this.state.expectedEffect,
  261. districtName: this.props.locationInfor.name,
  262. longitude: this.props.locationInfor.longitude,
  263. latitude: this.props.locationInfor.latitude,
  264. annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
  265. duration: this.state.totalDuration,
  266. validDate: JSON.stringify(this.state.validDates),
  267. type: this.props.dtails.type,
  268. orderNo: this.props.dtails.orderNo,
  269. status: 1,
  270. assist: this.state.coorderList.length === 0 ? 0 : 1,
  271. assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
  272. assistAidName: this.state.coorderList.length === 0 ? "" : getNameList(this.state.coorderList, this.state.cList).join(","),
  273. };
  274. }
  275. if (isVerify) {
  276. datas = { ...datas, ...{ reason: this.props.reason, objectType, } };
  277. }
  278. updatePublicRelease(datas)
  279. .then((v) => {
  280. this.setState({
  281. loading: false,
  282. });
  283. if (v.error.length === 0) {
  284. Taro.showToast({
  285. title: "修改成功",
  286. });
  287. Taro.eventCenter.trigger("listOperation", {
  288. type: this.props.permission,
  289. index: this.props.index,
  290. status: 1,
  291. districtName: this.props.locationInfor.name,
  292. releaseStarts: this.state.rangeStartMinuteVal,
  293. releaseEnds: this.state.rangeEndMinuteVal,
  294. });
  295. this.props.onClose();
  296. } else {
  297. Taro.showToast({
  298. title: v.error[0].message,
  299. icon: "none",
  300. });
  301. }
  302. })
  303. .catch(() => {
  304. this.setState({
  305. loading: false,
  306. });
  307. });
  308. }
  309. // 再次公出提交
  310. goAgain() {
  311. if (!this.state.rangeStartMinuteVal) {
  312. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  313. return;
  314. }
  315. if (!this.state.rangeEndMinuteVal) {
  316. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  317. return;
  318. }
  319. if (
  320. !(
  321. this.props.locationInfor.longitude &&
  322. this.props.locationInfor.latitude
  323. )
  324. ) {
  325. Taro.showToast({ title: "请选择公出地点", icon: "none" });
  326. return;
  327. }
  328. if (!this.state.reason) {
  329. Taro.showToast({ title: "请输入公出目标", icon: "none" });
  330. return;
  331. }
  332. if (!this.state.plan && this.props.dtails.type != 2) {
  333. Taro.showToast({ title: "请输入公出计划", icon: "none" });
  334. return;
  335. }
  336. if (!this.state.expectedEffect && this.props.dtails.type != 2) {
  337. Taro.showToast({ title: "请输入预计效果", icon: "none" });
  338. return;
  339. }
  340. if (this.state.totalDuration === 0) {
  341. Taro.showToast({
  342. title: "请选择公出时间,目前设置公出时间不足0.5小时",
  343. icon: "none",
  344. });
  345. return;
  346. }
  347. let info = Taro.getStorageSync("userInfor");
  348. if (this.props.dtails.type == 0 && this.state.totalDuration > info.workTimeInfor.minHours && this.state.imgs.length == 0) {
  349. Taro.showToast({ title: "请上传附件", icon: "none" });
  350. return
  351. }
  352. this.setState({
  353. loading: true,
  354. });
  355. let datas = {
  356. publicAgain: 1,
  357. uids: this.props.dtails.uids,
  358. objectType: this.props.dtails.uids.indexOf(',') > -1 ? 1 : 0,
  359. releaseStarts: this.state.rangeStartMinuteVal,
  360. releaseEnds: this.state.rangeEndMinuteVal,
  361. remarks: this.state.reason,
  362. districtName: this.props.locationInfor.name,
  363. longitude: this.props.locationInfor.longitude,
  364. latitude: this.props.locationInfor.latitude,
  365. annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
  366. duration: this.state.totalDuration,
  367. type: this.props.dtails.type,
  368. validDate: JSON.stringify(this.state.validDates),
  369. assist: this.state.coorderList.length === 0 ? 0 : 1,
  370. assistAid: this.state.coorderList.length === 0 ? "" : this.state.coorderList.join(","),
  371. assistAidName: this.state.coorderList.length === 0 ? "" : getNameList(this.state.coorderList, this.state.cList).join(","),
  372. };
  373. if (this.props.dtails.type == 0) {
  374. datas = {
  375. ...datas,
  376. ...{
  377. plan: this.state.plan,
  378. expectedEffect: this.state.expectedEffect,
  379. }
  380. };
  381. } else if (this.props.dtails.type == 2) {
  382. datas = datas;
  383. } else {
  384. datas = {
  385. ...datas,
  386. ...{
  387. plan: this.state.plan,
  388. expectedEffect: this.state.expectedEffect,
  389. orderNo: this.props.dtails.orderNo,
  390. }
  391. };
  392. }
  393. addPublicRelease(datas)
  394. .then((v) => {
  395. this.setState({
  396. loading: false,
  397. });
  398. if (v.error.length === 0) {
  399. Taro.showToast({
  400. title: "申请成功",
  401. });
  402. // this.props.onClose();
  403. this.setState({
  404. isAgains: true,
  405. goId: v.data.data.id,
  406. goDatas: v.data.data,
  407. })
  408. } else {
  409. Taro.showToast({
  410. title: v.error[0].message,
  411. icon: "none",
  412. });
  413. }
  414. })
  415. .catch(() => {
  416. this.setState({
  417. loading: false,
  418. });
  419. });
  420. }
  421. selectArrder() {
  422. const key = "AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT"; //使用在腾讯位置服务申请的key
  423. const referer = "科德打卡定位"; //调用插件的app的名称
  424. const category = "公司企业,房产小区";
  425. Taro.navigateTo({
  426. url:
  427. "plugin://chooseLocation/index?key=" +
  428. key +
  429. "&referer=" +
  430. referer +
  431. "&category=" +
  432. category,
  433. });
  434. }
  435. onChange(value, type) {
  436. let arr = this.state.imgs.concat([]);
  437. if (type === "add") {
  438. arr.push(value);
  439. } else if (type === "remove") {
  440. arr.splice(value, 1);
  441. }
  442. this.setState({
  443. imgs: arr,
  444. });
  445. }
  446. onPickerHide() {
  447. this.setState({
  448. isPickerRender: false,
  449. });
  450. }
  451. onSetPickerTime(val) {
  452. let data = val.detail;
  453. this.setState({
  454. rangeStartMinuteVal: data.selectStartTime,
  455. rangeEndMinuteVal: data.selectEndTime,
  456. });
  457. let arr = [];
  458. if (data.startTime && data.endTime) {
  459. let a = dayjs(data.startTime);
  460. let b = dayjs(data.endTime);
  461. let num;
  462. if (a.hour() <= b.hour()) {
  463. num = b.diff(a, "day") + 1;
  464. } else {
  465. num = b.diff(a, "day") + 2;
  466. }
  467. let strAdd = data.startTime;
  468. for (let i = 0; i < num; i++) {
  469. let time = dayjs(strAdd).add(i, "days").format("YYYY-MM-DD");
  470. arr.push({ value: time });
  471. }
  472. }
  473. this.setState(
  474. {
  475. rangeEndVal: dayjs(data.endTime).format("YYYY-MM-DD"),
  476. rangeStartVal: dayjs(data.startTime).format("YYYY-MM-DD"),
  477. validDates: arr,
  478. },
  479. () => {
  480. let a1 = dayjs(dayjs(data.endTime).format("YYYY-MM-DD HH:mm:ss"));
  481. let b1 = dayjs(dayjs(data.startTime).format("YYYY-MM-DD HH:mm:ss"));
  482. this.getNumHourse(b1, a1);
  483. }
  484. );
  485. }
  486. // 新增技术协单
  487. setList(list, arr) {
  488. this.setState({
  489. cList: list,
  490. coorderList: arr
  491. })
  492. }
  493. // 弹窗开关
  494. popupClick() {
  495. this.setState({
  496. popup: !this.state.popup
  497. })
  498. }
  499. render() {
  500. const { dtails, type, again = false } = this.props;
  501. const { cList, coorderList, popup } = this.state
  502. const info = Taro.getStorageSync("userInfor");
  503. return (
  504. <View className="publicContent">
  505. <View className="formItem">
  506. <View className="formName">公出企业:</View>
  507. <View className="formValue" style={{ flexDirection: "column", alignItems: "flex-end" }}>
  508. {/* {dtails.nickname} */}
  509. {
  510. !!dtails.userNames && dtails.userNames.indexOf(',') > -1
  511. ? dtails.userNames.split(',')?.map((item, index) => <View key={index}>{item}</View>)
  512. : dtails.userNames
  513. }
  514. </View>
  515. </View>
  516. {
  517. (dtails.type == 0 && !!dtails.newList && isTips(dtails.newList)) &&
  518. <View className="othersTips">您正在申请公出他人企业:需跟单员“
  519. {getList(dtails.newList, "aname", true).toString()}
  520. ”审核同意,您才可公出!</View>
  521. }
  522. <View className="formItem">
  523. <View className="formName">公出类型:</View>
  524. <View className="formValue">
  525. {dtails.type == 0
  526. ? "业务公出" : dtails.type == 1
  527. ? "技术公出" : dtails.type == 2
  528. ? "行政公出" : dtails.type == 3
  529. ? "技术协单" : ""}
  530. </View>
  531. </View>
  532. {dtails.contractNo && dtails.type == 1 ? (
  533. <View className="formItem">
  534. <View className="formName">合同编号:</View>
  535. <View className="formValue">{dtails.contractNo}</View>
  536. </View>
  537. ) : (
  538. ""
  539. )}
  540. <View className="formItem">
  541. <View className="formName">作息时间类型:</View>
  542. <View className="formValue">
  543. <picker
  544. onChange={(e) => {
  545. this.setState({
  546. workType: e.detail.value,
  547. });
  548. if (this.state.workTypeList[e.detail.value]) {
  549. let obj = Taro.getStorageSync("userInfor");
  550. obj.workTimeInfor = this.state.workTypeList[e.detail.value];
  551. Taro.setStorageSync("userInfor", obj);
  552. this.setState({
  553. rangeStartVal: "",
  554. rangeStartMinuteVal: "",
  555. rangeEndMinuteVal: "",
  556. rangeEndVal: "",
  557. validDates: [],
  558. totalDuration: 0,
  559. });
  560. }
  561. }}
  562. value={this.state.workType}
  563. rangeKey="name"
  564. range={this.state.workTypeList}
  565. >
  566. <view style={{ display: "flex", alignItems: "center" }}>
  567. {this.state.workTypeList[this.state.workType]
  568. ? this.state.workTypeList[this.state.workType].name
  569. : ""}
  570. <AtIcon value="chevron-right" size="20" color="#bbbbbb" />
  571. </view>
  572. </picker>
  573. </View>
  574. </View>
  575. <View className="formItem">
  576. <View className="formName">公出时间:</View>
  577. <View className="formValue">
  578. <View
  579. className="time"
  580. onClick={() => {
  581. this.setState({
  582. isPickerRender: true,
  583. });
  584. }}
  585. >
  586. {this.state.rangeStartMinuteVal &&
  587. this.state.rangeEndMinuteVal ? (
  588. <View className="timeContent">
  589. <View>开始时间:{this.state.rangeStartMinuteVal}</View>
  590. <View>结束时间:{this.state.rangeEndMinuteVal}</View>
  591. </View>
  592. ) : (
  593. "请选择公出时间"
  594. )}
  595. </View>
  596. <timePicker
  597. config={{
  598. endDate: true,
  599. column: "minute",
  600. dateLimit: false,
  601. initStartTime: this.state.rangeStartMinuteVal, //默认开始时间
  602. initEndTime: this.state.rangeEndMinuteVal, //默认结束时间
  603. limitStartTime: dayjs()
  604. .subtract(3, "year")
  605. .format("YYYY-MM-DD HH:mm:ss"),
  606. limitEndTime: dayjs()
  607. .add(3, "year")
  608. .format("YYYY-MM-DD HH:mm:ss"),
  609. }}
  610. isPartition
  611. pickerShow={this.state.isPickerRender}
  612. onconditionaljudgment={(v) => {
  613. let a = dayjs(
  614. dayjs(v.detail.endTime)
  615. .second(0)
  616. .format("YYYY-MM-DD HH:mm:ss")
  617. );
  618. let b = dayjs(dayjs().second(0).format("YYYY-MM-DD HH:mm:ss"));
  619. if (a.isBefore(b)) {
  620. Taro.showToast({
  621. title: "结束时间不能小于当前时间",
  622. icon: "none",
  623. });
  624. v.detail.setLv(false);
  625. }
  626. }}
  627. onhidepicker={() => {
  628. this.onPickerHide();
  629. }}
  630. onsetpickertime={(v) => {
  631. this.onSetPickerTime(v);
  632. }}
  633. />
  634. </View>
  635. </View>
  636. <View className="formItem">
  637. <View className="formName">总时长:</View>
  638. <View className="formValue">{this.state.totalDuration}小时</View>
  639. </View>
  640. {
  641. dtails.type === 0 &&
  642. <View className="formItem" style={{ alignItems: "flex-start" }}>
  643. <View className="formName">技术协单:</View>
  644. <View className="formValues">
  645. {
  646. cList.length === 0
  647. ? <Text>无</Text>
  648. : cList.map((item, index) =>
  649. <View className="fitems" key={index}>
  650. {item.name}
  651. <View className="fclose"
  652. onClick={() => {
  653. coorderList.includes(item.id) &&
  654. (
  655. cList.splice(coorderList.indexOf(item.id), 1),
  656. coorderList.splice(coorderList.indexOf(item.id), 1)
  657. )
  658. this.setState({
  659. cList,
  660. coorderList,
  661. })
  662. }}
  663. ><AtIcon value="close-circle" size="15" color="#bbbbbb" /></View>
  664. </View>
  665. )
  666. }
  667. {cList.length < 5 && <Button className="addbuttom" type='primary' onClick={this.popupClick.bind(this)}>新增技术协单</Button>}
  668. </View>
  669. </View>
  670. }
  671. {
  672. dtails.type === 0 &&
  673. <View className="tips">
  674. 技术协单,将统计相关的公出成本等
  675. </View>
  676. }
  677. {this.state.validDates.length !== 0 ? (
  678. <View
  679. className="formItem"
  680. style={{ display: "block", paddingTop: "15px" }}
  681. >
  682. <View className="formName">
  683. <View>去除放假时间:</View>
  684. <View className="tips">
  685. 绿色方块为公出时间,长按即可去除放假时间
  686. </View>
  687. </View>
  688. <AtCalendar
  689. currentDate={this.state.rangeStartVal}
  690. minDate={this.state.rangeStartVal}
  691. maxDate={this.state.rangeEndVal}
  692. isSwiper={false}
  693. validDates={this.state.validDates}
  694. onDayLongClick={(item) => {
  695. if (
  696. !(
  697. dayjs(item.value).isSame(this.state.rangeStartVal) ||
  698. dayjs(item.value).isSame(this.state.rangeEndVal)
  699. )
  700. ) {
  701. if (
  702. !(
  703. dayjs(item.value).isAfter(this.state.rangeStartVal) &&
  704. dayjs(item.value).isBefore(this.state.rangeEndVal)
  705. )
  706. ) {
  707. return;
  708. }
  709. } else {
  710. Taro.showToast({
  711. title: "开始结束时间不能取消",
  712. icon: "none",
  713. });
  714. return;
  715. }
  716. let index = this.state.validDates.findIndex((v) => {
  717. let lv = dayjs(v.value).isSame(item.value);
  718. return lv;
  719. });
  720. const { start, end } = getUserWordTimes();
  721. let totalDuration = getHours(
  722. dayjs().format("YYYY-MM-DD") + start,
  723. dayjs(dayjs().format("YYYY-MM-DD") + end)
  724. ); //一天工作时长
  725. if (index < 0) {
  726. let arr = item.value.split("-");
  727. this.state.validDates.push({ value: arr.join("-") });
  728. this.setState({
  729. validDates: this.state.validDates,
  730. totalDuration: this.state.totalDuration + totalDuration,
  731. });
  732. } else {
  733. this.state.validDates.splice(index, 1);
  734. this.setState({
  735. validDates: this.state.validDates,
  736. totalDuration: this.state.totalDuration - totalDuration,
  737. });
  738. }
  739. }}
  740. />
  741. </View>
  742. ) : null}
  743. <View
  744. className="formItem"
  745. style={{
  746. paddingBottom: 0,
  747. }}
  748. >
  749. <View className="formName">公出地点:</View>
  750. <View className="formValue" onClick={this.selectArrder}>
  751. <Text className="formValueText">
  752. {this.props.locationInfor.name}
  753. </Text>
  754. <AtIcon value="chevron-right" size="30" color="#bbbbbb" />
  755. </View>
  756. </View>
  757. <View className="tips">
  758. 以地图为中心100米范围为可打卡区域,移动红标只需要拖动地图即可
  759. </View>
  760. <View
  761. className="formItem"
  762. style={{ display: "block", paddingTop: "15px" }}
  763. >
  764. {/* 公出目标 */}
  765. <View className="formName">
  766. <Text>
  767. <Text style={{ color: "red" }}>*</Text>
  768. 公出目标:</Text>
  769. <View
  770. className="formValue"
  771. style={{ paddingTop: "10px", textAlign: "left" }}
  772. >
  773. <AtTextarea
  774. height={46}
  775. value={this.state.reason}
  776. onChange={(v) => {
  777. this.setState({
  778. reason: v,
  779. });
  780. }}
  781. maxLength={200}
  782. placeholder={
  783. dtails.type == 2
  784. ? "详细说明本次公出的内容,预计完成的内容"
  785. : "本次公出目标,谈的思路与步骤?"
  786. }
  787. />
  788. </View>
  789. </View>
  790. {/* 公出计划 */}
  791. {dtails.type != 2 && (
  792. <View className="formName">
  793. <Text>
  794. <Text style={{ color: "red" }}>*</Text>
  795. 公出计划:</Text>
  796. <View
  797. className="formValue"
  798. style={{ paddingTop: "10px", textAlign: "left" }}
  799. >
  800. <AtTextarea
  801. height={46}
  802. value={this.state.plan}
  803. onChange={(v) => {
  804. this.setState({
  805. plan: v,
  806. });
  807. }}
  808. maxLength={200}
  809. placeholder="本次公出准备工作"
  810. />
  811. </View>
  812. </View>
  813. )}
  814. {/* 预计效果 */}
  815. {dtails.type != 2 && (
  816. <View className="formName">
  817. <Text>
  818. <Text style={{ color: "red" }}>*</Text>
  819. 预计效果:</Text>
  820. <View
  821. className="formValue"
  822. style={{ paddingTop: "10px", textAlign: "left" }}
  823. >
  824. <AtTextarea
  825. height={46}
  826. value={this.state.expectedEffect}
  827. onChange={(v) => {
  828. this.setState({
  829. expectedEffect: v,
  830. });
  831. }}
  832. maxLength={200}
  833. placeholder="预计本次公出效果"
  834. />
  835. </View>
  836. </View>
  837. )}
  838. </View>
  839. <View className="formItem" style={{ display: "block" }}>
  840. <View className="formName">
  841. {this.state.totalDuration > info.workTimeInfor.minHours && <Text style={{ color: "red" }}>*</Text>}
  842. 附件:
  843. </View>
  844. {this.state.totalDuration > info.workTimeInfor.minHours &&
  845. <View className="tips">
  846. 请上传公出事由的凭证截图,如您与企业的对话截图等
  847. </View>}
  848. <View
  849. className="formValue"
  850. style={{ paddingTop: "10px", textAlign: "left" }}
  851. >
  852. {dtails.annexUrl && this.props.isOpened ? (
  853. <ImagePicker
  854. files={dtails.annexUrl}
  855. showAddBtn={true}
  856. ref={(ref) => (this.imagePickerRef = ref)}
  857. url="/api/admin/release/upload"
  858. onChange={this.onChange}
  859. />
  860. ) : null}
  861. </View>
  862. </View>
  863. {/* again为再次公出按钮显示 */}
  864. {
  865. again
  866. ? <View className="operation">
  867. <AtButton
  868. disabled={this.state.loading}
  869. type="secondary"
  870. circle
  871. onClick={() => {
  872. this.props.onClose();
  873. }}
  874. >
  875. 取消
  876. </AtButton>
  877. <AtButton
  878. type="primary"
  879. loading={this.state.loading}
  880. circle
  881. onClick={() => {
  882. this.setState({
  883. isInquiryOpened: true,
  884. inquiryTitle: "提醒",
  885. inquiryContent: "您确定要提交此申请吗?",
  886. inquiryFn: () => {
  887. this.goAgain();
  888. },
  889. });
  890. }}
  891. >
  892. 确定
  893. </AtButton>
  894. </View>
  895. : <View className="operation">
  896. <AtButton
  897. disabled={this.state.loading}
  898. type="primary"
  899. circle
  900. onClick={() => {
  901. this.props.onBack();
  902. }}
  903. >
  904. 上一步
  905. </AtButton>
  906. <AtButton
  907. disabled={this.state.loading}
  908. type="secondary"
  909. circle
  910. onClick={() => {
  911. this.props.onClose();
  912. }}
  913. >
  914. 取消
  915. </AtButton>
  916. <AtButton
  917. type="primary"
  918. loading={this.state.loading}
  919. circle
  920. onClick={() => {
  921. this.setState({
  922. isInquiryOpened: true,
  923. inquiryTitle: "提醒",
  924. inquiryContent: "您确定要修改此申请吗?",
  925. inquiryFn: () => {
  926. this.onSubmit();
  927. },
  928. });
  929. }}
  930. >
  931. 确定修改
  932. </AtButton>
  933. </View>
  934. }
  935. <InquiryModal
  936. isOpened={this.state.isInquiryOpened}
  937. title={this.state.inquiryTitle}
  938. content={this.state.inquiryContent}
  939. onClose={() => {
  940. this.setState({
  941. isInquiryOpened: false,
  942. inquiryTitle: "",
  943. inquiryContent: "",
  944. });
  945. }}
  946. onDetermine={() => {
  947. this.state.inquiryFn();
  948. this.setState({
  949. isInquiryOpened: false,
  950. inquiryTitle: "",
  951. inquiryContent: "",
  952. inquiryFn: () => { },
  953. });
  954. }}
  955. />
  956. {popup &&
  957. <UserQuery
  958. isOpened={popup}
  959. onDesc={this.popupClick.bind(this)}
  960. cList={cList}
  961. selList={dtails.assistantAid ? dtails.assistantAid.split(",") : []}
  962. coorderList={coorderList}
  963. setList={this.setList.bind(this)}
  964. />
  965. }
  966. {/* 再次公出申请成功 */}
  967. {
  968. this.state.isAgains &&
  969. <InquiryModal
  970. isOpened={this.state.isAgains}
  971. isNo={false}
  972. isChildren={true}
  973. onDetermine={() => {
  974. this.props.onClose();
  975. this.setState({
  976. isAgains: false,
  977. goId: "",
  978. goDatas: {},
  979. })
  980. }}
  981. onClose={() => {
  982. this.props.onClose();
  983. this.setState({
  984. isAgains: false,
  985. goId: "",
  986. goDatas: {},
  987. })
  988. }}
  989. >
  990. <View className='result'>
  991. <View className='resultIcon'>
  992. <Icon size='80' type='success' />
  993. </View>
  994. <View className='resultTitle'>
  995. <View>申请成功,可以打卡了!</View>
  996. <View className='resultError'></View>
  997. </View>
  998. <View className='resultOperation'>
  999. <AtButton circle type='primary' onClick={() => {
  1000. this.props.onClose();
  1001. Taro.eventCenter.trigger("GoPunchIn", this.state.goDatas);
  1002. Taro.switchTab({
  1003. url: '/pages/punchClock/index',
  1004. })
  1005. }}>
  1006. 前往打卡
  1007. </AtButton>
  1008. <AtButton type='secondary' circle onClick={() => {
  1009. this.props.onClose();
  1010. this.state.goId &&
  1011. Taro.navigateTo({
  1012. url: '/pages/egressDetails/index?id=' + this.state.goId
  1013. })
  1014. }}>
  1015. 前往分享
  1016. </AtButton>
  1017. </View>
  1018. </View>
  1019. </InquiryModal>
  1020. }
  1021. </View>
  1022. );
  1023. }
  1024. }
  1025. export default PublicContent;