publicContent.jsx 25 KB

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