|
@@ -1,12 +1,14 @@
|
|
|
import React,{Component} from "react";
|
|
|
import { View,Image,Button } from '@tarojs/components'
|
|
|
import Taro, { getCurrentInstance } from "@tarojs/taro";
|
|
|
-import {AtButton, AtCalendar, AtIcon, AtTextarea} from 'taro-ui'
|
|
|
+import {AtButton, AtCalendar, AtIcon, AtTextarea,AtModal, AtTimeline, AtModalContent, AtModalAction} from 'taro-ui'
|
|
|
+import Skeleton from 'taro-skeleton'
|
|
|
+
|
|
|
+import InquiryModal from '../../components/common/inquiryModal';
|
|
|
+
|
|
|
+import Modify from './modify';
|
|
|
import {examinePublicRelease,getReleasetDails,getListPublicReleaseLog} from '../../utils/servers/servers';
|
|
|
import {resourceAddress} from '../../utils/config';
|
|
|
-import { AtModal, AtTimeline, AtModalContent, AtModalAction } from "taro-ui";
|
|
|
-import Modify from './modify';
|
|
|
-import Skeleton from 'taro-skeleton'
|
|
|
import './index.less';
|
|
|
|
|
|
import 'taro-ui/dist/style/components/icon.scss';
|
|
@@ -21,7 +23,6 @@ import Passed from '../../image/passed.png';
|
|
|
import Reviewed from '../../image/reviewed.png';
|
|
|
import Wx from '../../image/wx.png';
|
|
|
import ImagePicker from "../../components/common/imagePicker";
|
|
|
-
|
|
|
import switchIocn from '../../image/switch.png';
|
|
|
import MessageNoticebar from "../../components/common/messageNoticebar";
|
|
|
|
|
@@ -38,7 +39,6 @@ class EgressDetails extends Component{
|
|
|
isDetailedOpened:false,
|
|
|
isOpened:false,
|
|
|
isModifyOpened:false,
|
|
|
- modifyType:0,
|
|
|
selectArrderLocation:{}
|
|
|
}
|
|
|
this.examinePublicRelease= this.examinePublicRelease.bind(this);
|
|
@@ -221,7 +221,6 @@ class EgressDetails extends Component{
|
|
|
<View className='edit' onClick={()=>{
|
|
|
this.setState({
|
|
|
isModifyOpened:true,
|
|
|
- modifyType:2,
|
|
|
})
|
|
|
}}>
|
|
|
<AtIcon value='edit' size='18' color='#3864ef'/>
|
|
@@ -274,12 +273,12 @@ class EgressDetails extends Component{
|
|
|
<View className='item'>
|
|
|
<View className='title'>
|
|
|
公出企业
|
|
|
- {dtails.permission === 0 && dtails.status === 0 ? <Image src={switchIocn} className='switchItem' onClick={()=>{
|
|
|
- this.setState({
|
|
|
- isModifyOpened:true,
|
|
|
- modifyType:1,
|
|
|
- })
|
|
|
- }}/> : null}
|
|
|
+ {/*{dtails.permission === 0 && dtails.status === 0 ? <Image src={switchIocn} className='switchItem' onClick={()=>{*/}
|
|
|
+ {/* this.setState({*/}
|
|
|
+ {/* isModifyOpened:true,*/}
|
|
|
+ {/* modifyType:1,*/}
|
|
|
+ {/* })*/}
|
|
|
+ {/*}}/> : null}*/}
|
|
|
</View>
|
|
|
<View className='value'>
|
|
|
{dtails.nickname}
|
|
@@ -319,12 +318,26 @@ class EgressDetails extends Component{
|
|
|
dtails.permission === 1 && dtails.status === 1 ?
|
|
|
<View className='operation'>
|
|
|
<AtButton type='secondary' circle loading={this.state.loading} onClick={()=>{
|
|
|
- this.examinePublicRelease(0);
|
|
|
+ this.setState({
|
|
|
+ isInquiryOpened:true,
|
|
|
+ inquiryTitle:'提醒',
|
|
|
+ inquiryContent:'您确定要驳回此申请吗?',
|
|
|
+ inquiryFn:()=>{
|
|
|
+ this.examinePublicRelease(0);
|
|
|
+ }
|
|
|
+ })
|
|
|
}}>
|
|
|
驳回
|
|
|
</AtButton>
|
|
|
<AtButton type='primary' loading={this.state.loading} circle onClick={()=>{
|
|
|
- this.examinePublicRelease(2);
|
|
|
+ this.setState({
|
|
|
+ isInquiryOpened:true,
|
|
|
+ inquiryTitle:'提醒',
|
|
|
+ inquiryContent:'您确定要同意此申请吗?',
|
|
|
+ inquiryFn:()=>{
|
|
|
+ this.examinePublicRelease(2);
|
|
|
+ }
|
|
|
+ })
|
|
|
}}>
|
|
|
同意
|
|
|
</AtButton>
|
|
@@ -380,7 +393,6 @@ class EgressDetails extends Component{
|
|
|
locationInfor={this.state.selectArrderLocation}
|
|
|
id={this.$instance.router.params.id}
|
|
|
isOpened={this.state.isModifyOpened}
|
|
|
- modifyType={this.state.modifyType}
|
|
|
onModalClose={()=>{
|
|
|
this.setState({
|
|
|
isModifyOpened:false,
|
|
@@ -394,6 +406,27 @@ class EgressDetails extends Component{
|
|
|
this.getReleasetDails();
|
|
|
})
|
|
|
}}/> : null}
|
|
|
+ <InquiryModal
|
|
|
+ isOpened={this.state.isInquiryOpened}
|
|
|
+ title={this.state.inquiryTitle}
|
|
|
+ content={this.state.inquiryContent}
|
|
|
+ onClose={()=>{
|
|
|
+ this.setState({
|
|
|
+ isInquiryOpened:false,
|
|
|
+ inquiryTitle:'',
|
|
|
+ inquiryContent:'',
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ onDetermine={()=>{
|
|
|
+ this.state.inquiryFn();
|
|
|
+ this.setState({
|
|
|
+ isInquiryOpened:false,
|
|
|
+ inquiryTitle:'',
|
|
|
+ inquiryContent:'',
|
|
|
+ inquiryFn:()=>{}
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ />
|
|
|
</View>
|
|
|
)
|
|
|
}
|