modify.jsx 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. import React, { Component } from "react";
  2. import {
  3. AtCalendar,
  4. AtModal,
  5. AtModalAction,
  6. AtModalContent,
  7. AtButton,
  8. } from "taro-ui";
  9. import { Button, View } from "@tarojs/components";
  10. import Enterprise from "./enterprise";
  11. import PublicContent from "./publicContent";
  12. import { updatePublicRelease } from "../../utils/servers/servers";
  13. import "taro-ui/dist/style/components/modal.scss";
  14. import Taro from "@tarojs/taro";
  15. class Modify extends Component {
  16. constructor(props) {
  17. super(props);
  18. this.state = {
  19. data: {},
  20. dtails: props.dtails,
  21. modifyType: 2,
  22. // colors: "primary",
  23. // color: "secondary",
  24. type: 0,
  25. visibles: true,
  26. };
  27. this.submit = this.submit.bind(this);
  28. this.onChange = this.onChange.bind(this);
  29. this.onVisible = this.onVisible.bind(this);
  30. }
  31. submit() {
  32. if (Object.keys(this.state.data).length === 0) {
  33. Taro.showToast({ title: "请先选择公出的企业", icon: "none" });
  34. return;
  35. } else if (this.state.type == 1) {
  36. Taro.showToast({ title: "技术公出请直接点击公出企业", icon: "none" });
  37. return;
  38. }
  39. this.setState({
  40. modifyType: 2,
  41. });
  42. }
  43. onVisible() {
  44. this.setState({
  45. visibles: false,
  46. });
  47. }
  48. componentWillUnmount() {
  49. this.setState({
  50. data: {},
  51. });
  52. }
  53. onChange(value, visi) {
  54. value.type = this.state.type;
  55. this.setState({
  56. dtails: {
  57. ...this.state.dtails,
  58. ...value,
  59. },
  60. data: value,
  61. modifyType: 2,
  62. });
  63. //判断不明确暂时注释,明确后再行修改
  64. // if (visi == 0) {
  65. // this.setState({
  66. // dtails: {
  67. // ...this.state.dtails,
  68. // ...value,
  69. // },
  70. // data: value,
  71. // });
  72. // } else {
  73. // value.type = this.state.type;
  74. // this.setState({
  75. // dtails: {
  76. // ...this.state.dtails,
  77. // ...value,
  78. // },
  79. // data: value,
  80. // modifyType: 2,
  81. // });
  82. // }
  83. }
  84. render() {
  85. return (
  86. <AtModal isOpened={this.props.isOpened} onClose={this.props.onModalClose}>
  87. {this.state.modifyType === 1 ? (
  88. <View
  89. style={{ display: "flex", margin: "10px 0 0 0", padding: "0 5px" }}
  90. >
  91. {[
  92. { type: 0, title: "业务公出" },
  93. { type: 1, title: "技术公出" },
  94. { type: 2, title: "行政公出" },
  95. ].map((item) => (
  96. <View style={{ margin: "0 5px" }} key={item.type}>
  97. <AtButton
  98. circle
  99. size="small"
  100. type={this.state.type == item.type ? "primary" : "secondary"}
  101. onClick={() => {
  102. this.setState({
  103. type: item.type,
  104. });
  105. item.type != 1 &&
  106. this.setState({
  107. visibles: true,
  108. });
  109. }}
  110. >
  111. {item.title}
  112. </AtButton>
  113. </View>
  114. ))}
  115. {/* <View style={{ margin: '0 10px' }}>
  116. <AtButton circle size='small' type={this.state.colors} onClick={() => {
  117. this.setState({
  118. colors: 'primary',
  119. color: 'secondary',
  120. type: 0,
  121. visibles:true
  122. })
  123. }}>业务/行政公出</AtButton>
  124. </View>
  125. <AtButton type={this.state.color} circle size='small' onClick={() => {
  126. this.setState({
  127. colors: 'secondary',
  128. color: 'primary',
  129. type: 1,
  130. })
  131. }}>技术公出</AtButton> */}
  132. <View style={{ flex: "1" }}></View>
  133. </View>
  134. ) : (
  135. ""
  136. )}
  137. <AtModalContent>
  138. {this.state.modifyType === 1 ? (
  139. <Enterprise
  140. type={this.state.type}
  141. isOpened={this.props.isOpened}
  142. isVerify={this.props.isVerify} //判断是否在审核中修改
  143. onChange={this.onChange}
  144. />
  145. ) : (
  146. <PublicContent
  147. permission={this.props.permission}
  148. index={this.props.index}
  149. type={this.state.type}
  150. onClose={() => {
  151. this.props.onClose();
  152. }}
  153. locationInfor={this.props.locationInfor}
  154. dtails={this.state.dtails}
  155. isOpened={this.props.isOpened}
  156. isVerify={this.props.isVerify}
  157. reason={this.props.reason}//修改原因
  158. onChange={this.onChange}
  159. onBack={() => {
  160. this.setState({
  161. modifyType: 1,
  162. });
  163. }}
  164. />
  165. )}
  166. </AtModalContent>
  167. {this.state.modifyType === 1 ? (
  168. <AtModalAction>
  169. <Button
  170. onClick={() => {
  171. this.props.onClose();
  172. }}
  173. >
  174. 取消
  175. </Button>
  176. <Button onClick={this.submit}>下一步</Button>
  177. </AtModalAction>
  178. ) : null}
  179. </AtModal>
  180. );
  181. }
  182. }
  183. export default Modify;