publicContent.jsx 17 KB

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