publicContent.jsx 37 KB

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