publicContent.jsx 27 KB

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