|
@@ -18,6 +18,7 @@ import 'taro-ui/dist/style/components/calendar.scss';
|
|
import Rejected from '../../image/rejected.png';
|
|
import Rejected from '../../image/rejected.png';
|
|
import Passed from '../../image/passed.png';
|
|
import Passed from '../../image/passed.png';
|
|
import Reviewed from '../../image/reviewed.png';
|
|
import Reviewed from '../../image/reviewed.png';
|
|
|
|
+import Wx from '../../image/wx.png';
|
|
import ImagePicker from "../../components/common/imagePicker";
|
|
import ImagePicker from "../../components/common/imagePicker";
|
|
|
|
|
|
import switchIocn from '../../image/switch.png';
|
|
import switchIocn from '../../image/switch.png';
|
|
@@ -64,21 +65,34 @@ class EgressDetails extends Component{
|
|
id:this.$instance.router.params.id
|
|
id:this.$instance.router.params.id
|
|
}).then(v=>{
|
|
}).then(v=>{
|
|
if(v.error.length === 0){
|
|
if(v.error.length === 0){
|
|
- let list = [];
|
|
|
|
- for(let i of v.data.annexUrl.split(',')){
|
|
|
|
- if(i){
|
|
|
|
- list.push({'url':resourceAddress + i})
|
|
|
|
|
|
+ if(v.data){
|
|
|
|
+ let list = [];
|
|
|
|
+ for(let i of v.data.annexUrl.split(',')){
|
|
|
|
+ if(i){
|
|
|
|
+ list.push({'url':resourceAddress + i})
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
+ v.data.annexUrl = list;
|
|
|
|
+ this.setState({
|
|
|
|
+ dtails:v.data,
|
|
|
|
+ selectArrderLocation:{
|
|
|
|
+ longitude:parseFloat(v.data.longitude),
|
|
|
|
+ latitude:parseFloat(v.data.latitude),
|
|
|
|
+ name:v.data.userName
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ }else{
|
|
|
|
+ setTimeout(()=>{
|
|
|
|
+ Taro.switchTab({
|
|
|
|
+ url: '/pages/punchClock/index',
|
|
|
|
+ })
|
|
|
|
+ },1800)
|
|
|
|
+ Taro.showToast({
|
|
|
|
+ title:'您没有权限查看此公出详情',
|
|
|
|
+ icon:'none',
|
|
|
|
+ duration:1800,
|
|
|
|
+ })
|
|
}
|
|
}
|
|
- v.data.annexUrl = list;
|
|
|
|
- this.setState({
|
|
|
|
- dtails:v.data,
|
|
|
|
- selectArrderLocation:{
|
|
|
|
- longitude:parseFloat(v.data.longitude),
|
|
|
|
- latitude:parseFloat(v.data.latitude),
|
|
|
|
- name:v.data.userName
|
|
|
|
- }
|
|
|
|
- })
|
|
|
|
}else{
|
|
}else{
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
Taro.showToast({title:v.error[0].message,icon:'none'})
|
|
}
|
|
}
|
|
@@ -105,8 +119,8 @@ class EgressDetails extends Component{
|
|
dtails:this.state.dtails
|
|
dtails:this.state.dtails
|
|
})
|
|
})
|
|
Taro.eventCenter.trigger('listOperation',{
|
|
Taro.eventCenter.trigger('listOperation',{
|
|
- type:this.$instance.router.params.type,
|
|
|
|
- index:this.$instance.router.params.type,
|
|
|
|
|
|
+ type:this.state.dtails.permission,
|
|
|
|
+ index:this.$instance.router.params.index,
|
|
})
|
|
})
|
|
|
|
|
|
}else{
|
|
}else{
|
|
@@ -148,6 +162,13 @@ class EgressDetails extends Component{
|
|
})
|
|
})
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ onShareAppMessage(){
|
|
|
|
+ return {
|
|
|
|
+ title: this.state.dtails.aname+ '将要去' + this.state.dtails.userName,
|
|
|
|
+ path: 'pages/egressDetails/index?id='+this.$instance.router.params.id
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
render() {
|
|
render() {
|
|
const {dtails} = this.state;
|
|
const {dtails} = this.state;
|
|
return (
|
|
return (
|
|
@@ -156,14 +177,7 @@ class EgressDetails extends Component{
|
|
<View className='titleContent'>
|
|
<View className='titleContent'>
|
|
<View className='title'>{dtails.aname}提交的公出申请</View>
|
|
<View className='title'>{dtails.aname}提交的公出申请</View>
|
|
<View className='address'>
|
|
<View className='address'>
|
|
- {/*<AtIcon value='map-pin' size='15' color='#767272'/>*/}
|
|
|
|
- 公出企业: {dtails.nickname}
|
|
|
|
- {this.$instance.router.params.type === '0' && dtails.status === 0 ? <Image src={switchIocn} className='switchItem' onClick={()=>{
|
|
|
|
- this.setState({
|
|
|
|
- isModifyOpened:true,
|
|
|
|
- modifyType:1,
|
|
|
|
- })
|
|
|
|
- }}/> : null}
|
|
|
|
|
|
+ 申请时间: {dtails.createTimes}
|
|
</View>
|
|
</View>
|
|
<View className='state' style={{
|
|
<View className='state' style={{
|
|
color:dtails.status === 0 ? '#f31212' :
|
|
color:dtails.status === 0 ? '#f31212' :
|
|
@@ -182,22 +196,10 @@ class EgressDetails extends Component{
|
|
dtails.status === 2 ? Passed : ''} className='startIcon'/>
|
|
dtails.status === 2 ? Passed : ''} className='startIcon'/>
|
|
</View>
|
|
</View>
|
|
<View className='valueContent'>
|
|
<View className='valueContent'>
|
|
- {/*<View className='item'>*/}
|
|
|
|
- {/* <View className='title'>公出编号</View>*/}
|
|
|
|
- {/* <View className='value'>20212584646465495462</View>*/}
|
|
|
|
- {/*</View>*/}
|
|
|
|
- {/*<View className='item'>*/}
|
|
|
|
- {/* <View className='title'>企业类型</View>*/}
|
|
|
|
- {/* <View className='value'>稀有企业</View>*/}
|
|
|
|
- {/*</View>*/}
|
|
|
|
- {/*<View className='item'>*/}
|
|
|
|
- {/* <View className='title'>审核人</View>*/}
|
|
|
|
- {/* <View className='value'>营销经理</View>*/}
|
|
|
|
- {/*</View>*/}
|
|
|
|
<View className='item'>
|
|
<View className='item'>
|
|
<View className='title'>
|
|
<View className='title'>
|
|
公出地点:
|
|
公出地点:
|
|
- {this.$instance.router.params.type === '0' && dtails.status === 0 ?
|
|
|
|
|
|
+ {dtails.permission === 0 && dtails.status === 0 ?
|
|
<View className='edit' onClick={()=>{
|
|
<View className='edit' onClick={()=>{
|
|
this.setState({
|
|
this.setState({
|
|
isModifyOpened:true,
|
|
isModifyOpened:true,
|
|
@@ -253,9 +255,17 @@ class EgressDetails extends Component{
|
|
</AtModal>
|
|
</AtModal>
|
|
<View className='item'>
|
|
<View className='item'>
|
|
<View className='title'>
|
|
<View className='title'>
|
|
- 申请时间
|
|
|
|
|
|
+ 公出企业
|
|
|
|
+ {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}
|
|
</View>
|
|
</View>
|
|
- <View className='value'>{dtails.createTimes}</View>
|
|
|
|
</View>
|
|
</View>
|
|
<View className='item'>
|
|
<View className='item'>
|
|
<View className='title'>公出原因</View>
|
|
<View className='title'>公出原因</View>
|
|
@@ -272,7 +282,7 @@ class EgressDetails extends Component{
|
|
</View>
|
|
</View>
|
|
</View> : null}
|
|
</View> : null}
|
|
{
|
|
{
|
|
- this.$instance.router.params.type === '1' && dtails.status === 1 ?
|
|
|
|
|
|
+ dtails.permission === 1 && dtails.status === 1 ?
|
|
<View className='item'>
|
|
<View className='item'>
|
|
<View className='title'>填写审批意见</View>
|
|
<View className='title'>填写审批意见</View>
|
|
<AtTextarea
|
|
<AtTextarea
|
|
@@ -288,7 +298,7 @@ class EgressDetails extends Component{
|
|
</View> : null
|
|
</View> : null
|
|
}
|
|
}
|
|
{
|
|
{
|
|
- this.$instance.router.params.type === '1' && dtails.status === 1 ?
|
|
|
|
|
|
+ dtails.permission === 1 && dtails.status === 1 ?
|
|
<View className='operation'>
|
|
<View className='operation'>
|
|
<AtButton type='secondary' circle loading={this.state.loading} onClick={()=>{
|
|
<AtButton type='secondary' circle loading={this.state.loading} onClick={()=>{
|
|
this.examinePublicRelease(0);
|
|
this.examinePublicRelease(0);
|
|
@@ -310,6 +320,14 @@ class EgressDetails extends Component{
|
|
查看TA的历史记录
|
|
查看TA的历史记录
|
|
<AtIcon value='chevron-right' size='20' color='#767272'/>
|
|
<AtIcon value='chevron-right' size='20' color='#767272'/>
|
|
</View>
|
|
</View>
|
|
|
|
+ <View className='valueContent history'>
|
|
|
|
+ <View className='shareContent'>
|
|
|
|
+ <Button open-type='share' className='share'>
|
|
|
|
+ <Image src={Wx} className='shareIcon'/>
|
|
|
|
+ </Button>
|
|
|
|
+ <View className='shareTitle'>微信分享</View>
|
|
|
|
+ </View>
|
|
|
|
+ </View>
|
|
<AtModal onClose={()=>{
|
|
<AtModal onClose={()=>{
|
|
this.setState({
|
|
this.setState({
|
|
isOpened:false
|
|
isOpened:false
|
|
@@ -329,8 +347,8 @@ class EgressDetails extends Component{
|
|
}}>确定</Button>
|
|
}}>确定</Button>
|
|
</AtModalAction>
|
|
</AtModalAction>
|
|
</AtModal>
|
|
</AtModal>
|
|
- <Modify
|
|
|
|
- type={this.$instance.router.params.type}
|
|
|
|
|
|
+ {this.state.isModifyOpened ? <Modify
|
|
|
|
+ permission={dtails.permission}
|
|
index={this.$instance.router.params.index}
|
|
index={this.$instance.router.params.index}
|
|
dtails={dtails}
|
|
dtails={dtails}
|
|
locationInfor={this.state.selectArrderLocation}
|
|
locationInfor={this.state.selectArrderLocation}
|
|
@@ -349,7 +367,7 @@ class EgressDetails extends Component{
|
|
},()=>{
|
|
},()=>{
|
|
this.getReleasetDails();
|
|
this.getReleasetDails();
|
|
})
|
|
})
|
|
- }}/>
|
|
|
|
|
|
+ }}/> : null}
|
|
</View>
|
|
</View>
|
|
)
|
|
)
|
|
}
|
|
}
|