index.jsx 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374
  1. import React, { Component } from 'react'
  2. import { connect } from 'react-redux'
  3. import { Input, Textarea, View, Text, Picker, Button } from '@tarojs/components'
  4. import { AtTextarea } from "taro-ui";
  5. import Taro, { getCurrentInstance } from '@tarojs/taro';
  6. import dayjs from 'dayjs';
  7. import Skeleton from 'taro-skeleton'
  8. import ImagePicker from '../../components/common/imagePicker';
  9. import { updateRecord, recordDetails, myDuration, myDurationMonth } from '../../utils/servers/servers';
  10. import { resourceAddress } from "../../utils/config";
  11. import { stageList } from '../../utils/tools/config';
  12. import './index.less';
  13. // import '../punchClock/index.less'
  14. import 'taro-ui/dist/style/components/noticebar.scss';
  15. import 'taro-ui/dist/style/components/icon.scss';
  16. import 'taro-ui/dist/style/components/list.scss';
  17. import "taro-ui/dist/style/components/radio.scss";
  18. import "taro-ui/dist/style/components/icon.scss";
  19. class ReClockin extends Component {
  20. $instance = getCurrentInstance();
  21. constructor(props) {
  22. super(props);
  23. this.state = {
  24. imgs: [],
  25. loading: false,
  26. selector: stageList,
  27. dateSel: "",
  28. duration: "",
  29. hours: 0,
  30. selectorChecked: {},
  31. content: "",
  32. data: {},
  33. isOpened: false,
  34. dateList: [],
  35. year: 2000,
  36. month: 1,
  37. date: 1,
  38. }
  39. this.onChange = this.onChange.bind(this);
  40. this.updateRecordClockIn = this.updateRecordClockIn.bind(this);
  41. this.onSelectDate = this.onSelectDate.bind(this);
  42. this.onChangeDate = this.onChangeDate.bind(this);
  43. this.onMyDurationMonth = this.onMyDurationMonth.bind(this);
  44. this.onmyDuration = this.onmyDuration.bind(this);
  45. }
  46. componentDidMount() {
  47. this.getReleasetDails();
  48. }
  49. componentWillMount() {
  50. }
  51. componentDidHide() {
  52. }
  53. // 剩余打卡时间
  54. onmyDuration(id, recordTime) {
  55. myDuration({
  56. id,
  57. recordTime
  58. }).then(v => {
  59. if (v.code === 200) {
  60. this.setState({
  61. hours: v.data,
  62. })
  63. } else {
  64. Taro.showToast({ title: v.msg, icon: 'none' })
  65. }
  66. }).catch(() => {
  67. Taro.showToast({
  68. title: '系统错误,请稍后再试',
  69. icon: 'none'
  70. })
  71. })
  72. }
  73. onMyDurationMonth(id, time) {
  74. myDurationMonth({
  75. id,
  76. year: time.year,
  77. month: time.month,
  78. }).then(v => {
  79. if (v.code === 200) {
  80. this.setState({
  81. dateList: v.data,
  82. })
  83. } else {
  84. Taro.showToast({ title: v.msg, icon: 'none' })
  85. }
  86. }).catch(() => {
  87. Taro.showToast({
  88. title: '系统错误,请稍后再试',
  89. icon: 'none'
  90. })
  91. })
  92. }
  93. // 项目详情
  94. getReleasetDails() {
  95. recordDetails({
  96. id: this.$instance.router.params.id,
  97. }).then((v) => {
  98. if (v.code === 200) {
  99. if (v.data) {
  100. let list = [];
  101. for (let i of (v.data.annexUrl || '').split(',')) {
  102. if (i) {
  103. list.push({ 'url': resourceAddress + i })
  104. }
  105. }
  106. this.onmyDuration(v.data.pid, v.data.recordTime)
  107. let date = dayjs(v.data.recordTime)
  108. this.onMyDurationMonth(v.data.pid, { year: date.year(), month: date.month() + 1 })
  109. this.setState({
  110. year: date.year(),
  111. month: date.month() + 1,
  112. date: date.date(),
  113. data: v.data,
  114. pid: v.data.pid,
  115. imgs: list,
  116. dateSel: v.data.recordTime,
  117. selectorChecked: this.state.selector[v.data.projectStatus],
  118. duration: v.data.duration,
  119. content: v.data.content,
  120. processStatus: v.data.processStatus,
  121. recordTime: v.data.recordTime,
  122. isOpened: true,
  123. }, () => {
  124. })
  125. }
  126. } else {
  127. Taro.showToast({ title: v.msg, icon: "none" });
  128. }
  129. }).catch((err) => {
  130. Taro.showToast({ title: "系统错误,请稍后再试", icon: "none" });
  131. });
  132. }
  133. onChange(value, type) {
  134. let arr = this.state.imgs.concat([]);
  135. if (type === "add") {
  136. arr.push(value);
  137. } else if (type === "remove") {
  138. arr.splice(value, 1);
  139. }
  140. this.setState({
  141. imgs: arr,
  142. });
  143. }
  144. updateRecordClockIn() {
  145. let arr = []
  146. for (let i of this.state.imgs) {
  147. if (!!i.url) {
  148. arr.push(i.url.split(resourceAddress).join(""));
  149. } else {
  150. arr.push(i)
  151. }
  152. }
  153. if (!this.state.dateSel) {
  154. Taro.showToast({ title: '请选择研发时间!', icon: 'none' });
  155. return
  156. }
  157. if (!this.state.duration) {
  158. Taro.showToast({ title: '请填写工时!', icon: 'none' });
  159. return
  160. }
  161. if (!this.state.selectorChecked) {
  162. Taro.showToast({ title: '请选择研发阶段!', icon: 'none' });
  163. return
  164. }
  165. Taro.showLoading({ title: '打卡中...' });
  166. updateRecord({
  167. id: this.$instance.router.params.id,
  168. pid: this.state.data.pid,
  169. projectStatus: this.state.selectorChecked.value,
  170. duration: this.state.duration,
  171. content: this.state.content,
  172. annexUrl: arr.join(','),
  173. processStatus: 1,
  174. recordTime: this.state.dateSel,
  175. }).then(v => {
  176. Taro.hideLoading()
  177. if (v.code === 200) {
  178. Taro.showToast({ title: '打卡成功', icon: 'none' });
  179. Taro.navigateBack({ delta: 1 });
  180. } else {
  181. Taro.showToast({ title: v.msg, icon: 'none' })
  182. }
  183. }).catch(() => {
  184. Taro.hideLoading()
  185. Taro.showToast({
  186. title: '系统错误,请稍后再试',
  187. icon: 'none'
  188. })
  189. })
  190. }
  191. onSelectDate(val) {
  192. let data = val.detail;
  193. this.setState({
  194. dateSel: data
  195. }, () => {
  196. this.onmyDuration(this.state.pid, data)
  197. })
  198. }
  199. onChangeDate(val) {
  200. let data = val.detail;
  201. !!this.state.pid && this.onMyDurationMonth(this.state.pid, data)
  202. }
  203. render() {
  204. const { data, dateList } = this.state;
  205. return (
  206. <View className='punchClock'>
  207. <View className='header'>
  208. <Skeleton
  209. title
  210. avatar
  211. row={2}
  212. animateName='elastic'
  213. avatarShape='square'
  214. loading={this.state.loading}
  215. >
  216. <View className='headerContent'>
  217. <View className='item' style={{ width: "100%", display: "flex", flexDirection: "row", JustifyContent: "space-between" }}>
  218. <View className="item_name">{data.name}</View>
  219. {/* <AtButton type="primary" size="small"
  220. onClick={() => {
  221. Taro.switchTab({
  222. url: "/pages/project/index",
  223. });
  224. }}>切换</AtButton> */}
  225. </View>
  226. <View className='item'>
  227. <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发时间:
  228. {/* <Picker mode='date'
  229. onChange={e => {
  230. this.setState({
  231. dateSel: e.detail.value
  232. })
  233. }}>
  234. <View className='picker'>
  235. {!!this.state.dateSel ? this.state.dateSel : "请选择"}
  236. </View>
  237. </Picker> */}
  238. <View className='picker'>
  239. {this.state.dateSel}
  240. </View>
  241. </View>
  242. </View>
  243. {
  244. this.state.isOpened &&
  245. <calendar
  246. use_date_arr={dateList}
  247. year={this.state.year}
  248. month={this.state.month}
  249. nowYear={this.state.year}
  250. nowMonth={this.state.month}
  251. nowDay={this.state.date}
  252. onselectdate={(v) => {
  253. this.onSelectDate(v)
  254. }}
  255. onchangedate={(v) => {
  256. this.onChangeDate(v)
  257. }}
  258. />
  259. }
  260. <View className='items'>
  261. <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发工时:
  262. <Input value={this.state.duration} type='digit' className='input' placeholder='请输入'
  263. style={{ textAlign: "center", background: "#F5F5F5", borderRadius: "15px", padding: "3px 5px" }}
  264. onInput={e => {
  265. this.setState({
  266. duration: e.detail.value
  267. })
  268. }}
  269. />&nbsp;小时&nbsp;
  270. <Text style={{ color: "red", fontSize: "15px" }}>剩余打卡({this.state.hours}h)</Text>
  271. </View>
  272. </View>
  273. <View className='item'>
  274. <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发阶段:
  275. <Picker mode='selector' range={this.state.selector} rangeKey="lable"
  276. value={this.state.selectorChecked.value}
  277. onChange={e => {
  278. this.setState({
  279. selectorChecked: this.state.selector[e.detail.value]
  280. })
  281. }}>
  282. <View className='picker'>
  283. {!!this.state.selectorChecked ? this.state.selectorChecked.lable : "请选择"}
  284. </View>
  285. </Picker>
  286. </View>
  287. </View>
  288. <View className='items'>
  289. <View className='ititles'><Text style={{ width: "7px" }}></Text>研发记录:
  290. <AtTextarea
  291. value={this.state.content}
  292. onChange={value => {
  293. this.setState({
  294. content: value,
  295. });
  296. }}
  297. maxLength={500}
  298. placeholder="请填写研发过程记录"
  299. />
  300. {/* <Textarea
  301. value={this.state.content}
  302. style='background:#D7D7D7;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px;border-radius: 10px' autoHeight
  303. onInput={e => {
  304. this.setState({
  305. content: e.detail.value
  306. })
  307. }}
  308. /> */}
  309. </View>
  310. </View>
  311. <View className='items'>
  312. <View className='ititles'><Text style={{ width: "7px" }}></Text>上传附件:</View>
  313. {this.state.isOpened &&
  314. <ImagePicker
  315. showAddBtn
  316. files={this.state.imgs}
  317. ref={(ref) => (this.imagePickerRef = ref)}
  318. url="/api/project/upload"
  319. onChange={this.onChange}
  320. />}
  321. <View>
  322. <Text className='text'>注:包括研发日志、实验报告、实验记录、检测报告、会议纪要、会议照片等</Text>
  323. </View>
  324. </View>
  325. <View className='content'>
  326. <View className='punchClockContent'
  327. onClick={this.updateRecordClockIn}
  328. style={{
  329. boxShadow: '1px 1px 15px 1px #acb8ad',
  330. background: '#009DD9',
  331. }}>
  332. <View className='punchClockTitle'>重新打卡</View>
  333. </View>
  334. </View>
  335. </View>
  336. </Skeleton>
  337. </View>
  338. </View>
  339. )
  340. }
  341. }
  342. export default ReClockin