publicContent.jsx 22 KB

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