publicContent.jsx 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650
  1. import React, { Component } from "react";
  2. import Taro from "@tarojs/taro";
  3. import { Text, View } from "@tarojs/components";
  4. import dayjs from "dayjs";
  5. import "./index.less";
  6. import ImagePicker from "../../components/common/imagePicker";
  7. import { AtButton, AtTextarea, AtIcon, AtCalendar } from "taro-ui";
  8. import {
  9. addPublicRelease,
  10. getWorkingHoursList,
  11. } from "../../utils/servers/servers";
  12. import {
  13. getHours,
  14. getNumHourse,
  15. getUserWordTimes,
  16. } from "../../utils/tools";
  17. import "taro-ui/dist/style/components/form.scss";
  18. import "taro-ui/dist/style/components/button.scss";
  19. import "taro-ui/dist/style/components/loading.scss";
  20. import "taro-ui/dist/style/components/icon.scss";
  21. import "taro-ui/dist/style/components/icon.scss";
  22. import "taro-ui/dist/style/components/textarea.scss";
  23. import "taro-ui/dist/style/components/calendar.scss";
  24. import "./publicContent.less";
  25. import InquiryModal from "../../components/common/inquiryModal";
  26. class PublicContent extends Component {
  27. constructor(props) {
  28. super(props);
  29. this.state = {
  30. rangeStartVal: "",
  31. rangeEndVal: "",
  32. rangeEndMinuteVal: "",
  33. rangeStartMinuteVal: "",
  34. reason: "",
  35. plan: "",
  36. expectedEffect: "",
  37. imgs: [],
  38. validDates: [],
  39. totalDuration: 0,
  40. loading: false,
  41. workTypeList: [],
  42. workType: 0,
  43. isPickerRender: false,
  44. };
  45. this.onSubmit = this.onSubmit.bind(this);
  46. this.selectArrder = this.selectArrder.bind(this);
  47. this.onChange = this.onChange.bind(this);
  48. this.getWorkingHoursList = this.getWorkingHoursList.bind(this);
  49. this.onPickerHide = this.onPickerHide.bind(this);
  50. this.onSetPickerTime = this.onSetPickerTime.bind(this);
  51. this.getNumHourse = this.getNumHourse.bind(this);
  52. }
  53. componentDidMount() {
  54. Taro.eventCenter.on("result", () => {
  55. this.imagePickerRef && this.imagePickerRef.clear();
  56. this.setState({
  57. rangeStartVal: "",
  58. rangeEndVal: "",
  59. rangeEndMinuteVal: "",
  60. rangeStartMinuteVal: "",
  61. reason: "",
  62. plan: "",
  63. expectedEffect: "",
  64. imgs: [],
  65. validDates: [],
  66. totalDuration: 0,
  67. loading: false,
  68. });
  69. });
  70. this.getWorkingHoursList();
  71. }
  72. getNumHourse(startTime, endTime) {
  73. this.setState({
  74. totalDuration: getNumHourse(
  75. startTime,
  76. endTime,
  77. this.state.validDates.length
  78. ),
  79. });
  80. }
  81. onSubmit() {
  82. if (!this.state.rangeStartMinuteVal) {
  83. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  84. return;
  85. }
  86. if (!this.state.rangeEndMinuteVal) {
  87. Taro.showToast({ title: "请选择公出时间", icon: "none" });
  88. return;
  89. }
  90. if (
  91. !(
  92. this.props.selectArrderLocation.longitude &&
  93. this.props.selectArrderLocation.latitude
  94. )
  95. ) {
  96. Taro.showToast({ title: "请选择公出地点", icon: "none" });
  97. return;
  98. }
  99. if (!this.state.reason) {
  100. Taro.showToast({ title: "请输入公出目标", icon: "none" });
  101. return;
  102. }
  103. if (!this.state.plan && this.props.enterpriseInfor.type != 2) {
  104. Taro.showToast({ title: "请输入公出计划", icon: "none" });
  105. return;
  106. }
  107. if (!this.state.expectedEffect && this.props.enterpriseInfor.type != 2) {
  108. Taro.showToast({ title: "请输入预计效果", icon: "none" });
  109. return;
  110. }
  111. if (this.state.totalDuration === 0) {
  112. Taro.showToast({
  113. title: "请选择公出时间,目前设置公出时间不足0.5小时",
  114. icon: "none",
  115. });
  116. return;
  117. }
  118. this.setState({
  119. loading: true,
  120. });
  121. let datas;
  122. if (this.props.enterpriseInfor.type == 0) {
  123. datas = {
  124. uid: this.props.enterpriseInfor.id,
  125. releaseStarts: this.state.rangeStartMinuteVal,
  126. releaseEnds: this.state.rangeEndMinuteVal,
  127. remarks: this.state.reason,
  128. plan: this.state.plan,
  129. expectedEffect: this.state.expectedEffect,
  130. userName: this.props.selectArrderLocation.name,
  131. longitude: this.props.selectArrderLocation.longitude,
  132. latitude: this.props.selectArrderLocation.latitude,
  133. annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
  134. duration: this.state.totalDuration,
  135. type: this.props.enterpriseInfor.type,
  136. validDate: JSON.stringify(this.state.validDates),
  137. };
  138. } else if (this.props.enterpriseInfor.type == 2) {
  139. datas = {
  140. uid: this.props.enterpriseInfor.id,
  141. releaseStarts: this.state.rangeStartMinuteVal,
  142. releaseEnds: this.state.rangeEndMinuteVal,
  143. remarks: this.state.reason,
  144. // plan: this.state.plan,
  145. // expectedEffect: this.state.expectedEffect,
  146. userName: this.props.selectArrderLocation.name,
  147. longitude: this.props.selectArrderLocation.longitude,
  148. latitude: this.props.selectArrderLocation.latitude,
  149. annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
  150. duration: this.state.totalDuration,
  151. type: this.props.enterpriseInfor.type,
  152. validDate: JSON.stringify(this.state.validDates),
  153. };
  154. } else {
  155. datas = {
  156. uid: this.props.enterpriseInfor.id,
  157. releaseStarts: this.state.rangeStartMinuteVal,
  158. releaseEnds: this.state.rangeEndMinuteVal,
  159. remarks: this.state.reason,
  160. plan: this.state.plan,
  161. expectedEffect: this.state.expectedEffect,
  162. userName: this.props.selectArrderLocation.name,
  163. longitude: this.props.selectArrderLocation.longitude,
  164. latitude: this.props.selectArrderLocation.latitude,
  165. annexUrl: this.state.imgs.length === 0 ? "" : this.state.imgs.join(","),
  166. duration: this.state.totalDuration,
  167. type: this.props.enterpriseInfor.type,
  168. orderNo: this.props.enterpriseInfor.orderNo,
  169. validDate: JSON.stringify(this.state.validDates),
  170. };
  171. }
  172. addPublicRelease(datas)
  173. .then((v) => {
  174. this.setState({
  175. loading: false,
  176. });
  177. if (v.error.length === 0) {
  178. Taro.eventCenter.trigger("publicContent", v.data);
  179. } else {
  180. Taro.showToast({
  181. title: v.error[0].message,
  182. icon: "none",
  183. });
  184. }
  185. })
  186. .catch(() => {
  187. this.setState({
  188. loading: false,
  189. });
  190. });
  191. }
  192. selectArrder() {
  193. const key = "AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT"; //使用在腾讯位置服务申请的key
  194. const referer = "科德打卡定位"; //调用插件的app的名称
  195. const category = "公司企业,房产小区";
  196. Taro.navigateTo({
  197. url:
  198. "plugin://chooseLocation/index?key=" +
  199. key +
  200. "&referer=" +
  201. referer +
  202. "&category=" +
  203. category,
  204. });
  205. }
  206. onChange(value, type) {
  207. let arr = this.state.imgs.concat([]);
  208. if (type === "add") {
  209. arr.push(value);
  210. } else if (type === "remove") {
  211. arr.splice(value, 1);
  212. }
  213. this.setState({
  214. imgs: arr,
  215. });
  216. }
  217. getWorkingHoursList() {
  218. getWorkingHoursList({})
  219. .then((v) => {
  220. if (v.error.length === 0) {
  221. let obj = Taro.getStorageSync("userInfor");
  222. let index = v.data.findIndex(
  223. (value) => value.type === obj.workTimeInfor.type
  224. );
  225. this.setState({
  226. workType: index !== -1 ? index : 0,
  227. });
  228. this.setState({
  229. workTypeList: v.data,
  230. });
  231. } else {
  232. Taro.showToast({
  233. title: v.error[0].message,
  234. icon: "none",
  235. });
  236. }
  237. })
  238. .catch((err) => {
  239. console.log(err);
  240. });
  241. }
  242. onPickerHide() {
  243. this.setState({
  244. isPickerRender: false,
  245. });
  246. }
  247. onSetPickerTime(val) {
  248. let data = val.detail;
  249. this.setState({
  250. rangeStartMinuteVal: data.selectStartTime,
  251. rangeEndMinuteVal: data.selectEndTime,
  252. });
  253. let arr = [];
  254. if (data.startTime && data.endTime) {
  255. let a = dayjs(data.startTime);
  256. let b = dayjs(data.endTime);
  257. let num;
  258. if (a.hour() <= b.hour()) {
  259. num = b.diff(a, "day") + 1;
  260. } else {
  261. num = b.diff(a, "day") + 2;
  262. }
  263. let strAdd = data.startTime;
  264. for (let i = 0; i < num; i++) {
  265. let time = dayjs(strAdd).add(i, "days").format("YYYY-MM-DD");
  266. arr.push({ value: time });
  267. }
  268. }
  269. this.setState(
  270. {
  271. rangeEndVal: dayjs(data.endTime).format("YYYY-MM-DD"),
  272. rangeStartVal: dayjs(data.startTime).format("YYYY-MM-DD"),
  273. validDates: arr,
  274. },
  275. () => {
  276. let a1 = dayjs(dayjs(data.endTime).format("YYYY-MM-DD HH:mm:ss"));
  277. let b1 = dayjs(dayjs(data.startTime).format("YYYY-MM-DD HH:mm:ss"));
  278. this.getNumHourse(b1, a1);
  279. }
  280. );
  281. }
  282. render() {
  283. return (
  284. <View className="publicContent">
  285. <View className="formItem">
  286. <View className="formName">公出企业:</View>
  287. <View className="formValue">{this.props.enterpriseInfor.name}</View>
  288. </View>
  289. <View className="formItem">
  290. <View className="formName">公出类型:</View>
  291. <View className="formValue">
  292. {this.props.enterpriseInfor.type == 0
  293. ? "业务公出"
  294. : this.props.enterpriseInfor.type == 1
  295. ? "技术公出"
  296. : this.props.enterpriseInfor.type == 2 && "行政公出"}
  297. </View>
  298. </View>
  299. {this.props.enterpriseInfor.contractNo ? (
  300. <View className="formItem">
  301. <View className="formName">合同编号:</View>
  302. <View className="formValue">
  303. {this.props.enterpriseInfor.contractNo}
  304. </View>
  305. </View>
  306. ) : (
  307. ""
  308. )}
  309. <View className="formItem">
  310. <View className="formName">作息时间类型:</View>
  311. <View className="formValue">
  312. <picker
  313. onChange={(e) => {
  314. this.setState({
  315. workType: e.detail.value,
  316. });
  317. if (this.state.workTypeList[e.detail.value]) {
  318. let obj = Taro.getStorageSync("userInfor");
  319. obj.workTimeInfor = this.state.workTypeList[e.detail.value];
  320. Taro.setStorageSync("userInfor", obj);
  321. this.setState({
  322. rangeStartVal: "",
  323. rangeStartMinuteVal: "",
  324. rangeEndMinuteVal: "",
  325. rangeEndVal: "",
  326. validDates: [],
  327. totalDuration: 0,
  328. });
  329. }
  330. }}
  331. value={this.state.workType}
  332. rangeKey="name"
  333. range={this.state.workTypeList}
  334. >
  335. <view style={{ display: "flex", alignItems: "center" }}>
  336. {this.state.workTypeList[this.state.workType]
  337. ? this.state.workTypeList[this.state.workType].name
  338. : ""}
  339. <AtIcon value="chevron-right" size="20" color="#bbbbbb" />
  340. </view>
  341. </picker>
  342. </View>
  343. </View>
  344. <View className="formItem">
  345. <View className="formName">公出时间:</View>
  346. <View className="formValue">
  347. <View
  348. className="time"
  349. onClick={() => {
  350. this.setState({
  351. isPickerRender: true,
  352. });
  353. }}
  354. >
  355. {this.state.rangeStartMinuteVal &&
  356. this.state.rangeEndMinuteVal ? (
  357. <View className="timeContent">
  358. <View>开始时间:{this.state.rangeStartMinuteVal}</View>
  359. <View>结束时间:{this.state.rangeEndMinuteVal}</View>
  360. </View>
  361. ) : (
  362. "请选择公出时间"
  363. )}
  364. </View>
  365. <timePicker
  366. config={{
  367. endDate: true,
  368. column: "minute",
  369. dateLimit: false,
  370. // initStartTime: "2019-01-01 12:32:44", //默认开始时间
  371. // initEndTime: "2019-12-01 12:32:44", //默认结束时间
  372. limitStartTime: dayjs()
  373. .subtract(3, "year")
  374. .format("YYYY-MM-DD HH:mm:ss"),
  375. limitEndTime: dayjs()
  376. .add(3, "year")
  377. .format("YYYY-MM-DD HH:mm:ss"),
  378. }}
  379. isPartition
  380. pickerShow={this.state.isPickerRender}
  381. onconditionaljudgment={(v) => {
  382. let a = dayjs(
  383. dayjs(v.detail.endTime)
  384. .second(0)
  385. .format("YYYY-MM-DD HH:mm:ss")
  386. );
  387. let b = dayjs(dayjs().second(0).format("YYYY-MM-DD HH:mm:ss"));
  388. if (a.isBefore(b)) {
  389. Taro.showToast({
  390. title: "结束时间不能小于当前时间",
  391. icon: "none",
  392. });
  393. v.detail.setLv(false);
  394. }
  395. }}
  396. onhidepicker={() => {
  397. this.onPickerHide();
  398. }}
  399. onsetpickertime={(v) => {
  400. this.onSetPickerTime(v);
  401. }}
  402. />
  403. </View>
  404. </View>
  405. <View className="formItem">
  406. <View className="formName">总时长:</View>
  407. <View className="formValue">{this.state.totalDuration}小时</View>
  408. </View>
  409. {this.state.validDates.length !== 0 ? (
  410. <View
  411. className="formItem"
  412. style={{ display: "block", paddingTop: "15px" }}
  413. >
  414. <View className="formName">
  415. <View>去除放假时间:</View>
  416. <View className="tips">
  417. 绿色方块为公出时间,长按即可去除放假时间
  418. </View>
  419. </View>
  420. <AtCalendar
  421. currentDate={this.state.rangeStartVal}
  422. minDate={this.state.rangeStartVal}
  423. maxDate={this.state.rangeEndVal}
  424. isSwiper={false}
  425. validDates={this.state.validDates}
  426. onDayLongClick={(item) => {
  427. if (
  428. !(
  429. dayjs(item.value).isSame(this.state.rangeStartVal) ||
  430. dayjs(item.value).isSame(this.state.rangeEndVal)
  431. )
  432. ) {
  433. if (
  434. !(
  435. dayjs(item.value).isAfter(this.state.rangeStartVal) &&
  436. dayjs(item.value).isBefore(this.state.rangeEndVal)
  437. )
  438. ) {
  439. return;
  440. }
  441. } else {
  442. Taro.showToast({
  443. title: "开始结束时间不能取消",
  444. icon: "none",
  445. });
  446. return;
  447. }
  448. let index = this.state.validDates.findIndex((v) => {
  449. let lv = dayjs(v.value).isSame(item.value);
  450. return lv;
  451. });
  452. const { start, end } = getUserWordTimes();
  453. let totalDuration = getHours(
  454. dayjs().format("YYYY-MM-DD") + start,
  455. dayjs(dayjs().format("YYYY-MM-DD") + end)
  456. ); //一天工作时长
  457. if (index < 0) {
  458. let arr = item.value.split("-");
  459. this.state.validDates.push({ value: arr.join("-") });
  460. this.setState({
  461. validDates: this.state.validDates,
  462. totalDuration: this.state.totalDuration + totalDuration,
  463. });
  464. } else {
  465. this.state.validDates.splice(index, 1);
  466. this.setState({
  467. validDates: this.state.validDates,
  468. totalDuration: this.state.totalDuration - totalDuration,
  469. });
  470. }
  471. }}
  472. />
  473. </View>
  474. ) : null}
  475. <View className="formItem" style={{ paddingBottom: 0 }}>
  476. <View className="formName">公出地点:</View>
  477. <View className="formValue" onClick={this.selectArrder}>
  478. <Text className="formValueText">
  479. {this.props.selectArrderLocation.name}
  480. </Text>
  481. <AtIcon value="chevron-right" size="30" color="#bbbbbb" />
  482. </View>
  483. </View>
  484. <View className="tips">
  485. 以地图为中心100米范围为可打卡区域,移动红标只需要拖动地图即可
  486. </View>
  487. <View
  488. className="formItem"
  489. style={{ display: "block", paddingTop: "15px" }}
  490. >
  491. {/* 公出目标 */}
  492. <View className="formName">
  493. <Text style={{ color: "red" }}>*公出目标:</Text>
  494. <View
  495. className="formValue"
  496. style={{ paddingTop: "10px", textAlign: "left" }}
  497. >
  498. <AtTextarea
  499. height={46}
  500. value={this.state.reason}
  501. onChange={(v) => {
  502. this.setState({
  503. reason: v,
  504. });
  505. }}
  506. maxLength={200}
  507. placeholder={
  508. this.props.enterpriseInfor.type == 2
  509. ? "详细说明本次公出的内容,预计完成的内容"
  510. : "本次公出目标,谈的思路与步骤?"
  511. }
  512. />
  513. </View>
  514. </View>
  515. {/* 公出计划 */}
  516. {this.props.enterpriseInfor.type != 2 && (
  517. <View className="formName">
  518. <Text style={{ color: "red" }}>*公出计划:</Text>
  519. <View
  520. className="formValue"
  521. style={{ paddingTop: "10px", textAlign: "left" }}
  522. >
  523. <AtTextarea
  524. height={46}
  525. value={this.state.plan}
  526. onChange={(v) => {
  527. this.setState({
  528. plan: v,
  529. });
  530. }}
  531. maxLength={200}
  532. placeholder="本次公出准备工作"
  533. />
  534. </View>
  535. </View>
  536. )}
  537. {/* 预计效果 */}
  538. {this.props.enterpriseInfor.type != 2 && (
  539. <View className="formName">
  540. <Text style={{ color: "red" }}>*预计效果:</Text>
  541. <View
  542. className="formValue"
  543. style={{ paddingTop: "10px", textAlign: "left" }}
  544. >
  545. <AtTextarea
  546. height={46}
  547. value={this.state.expectedEffect}
  548. onChange={(v) => {
  549. this.setState({
  550. expectedEffect: v,
  551. });
  552. }}
  553. maxLength={200}
  554. placeholder="预计本次公出效果"
  555. />
  556. </View>
  557. </View>
  558. )}
  559. </View>
  560. {/* */}
  561. <View className="formItem" style={{ display: "block" }}>
  562. <View className="formName">附件:</View>
  563. <View
  564. className="formValue"
  565. style={{ paddingTop: "10px", textAlign: "left" }}
  566. >
  567. <ImagePicker
  568. showAddBtn
  569. ref={(ref) => (this.imagePickerRef = ref)}
  570. url="/api/admin/release/upload"
  571. onChange={this.onChange}
  572. />
  573. </View>
  574. </View>
  575. <View className="operation">
  576. <AtButton
  577. disabled={this.state.loading}
  578. type="secondary"
  579. circle
  580. onClick={() => {
  581. Taro.eventCenter.trigger("enterpriseBack");
  582. }}
  583. >
  584. 上一步
  585. </AtButton>
  586. <AtButton
  587. type="primary"
  588. loading={this.state.loading}
  589. circle
  590. onClick={() => {
  591. if (this.state.loading) {
  592. return;
  593. }
  594. this.setState({
  595. isInquiryOpened: true,
  596. inquiryTitle: "提醒",
  597. inquiryContent: "您确定要提交此申请吗?",
  598. inquiryFn: () => {
  599. this.onSubmit();
  600. },
  601. });
  602. }}
  603. >
  604. 提交申请
  605. </AtButton>
  606. </View>
  607. <InquiryModal
  608. isOpened={this.state.isInquiryOpened}
  609. title={this.state.inquiryTitle}
  610. content={this.state.inquiryContent}
  611. onClose={() => {
  612. this.setState({
  613. isInquiryOpened: false,
  614. inquiryTitle: "",
  615. inquiryContent: "",
  616. });
  617. }}
  618. onDetermine={() => {
  619. this.state.inquiryFn();
  620. this.setState({
  621. isInquiryOpened: false,
  622. inquiryTitle: "",
  623. inquiryContent: "",
  624. inquiryFn: () => {},
  625. });
  626. }}
  627. />
  628. </View>
  629. );
  630. }
  631. }
  632. export default PublicContent;