punchClocks.jsx 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  1. import React, { Component } from 'react'
  2. import { connect } from 'react-redux'
  3. import { Input, View, Text, Picker, Button, Image } from '@tarojs/components'
  4. import Taro from '@tarojs/taro';
  5. import {
  6. AtButton, AtModal, AtModalContent, AtModalAction, AtTextarea
  7. } from "taro-ui";
  8. import dayjs from 'dayjs';
  9. import Skeleton from 'taro-skeleton'
  10. import ImagePicker from '../../components/common/imagePicker';
  11. import { add, minus, asyncAdd } from '../../actions/counter'
  12. import { recordAdd, myDuration, getInfo, myDurationMonth } from '../../utils/servers/servers';
  13. import Select from "../../image/dui.png";
  14. import { stageList } from '../../utils/tools/config';
  15. import './index.less';
  16. import 'taro-ui/dist/style/components/noticebar.scss';
  17. import 'taro-ui/dist/style/components/icon.scss';
  18. import 'taro-ui/dist/style/components/list.scss';
  19. import "taro-ui/dist/style/components/radio.scss";
  20. import "taro-ui/dist/style/components/icon.scss";
  21. @connect(({ counter }) => ({
  22. counter
  23. }), (dispatch) => ({
  24. add() {
  25. dispatch(add())
  26. },
  27. dec() {
  28. dispatch(minus())
  29. },
  30. asyncAdd() {
  31. dispatch(asyncAdd())
  32. }
  33. }))
  34. class PunchClocks extends Component {
  35. constructor(props) {
  36. super(props);
  37. this.state = {
  38. imgs: [],
  39. nowTime: '00:00:00',
  40. loading: false,
  41. selector: stageList,
  42. dateSel: dayjs().format('YYYY-MM-DD'),
  43. duration: "",
  44. hours: 0,
  45. selectorChecked: {},
  46. remark: "",
  47. data: {},
  48. isOpened: false,
  49. clockId: "",
  50. dateList: [],
  51. isCalendar: true,
  52. year: new Date().getFullYear(),
  53. month: new Date().getMonth() + 1,
  54. day: new Date().getDate(),
  55. }
  56. this.onChange = this.onChange.bind(this);
  57. this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
  58. this.onClose = this.onClose.bind(this);
  59. this.onMyDurationMonth = this.onMyDurationMonth.bind(this);
  60. this.onmyDuration = this.onmyDuration.bind(this);
  61. }
  62. nowTime = null;
  63. componentDidMount() {
  64. this.props.onRef && this.props.onRef(this);
  65. this.imagePickerRef && this.imagePickerRef.clear();
  66. this.getInfo()
  67. }
  68. getInfo() {
  69. getInfo().then(v => {
  70. })
  71. }
  72. componentWillMount() {
  73. const { year, month } = this.state
  74. this.nowTime = setInterval(() => {
  75. this.setState({
  76. nowTime: dayjs().format('HH:mm:ss')
  77. })
  78. }, 1000)
  79. Taro.eventCenter.on('GoPunchIn', (arg) => {
  80. this.setState({
  81. data: arg,
  82. isCalendar: false,
  83. }, () => {
  84. this.onmyDuration()
  85. !!arg.id && this.onMyDurationMonth({ id: arg.id }, { year, month })
  86. })
  87. })
  88. }
  89. // 剩余打卡时间
  90. onmyDuration() {
  91. if (!this.state.data.id) {
  92. return
  93. }
  94. myDuration({
  95. id: this.state.data.id,
  96. recordTime: this.state.dateSel,
  97. }).then(v => {
  98. if (v.code === 200) {
  99. this.setState({
  100. hours: v.data,
  101. })
  102. } else {
  103. Taro.showToast({ title: v.msg, icon: 'none' })
  104. }
  105. }).catch(() => {
  106. Taro.showToast({
  107. title: '系统错误,请稍后再试',
  108. icon: 'none'
  109. })
  110. })
  111. }
  112. onMyDurationMonth(val, time) {
  113. Taro.showLoading({ title: '加载中...' });
  114. myDurationMonth({
  115. id: val.id,
  116. year: time.year,
  117. month: time.month,
  118. }).then(v => {
  119. Taro.hideLoading()
  120. if (v.code === 200) {
  121. this.setState({
  122. dateList: v.data,
  123. isCalendar: true,
  124. })
  125. } else {
  126. Taro.showToast({ title: v.msg, icon: 'none' })
  127. }
  128. }).catch(() => {
  129. Taro.hideLoading()
  130. Taro.showToast({
  131. title: '系统错误,请稍后再试',
  132. icon: 'none'
  133. })
  134. })
  135. }
  136. onChange(value, type) {
  137. let arr = this.state.imgs.concat([]);
  138. if (type === "add") {
  139. arr.push(value);
  140. } else if (type === "remove") {
  141. arr.splice(value, 1);
  142. }
  143. this.setState({
  144. imgs: arr,
  145. });
  146. }
  147. publicReleaseClockIn() {
  148. if (!this.state.dateSel) {
  149. Taro.showToast({ title: '请选择研发时间!', icon: 'none' });
  150. return
  151. }
  152. if (!this.state.duration) {
  153. Taro.showToast({ title: '请填写研发工时!', icon: 'none' });
  154. return
  155. }
  156. if (Object.keys(this.state.selectorChecked).length == 0) {
  157. Taro.showToast({ title: '请选择研发阶段!', icon: 'none' });
  158. return
  159. }
  160. Taro.showLoading({ title: '打卡中...' });
  161. recordAdd({
  162. pid: this.state.data.id,
  163. projectStatus: this.state.selectorChecked.value,
  164. duration: this.state.duration,
  165. content: this.state.remark,
  166. annexUrl: this.state.imgs.join(','),
  167. processStatus: 1,
  168. recordTime: this.state.dateSel,
  169. }).then(v => {
  170. Taro.hideLoading()
  171. if (v.code === 200) {
  172. Taro.showToast({ title: '打卡成功', icon: 'none' });
  173. this.setState({
  174. clockId: v.data.id,
  175. isOpened: true,
  176. isCalendar: false,
  177. })
  178. } else {
  179. Taro.showToast({ title: v.msg, icon: 'none' })
  180. }
  181. }).catch(() => {
  182. Taro.hideLoading()
  183. Taro.showToast({
  184. title: '系统错误,请稍后再试',
  185. icon: 'none'
  186. })
  187. })
  188. }
  189. onClose() {
  190. const { clockId } = this.state
  191. this.imagePickerRef && this.imagePickerRef.clear();
  192. this.setState({
  193. dateSel: dayjs().format('YYYY-MM-DD'),
  194. year: new Date().getFullYear(),
  195. month: new Date().getMonth() + 1,
  196. day: new Date().getDate(),
  197. duration: "",
  198. selectorChecked: {},
  199. remark: "",
  200. imgs: [],
  201. isOpened: false,
  202. isCalendar: true,
  203. })
  204. if (!!clockId) {
  205. Taro.navigateTo({
  206. url: `/pages/detail/index?id=${clockId}&type=0`
  207. })
  208. }
  209. }
  210. onSelectDate(val) {
  211. let data = val.detail;
  212. let date = dayjs(data)
  213. this.setState({
  214. dateSel: data,
  215. year: date.year(),
  216. month: date.month() + 1,
  217. day: date.date(),
  218. }, () => {
  219. this.onmyDuration()
  220. })
  221. }
  222. onChangeDate(val) {
  223. let data = val.detail;
  224. this.onMyDurationMonth(this.state.data, data)
  225. }
  226. render() {
  227. const { data, dateList, year, month, day } = this.state;
  228. return (
  229. <View className='punchClock'>
  230. <View className='header'>
  231. <Skeleton
  232. title
  233. avatar
  234. row={2}
  235. animateName='elastic'
  236. avatarShape='square'
  237. loading={this.state.loading}
  238. >
  239. {
  240. !data.id ?
  241. <View className='content'>
  242. <View className='punchClockContent'
  243. style={{
  244. boxShadow: '1px 1px 15px 1px #acb8ad',
  245. background: '#828e83',
  246. marginTop: '85px',
  247. }}>
  248. <View className='punchClockTitle'>研发打卡</View>
  249. <View className='punchClockTime'>{this.state.nowTime}</View>
  250. </View>
  251. <View className='noData'>
  252. <View className='tipsNoData'>
  253. {/* 暂无打卡项目 */}
  254. </View>
  255. <View className='goOut' onClick={() => {
  256. Taro.switchTab({
  257. url: '/pages/project/index',
  258. })
  259. }}>
  260. 点击前往选择项目
  261. </View>
  262. </View>
  263. </View> :
  264. <View className='headerContent'>
  265. <View className='item' style={{ width: "100%", display: "flex", flexDirection: "row", JustifyContent: "space-between" }}>
  266. <View className="item_name">{data.name}</View>
  267. <AtButton type="primary" size="small"
  268. onClick={() => {
  269. Taro.switchTab({
  270. url: "/pages/project/index",
  271. });
  272. }}>切换</AtButton>
  273. </View>
  274. <View className='item'>
  275. <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发时间:
  276. <View className='picker'>
  277. {this.state.dateSel}
  278. </View>
  279. </View>
  280. </View>
  281. {
  282. this.state.isCalendar &&
  283. <calendar
  284. use_date_arr={dateList}
  285. year={year}
  286. month={month}
  287. nowYear={year}
  288. nowMonth={month}
  289. nowDay={day}
  290. onselectdate={(v) => {
  291. this.onSelectDate(v)
  292. }}
  293. onchangedate={(v) => {
  294. this.onChangeDate(v)
  295. }}
  296. />
  297. }
  298. <View className='items'>
  299. <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发工时:
  300. <Input value={this.state.duration} type='digit' className='input' placeholder='请输入'
  301. style={{ textAlign: "center", background: "#F5F5F5", borderRadius: "15px", padding: "3px 5px" }}
  302. // border: "1px solid #d6e4ef",
  303. onInput={e => {
  304. this.setState({
  305. duration: e.detail.value
  306. })
  307. }}
  308. />&nbsp;小时&nbsp;
  309. <Text style={{ color: "red", fontSize: "15px" }}>剩余打卡({this.state.hours}h)</Text>
  310. </View>
  311. </View>
  312. <View className='item'>
  313. <View className='ititle'><Text style={{ color: "red", width: "7px" }}>*</Text>研发阶段:
  314. <Picker mode='selector' range={this.state.selector} rangeKey="lable"
  315. value={this.state.selectorChecked.value}
  316. onChange={e => {
  317. this.setState({
  318. selectorChecked: this.state.selector[e.detail.value]
  319. })
  320. }}>
  321. <View className='picker'>
  322. {!!this.state.selectorChecked.lable ? this.state.selectorChecked.lable : "请选择"}
  323. </View>
  324. </Picker>
  325. </View>
  326. </View>
  327. <View className='items'>
  328. <View className='ititles'><Text style={{ width: "7px" }}></Text>研发记录:
  329. <AtTextarea
  330. value={this.state.remark}
  331. onChange={value => {
  332. this.setState({
  333. remark: value,
  334. });
  335. }}
  336. maxLength={500}
  337. placeholder="请填写研发过程记录"
  338. />
  339. {/*
  340. <Textarea
  341. value={this.state.remark}
  342. placeholder="请填写研发过程记录不能超过500字"
  343. style='background:#D7D7D7;width:66%;min-height:70px;padding:10px;border-radius: 10px'
  344. autoHeight
  345. maxlength={500}
  346. onInput={e => {
  347. this.setState({
  348. remark: e.detail.value
  349. })
  350. }}
  351. /> */}
  352. </View>
  353. </View>
  354. <View className='items'>
  355. <View className='ititles'><Text style={{ width: "7px" }}></Text>上传附件:</View>
  356. <ImagePicker
  357. showAddBtn
  358. ref={(ref) => (this.imagePickerRef = ref)}
  359. url="/api/project/upload"
  360. onChange={this.onChange}
  361. />
  362. <View>
  363. <Text className='text'>注:包括研发日志、实验报告、实验记录、检测报告、会议纪要、会议照片等</Text>
  364. </View>
  365. </View>
  366. <View className='content'>
  367. <View className='punchClockContent'
  368. onClick={this.publicReleaseClockIn}
  369. style={{
  370. boxShadow: '1px 1px 15px 1px #acb8ad',
  371. background: '#009DD9',
  372. }}>
  373. <View className='punchClockTitle'>研发打卡</View>
  374. </View>
  375. </View>
  376. </View>
  377. }
  378. </Skeleton>
  379. </View >
  380. <AtModal
  381. width="90%"
  382. isOpened={this.state.isOpened}
  383. >
  384. <AtModalContent>
  385. <View className='tips'>
  386. <Image src={Select} className="img" />
  387. <View className="tit">成功打卡</View>
  388. <View className="txt">您的研发打卡,已经确定</View>
  389. <View className="txt">请注意查看打卡审核情况!</View>
  390. </View>
  391. </AtModalContent>
  392. <AtModalAction>
  393. <Button onClick={this.onClose}>确定</Button>
  394. </AtModalAction>
  395. </AtModal>
  396. </View >
  397. )
  398. }
  399. }
  400. export default PunchClocks