publicContent.jsx 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. import React,{Component} from 'react';
  2. import Taro,{getCurrentInstance } from '@tarojs/taro';
  3. import {Text, View} from '@tarojs/components'
  4. import dayjs from 'dayjs';
  5. import './index.less';
  6. import DateTimePicker from '../../components/common/DateTimePicker';
  7. import ImagePicker from '../../components/common/imagePicker'
  8. import {AtButton, AtTextarea, AtIcon, AtCalendar, message} from 'taro-ui'
  9. import {addPublicRelease} from '../../utils/servers/servers';
  10. import 'taro-ui/dist/style/components/form.scss';
  11. import 'taro-ui/dist/style/components/button.scss';
  12. import 'taro-ui/dist/style/components/loading.scss';
  13. import 'taro-ui/dist/style/components/icon.scss';
  14. import 'taro-ui/dist/style/components/icon.scss';
  15. import 'taro-ui/dist/style/components/textarea.scss';
  16. import 'taro-ui/dist/style/components/calendar.scss';
  17. import './publicContent.less';
  18. import InquiryModal from "../../components/common/inquiryModal";
  19. class PublicContent extends Component{
  20. constructor(props) {
  21. super(props);
  22. this.state={
  23. rangeStartVal:'',
  24. rangeEndVal:'',
  25. rangeEndMinuteVal:'',
  26. rangeStartMinuteVal:'',
  27. reason:'',
  28. imgs:[],
  29. validDates:[],
  30. totalDuration:0,
  31. loading:false,
  32. }
  33. this.onSubmit = this.onSubmit.bind(this);
  34. this.selectArrder = this.selectArrder.bind(this);
  35. this.onChange = this.onChange.bind(this);
  36. }
  37. componentDidMount() {
  38. Taro.eventCenter.on('result', () => {
  39. this.rangeEndRef && this.rangeEndRef.clear();
  40. this.rangeStartRef && this.rangeStartRef.clear();
  41. this.imagePickerRef && this.imagePickerRef.clear();
  42. this.setState({
  43. rangeStartVal:'',
  44. rangeEndVal:'',
  45. rangeEndMinuteVal:'',
  46. rangeStartMinuteVal:'',
  47. reason:'',
  48. imgs:[],
  49. validDates:[],
  50. totalDuration:0,
  51. loading:false,
  52. })
  53. })
  54. }
  55. getHours(startTime,endTime){
  56. let a1 = dayjs(startTime);
  57. let b1 = dayjs(endTime);
  58. let c1 = b1.diff(a1,'minutes');
  59. let hourse = parseInt(c1/60);
  60. let minutes = c1%60
  61. let minutes1 = parseInt(minutes / 30)*0.5;
  62. //开始时间在12:00之前 包括12:00
  63. if(!a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))){
  64. if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+' 13:30'))){
  65. return hourse+minutes1-1.5
  66. }else if(!b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+' 12:00'))){
  67. return hourse+minutes1
  68. }else{
  69. let a2 = dayjs(startTime);
  70. let b2 = dayjs(b1.format('YYYY-MM-DD')+' 12:00');
  71. let c2 = b2.diff(a2,'minutes');
  72. let hourse2 = parseInt(c2/60);
  73. let minutes2 = c2%60
  74. let minutes3 = parseInt(minutes2 / 30)*0.5;
  75. return hourse2+minutes3
  76. }
  77. // 开始时间在12:00之后13:30之前
  78. }else if(a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 13:30')) && a1.isAfter(dayjs(a1.format('YYYY-MM-DD')+' 12:00'))){
  79. if(b1.isAfter(dayjs(b1.format('YYYY-MM-DD')+' 13:30'))){
  80. let a2 = dayjs(a1.format('YYYY-MM-DD')+' 13:30');
  81. let b2 = dayjs(endTime);
  82. let c2 = b2.diff(a2,'minutes');
  83. let hourse2 = parseInt(c2/60);
  84. let minutes2 = c2%60
  85. let minutes3 = parseInt(minutes2 / 30)*0.5;
  86. return hourse2+minutes3
  87. }else{
  88. return 0;
  89. }
  90. //开始时间在13:30之后 包括13:30
  91. }else if(!a1.isBefore(dayjs(a1.format('YYYY-MM-DD')+' 13:30'))){
  92. return hourse+minutes1
  93. }
  94. }
  95. getNumHourse(startTime,endTime){
  96. if(dayjs(dayjs(startTime).format('YYYY-MM-DD')).isSame(dayjs(dayjs(endTime).format('YYYY-MM-DD')))){
  97. this.setState({
  98. totalDuration:this.getHours(startTime,endTime)
  99. })
  100. }else{
  101. let a = this.getHours(startTime,dayjs(startTime.format('YYYY-MM-DD')+' 17:30'));
  102. let b = this.getHours(dayjs(endTime.format('YYYY-MM-DD')+' 8:30'),endTime);
  103. let c = (this.state.validDates.length-2)*7.5;
  104. this.setState({
  105. totalDuration:a+b+c
  106. })
  107. }
  108. }
  109. onSubmit(){
  110. if(!this.state.rangeStartMinuteVal){
  111. Taro.showToast({title:'请选择公出开始时间',icon:'none'})
  112. return ;
  113. }
  114. if(!this.state.rangeEndMinuteVal){
  115. Taro.showToast({title:'请选择公出结束时间',icon:'none'})
  116. return ;
  117. }
  118. if(!(this.props.selectArrderLocation.longitude && this.props.selectArrderLocation.latitude)){
  119. Taro.showToast({title:'请选择公出地点',icon:'none'})
  120. return ;
  121. }
  122. if(!this.state.reason){
  123. Taro.showToast({title:'请输入公出事由',icon:'none'})
  124. return ;
  125. }
  126. if(this.state.totalDuration === 0){
  127. Taro.showToast({title:'公出时间不足0小时',icon:'none'})
  128. return ;
  129. }
  130. this.setState({
  131. loading:true
  132. })
  133. addPublicRelease({
  134. uid:this.props.enterpriseInfor.id,
  135. releaseStarts:this.state.rangeStartMinuteVal,
  136. releaseEnds:this.state.rangeEndMinuteVal,
  137. remarks:this.state.reason,
  138. userName: this.props.selectArrderLocation.name,
  139. longitude: this.props.selectArrderLocation.longitude,
  140. latitude: this.props.selectArrderLocation.latitude,
  141. annexUrl: this.state.imgs.length === 0 ? '' : this.state.imgs.join(','),
  142. duration: this.state.totalDuration,
  143. validDate: JSON.stringify(this.state.validDates)
  144. }).then(v=>{
  145. this.setState({
  146. loading:false
  147. })
  148. if(v.error.length === 0){
  149. Taro.eventCenter.trigger('publicContent',v.data)
  150. }else{
  151. Taro.showToast({
  152. title:v.error[0].message,
  153. icon:'none'
  154. })
  155. }
  156. }).catch(()=>{
  157. this.setState({
  158. loading:false
  159. })
  160. });
  161. }
  162. selectArrder(){
  163. const key = 'AWBBZ-GRAC2-JFYUO-CLA7I-JAHXK-YFFGT'; //使用在腾讯位置服务申请的key
  164. const referer = '科德打卡定位'; //调用插件的app的名称
  165. const category = '公司企业,房产小区';
  166. Taro.navigateTo({
  167. url: 'plugin://chooseLocation/index?key=' + key + '&referer=' + referer + '&category=' + category
  168. });
  169. }
  170. onChange(value,type){
  171. let arr = this.state.imgs.concat([]);
  172. if(type === 'add'){
  173. arr.push(value)
  174. }else if(type === 'remove'){
  175. arr.splice(value,1)
  176. }
  177. this.setState({
  178. imgs: arr,
  179. })
  180. }
  181. render() {
  182. return (
  183. <View className='publicContent'>
  184. <View className='formItem'>
  185. <View className='formName'>公出企业:</View>
  186. <View className='formValue'>{this.props.enterpriseInfor.name}</View>
  187. </View>
  188. <View className='formItem'>
  189. <View className='formName'>公出开始时间:</View>
  190. <View className='formValue'>
  191. <DateTimePicker ref={ref=>this.rangeStartRef = ref} onOk={(current)=>{
  192. let arr = [];
  193. if(this.state.rangeEndVal){
  194. if(dayjs(current.current).isAfter(dayjs(this.state.rangeEndMinuteVal))){
  195. Taro.showToast({title:'开始时间不能在结束时间之后',icon:'none'})
  196. this.rangeStartRef.clear();
  197. this.setState({
  198. rangeStartVal:'',
  199. rangeStartMinuteVal: '',
  200. validDates:[],
  201. totalDuration:0
  202. })
  203. return;
  204. }
  205. }
  206. if(this.state.rangeEndVal){
  207. let str = dayjs(current.current).format('YYYY-MM-DD');
  208. arr.push({value:str});
  209. let a = dayjs(this.state.rangeEndVal.split('-'));
  210. let b = dayjs(str.split('-'));
  211. let num = a.diff(b, 'days');
  212. let strAdd = str;
  213. for(let i = 0;i<num;i++){
  214. let time = dayjs(strAdd).add(1, 'days').format('YYYY-MM-DD');
  215. strAdd = time
  216. arr.push({value:time});
  217. }
  218. }
  219. this.setState({
  220. rangeStartVal:dayjs(current.current).format('YYYY-MM-DD'),
  221. rangeStartMinuteVal: dayjs(current.current).format('YYYY-MM-DD HH:mm:ss'),
  222. validDates:arr
  223. },()=>{
  224. if(this.state.rangeEndVal){
  225. let a1 = dayjs(dayjs(current.current).format('YYYY-MM-DD HH:mm:ss'));
  226. let b1 = dayjs(dayjs(this.state.rangeEndMinuteVal).format('YYYY-MM-DD HH:mm:ss'));
  227. this.getNumHourse(a1,b1)
  228. }
  229. })
  230. }} onClear={()=>{
  231. this.setState({
  232. rangeStartVal:'',
  233. rangeStartMinuteVal: '',
  234. validDates:[],
  235. totalDuration:0
  236. })
  237. }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class" select-item-class="mySelector" />
  238. </View>
  239. </View>
  240. <View className='formItem'>
  241. <View className='formName'>公出结束时间:</View>
  242. <View className='formValue'>
  243. <DateTimePicker ref={ref=>this.rangeEndRef = ref} onOk={(current)=>{
  244. let arr = [];
  245. if(this.state.rangeStartVal){
  246. if(dayjs(current.current).isBefore(dayjs(this.state.rangeStartMinuteVal))){
  247. Taro.showToast({title:'结束时间不能在开始时间之前',icon:'none'})
  248. this.rangeEndRef.clear();
  249. this.setState({
  250. rangeEndVal:'',
  251. rangeEndMinuteVal: '',
  252. validDates:[],
  253. totalDuration:0
  254. })
  255. return;
  256. }
  257. }
  258. if(this.state.rangeStartVal){
  259. let str = dayjs(current.current).format('YYYY-MM-DD');
  260. arr.push({value:this.state.rangeStartVal});
  261. let a = dayjs(this.state.rangeStartVal.split('-'));
  262. let b = dayjs(str.split('-'));
  263. let num = b.diff(a, 'days');
  264. let strAdd = this.state.rangeStartVal;
  265. for(let i = 0;i<num;i++){
  266. let time = dayjs(strAdd).add(1, 'days').format('YYYY-MM-DD');
  267. strAdd = time
  268. arr.push({value:time});
  269. }
  270. }
  271. this.setState({
  272. rangeEndVal:dayjs(current.current).format('YYYY-MM-DD'),
  273. rangeEndMinuteVal: dayjs(current.current).format('YYYY-MM-DD HH:mm:ss'),
  274. validDates:arr,
  275. },()=>{
  276. if(this.state.rangeStartVal){
  277. let a1 = dayjs(dayjs(current.current).format('YYYY-MM-DD HH:mm:ss'));
  278. let b1 = dayjs(dayjs(this.state.rangeStartMinuteVal).format('YYYY-MM-DD HH:mm:ss'));
  279. this.getNumHourse(b1,a1)
  280. }
  281. })
  282. }} onClear={()=>{
  283. this.setState({
  284. rangeEndVal:'',
  285. rangeEndMinuteVal: '',
  286. validDates:[],
  287. totalDuration:0
  288. })
  289. }} initValue={dayjs().format('YYYY-MM-DD HH:mm:ss')} wrap-class="my-class" select-item-class="mySelector" />
  290. </View>
  291. </View>
  292. <View className='formItem'>
  293. <View className='formName'>总时长:</View>
  294. <View className='formValue'>
  295. {this.state.totalDuration}小时
  296. </View>
  297. </View>
  298. {this.state.validDates.length !== 0? <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
  299. <View className='formName'>
  300. <View>去除放假时间:</View>
  301. <View className='tips'>绿色方块为公出时间,长按即可去除放假时间</View>
  302. </View>
  303. <AtCalendar
  304. currentDate={this.state.rangeStartVal}
  305. minDate={this.state.rangeStartVal}
  306. maxDate={this.state.rangeEndVal}
  307. isSwiper={false}
  308. validDates={this.state.validDates}
  309. onDayLongClick={(item)=>{
  310. if(!(dayjs(item.value.split('-')).isSame(this.state.rangeStartVal.split('-')) || dayjs(item.value.split('-')).isSame(this.state.rangeEndVal.split('-')))){
  311. if(!(dayjs(item.value.split('-')).isAfter(this.state.rangeStartVal.split('-')) && dayjs(item.value.split('-')).isBefore(this.state.rangeEndVal.split('-')))){
  312. return;
  313. }
  314. }else{
  315. Taro.showToast({title:'开始结束时间不能取消',icon:'none'})
  316. return
  317. }
  318. let index = this.state.validDates.findIndex(v=>{
  319. let lv = dayjs(v.value.split('-')).isSame(item.value.split('-'));
  320. return lv
  321. })
  322. if(index<0){
  323. let arr = item.value.split('-');
  324. this.state.validDates.push({value:arr.join('-')})
  325. this.setState({
  326. validDates:this.state.validDates,
  327. totalDuration: this.state.totalDuration + 7.5
  328. })
  329. }else{
  330. this.state.validDates.splice(index,1)
  331. this.setState({
  332. validDates:this.state.validDates,
  333. totalDuration: this.state.totalDuration - 7.5
  334. })
  335. }
  336. }}
  337. />
  338. </View> : null}
  339. <View className='formItem' style={{paddingBottom:0}}>
  340. <View className='formName'>公出地点:</View>
  341. <View className='formValue' onClick={this.selectArrder}>
  342. <Text className='formValueText'>{this.props.selectArrderLocation.name}</Text>
  343. <AtIcon value='chevron-right' size='30' color='#bbbbbb'/>
  344. </View>
  345. </View>
  346. <View className='tips'>以地图中红标为中心100米范围为可打卡区域,移动红标只需要拖动地图即可</View>
  347. <View className='formItem' style={{display:'block',paddingTop:'15px'}}>
  348. <View className='formName'>公出事由:</View>
  349. <View className='formValue' style={{paddingTop:'10px',textAlign:'left'}}>
  350. <AtTextarea
  351. value={this.state.reason}
  352. onChange={(v)=>{
  353. this.setState({
  354. reason:v
  355. })
  356. }}
  357. maxLength={200}
  358. placeholder='请输入公出事由'
  359. />
  360. </View>
  361. </View>
  362. <View className='formItem' style={{display:'block'}}>
  363. <View className='formName'>附件:</View>
  364. <View className='formValue' style={{paddingTop:'10px',textAlign:'left'}}>
  365. <ImagePicker
  366. showAddBtn={true}
  367. ref={ref => this.imagePickerRef = ref}
  368. url='/api/admin/release/upload'
  369. onChange={this.onChange}
  370. />
  371. </View>
  372. </View>
  373. <View className='operation'>
  374. <AtButton disabled={this.state.loading} type='secondary' circle onClick={()=>{
  375. Taro.eventCenter.trigger('enterpriseBack')
  376. }}>
  377. 上一步
  378. </AtButton>
  379. <AtButton type='primary' loading={this.state.loading} circle onClick={()=>{
  380. if(this.state.loading){
  381. return;
  382. }
  383. this.setState({
  384. isInquiryOpened:true,
  385. inquiryTitle:'提醒',
  386. inquiryContent:'您确定要提交此申请吗?',
  387. inquiryFn:()=>{
  388. this.onSubmit();
  389. }
  390. })
  391. }}>
  392. 提交申请
  393. </AtButton>
  394. </View>
  395. <InquiryModal
  396. isOpened={this.state.isInquiryOpened}
  397. title={this.state.inquiryTitle}
  398. content={this.state.inquiryContent}
  399. onClose={()=>{
  400. this.setState({
  401. isInquiryOpened:false,
  402. inquiryTitle:'',
  403. inquiryContent:'',
  404. })
  405. }}
  406. onDetermine={()=>{
  407. this.state.inquiryFn();
  408. this.setState({
  409. isInquiryOpened:false,
  410. inquiryTitle:'',
  411. inquiryContent:'',
  412. inquiryFn:()=>{}
  413. })
  414. }}
  415. />
  416. </View>
  417. )
  418. }
  419. }
  420. export default PublicContent;