|
@@ -10,11 +10,8 @@ import Skeleton from 'taro-skeleton'
|
|
|
import HistoricalClock from '../../components/historicalClock';
|
|
|
import ImagePicker from '../../components/common/imagePicker';
|
|
|
import { add, minus, asyncAdd } from '../../actions/counter'
|
|
|
-import { getPublicReleaseList, } from '../../utils/servers/servers';
|
|
|
-import './index.less'
|
|
|
-import switchIocn from '../../image/switch.png';
|
|
|
-import Location from '../../image/location.png';
|
|
|
-import PunchRange from '../../image/punchRange.png';
|
|
|
+import { recordAdd, myDuration, } from '../../utils/servers/servers';
|
|
|
+import './index.less';
|
|
|
import 'taro-ui/dist/style/components/noticebar.scss';
|
|
|
import 'taro-ui/dist/style/components/icon.scss';
|
|
|
import 'taro-ui/dist/style/components/list.scss';
|
|
@@ -23,8 +20,6 @@ import "taro-ui/dist/style/components/icon.scss";
|
|
|
|
|
|
import { getClockState, getNewOptions } from "../../utils/tools";
|
|
|
|
|
|
-const QQMapWX = require('../../components/common/mapSDK/qqmap-wx-jssdk.min.js');
|
|
|
-
|
|
|
@connect(({ counter }) => ({
|
|
|
counter
|
|
|
}), (dispatch) => ({
|
|
@@ -43,71 +38,96 @@ class PunchClocks extends Component {
|
|
|
constructor(props) {
|
|
|
super(props);
|
|
|
this.state = {
|
|
|
+ imgs: [],
|
|
|
loading: false,
|
|
|
selector: ['调研阶段',],
|
|
|
dateSel: "",
|
|
|
+ duration: "",
|
|
|
selectorChecked: "",
|
|
|
+ remark: "",
|
|
|
+ data: {},
|
|
|
}
|
|
|
-
|
|
|
+ this.onChange = this.onChange.bind(this);
|
|
|
+ this.publicReleaseClockIn = this.publicReleaseClockIn.bind(this);
|
|
|
}
|
|
|
|
|
|
|
|
|
componentDidMount() {
|
|
|
- // this.getDtails();
|
|
|
+ this.imagePickerRef && this.imagePickerRef.clear();
|
|
|
+ this.getMyDuration();
|
|
|
}
|
|
|
|
|
|
|
|
|
- getDtails() {
|
|
|
- this.getData(() => {
|
|
|
- Taro.startLocationUpdate({
|
|
|
- success: () => {
|
|
|
- Taro.onLocationChange((v) => {
|
|
|
- this.getSpacing(v.latitude, v.longitude)
|
|
|
- })
|
|
|
- },
|
|
|
- fail: (err) => {
|
|
|
- Taro.getSetting({
|
|
|
- success: (res) => {
|
|
|
- if (!res.authSetting['scope.userLocation']) {
|
|
|
- Taro.authorize({
|
|
|
- scope: 'scope.userLocation',
|
|
|
- success: () => {
|
|
|
-
|
|
|
- },
|
|
|
- fail: () => {
|
|
|
- this.setState({
|
|
|
- isOpened: true
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
- }
|
|
|
- }
|
|
|
- })
|
|
|
- this.setState({
|
|
|
- loading: false
|
|
|
- })
|
|
|
- }
|
|
|
- })
|
|
|
- });
|
|
|
+ getMyDuration() {
|
|
|
+ myDuration().then(v => {
|
|
|
+
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
componentWillMount() {
|
|
|
-
|
|
|
+ Taro.eventCenter.on('GoPunchIn', (arg) => {
|
|
|
+ this.setState({
|
|
|
+ data: arg
|
|
|
+ })
|
|
|
+ })
|
|
|
}
|
|
|
|
|
|
componentDidHide() {
|
|
|
|
|
|
}
|
|
|
|
|
|
- onDateChange = e => {
|
|
|
+ onChange(value, type) {
|
|
|
+ let arr = this.state.imgs.concat([]);
|
|
|
+ if (type === "add") {
|
|
|
+ arr.push(value);
|
|
|
+ } else if (type === "remove") {
|
|
|
+ arr.splice(value, 1);
|
|
|
+ }
|
|
|
this.setState({
|
|
|
- dateSel: e.detail.value
|
|
|
- })
|
|
|
+ imgs: arr,
|
|
|
+ });
|
|
|
}
|
|
|
|
|
|
- onChange = e => {
|
|
|
- this.setState({
|
|
|
- selectorChecked: this.state.selector[e.detail.value]
|
|
|
+ publicReleaseClockIn() {
|
|
|
+
|
|
|
+ if (!this.state.dateSel) {
|
|
|
+ Taro.showToast({ title: '请选择研发时间!', icon: 'none' });
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (!this.state.duration) {
|
|
|
+ Taro.showToast({ title: '请填写工时!', icon: 'none' });
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (!this.state.remark) {
|
|
|
+ Taro.showToast({ title: '请填写研发记录!', icon: 'none' });
|
|
|
+ return
|
|
|
+ }
|
|
|
+ if (this.state.imgs.length == 0) {
|
|
|
+ Taro.showToast({ title: "请上传附件", icon: "none" });
|
|
|
+ return
|
|
|
+ }
|
|
|
+ Taro.showLoading({ title: '打卡中...' });
|
|
|
+ recordAdd({
|
|
|
+ pid: this.state.data.id,
|
|
|
+ projectStatus: this.state.selectorChecked,
|
|
|
+ duration: this.state.duration,
|
|
|
+ content: this.state.remark,
|
|
|
+ annexUrl: this.state.imgs.join(','),
|
|
|
+ processStatus: 1,
|
|
|
+ recordTime: this.state.dateSel,
|
|
|
+ }).then(v => {
|
|
|
+ Taro.hideLoading()
|
|
|
+ if (v.code === 200) {
|
|
|
+ Taro.showToast({ title: '打卡成功', icon: 'none' });
|
|
|
+ } else {
|
|
|
+ Taro.showToast({ title: v.msg, icon: 'none' })
|
|
|
+ }
|
|
|
+ }).catch(() => {
|
|
|
+ Taro.hideLoading()
|
|
|
+ Taro.showToast({
|
|
|
+ title: '系统错误,请稍后再试',
|
|
|
+ icon: 'none'
|
|
|
+ })
|
|
|
})
|
|
|
}
|
|
|
|
|
@@ -124,7 +144,7 @@ class PunchClocks extends Component {
|
|
|
}
|
|
|
|
|
|
render() {
|
|
|
- const { dtails, data } = this.state;
|
|
|
+ const { data } = this.state;
|
|
|
return (
|
|
|
<View className='punchClock'>
|
|
|
<View className='header'>
|
|
@@ -136,63 +156,125 @@ class PunchClocks extends Component {
|
|
|
avatarShape='square'
|
|
|
loading={this.state.loading}
|
|
|
>
|
|
|
- <View className='headerContent'>
|
|
|
- <View className='item'>
|
|
|
- <View>项目:新一代核心系统研发</View>
|
|
|
- <AtButton type="primary" size="small">切换</AtButton>
|
|
|
- </View>
|
|
|
-
|
|
|
- <View className='item'>
|
|
|
- <View className='ititle'>研发时间:
|
|
|
- <Picker mode='date' onChange={this.onDateChange}>
|
|
|
- <View className='picker'>
|
|
|
- {!!this.state.dateSel ? this.state.dateSel : "请选择"}
|
|
|
+ {
|
|
|
+ !data.id ?
|
|
|
+ <View className='content'>
|
|
|
+ <View className='punchClockContent'
|
|
|
+ onClick={this.publicReleaseClockIn}
|
|
|
+ style={{
|
|
|
+ boxShadow: '1px 1px 15px 1px #acb8ad',
|
|
|
+ background: '#828e83',
|
|
|
+ marginTop: '85px',
|
|
|
+ }}>
|
|
|
+ <View className='punchClockTitle'>打卡</View>
|
|
|
+ <View className='punchClockTime'>{this.state.nowTime}</View>
|
|
|
+ </View>
|
|
|
+ <View className='noData'>
|
|
|
+ <View className='tipsNoData'>
|
|
|
+ 暂无打卡项目
|
|
|
</View>
|
|
|
- </Picker>
|
|
|
- </View>
|
|
|
- </View>
|
|
|
+ <View className='goOut' onClick={() => {
|
|
|
+ Taro.switchTab({
|
|
|
+ url: '/pages/project/index',
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ 点击前往选择项目
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
+ </View> :
|
|
|
+ <View className='headerContent'>
|
|
|
+ <View className='item'>
|
|
|
+ <View style={{ fontSize: "15px" }}>{data.name}</View>
|
|
|
+ <AtButton type="primary" size="small"
|
|
|
+ onClick={() => {
|
|
|
+ Taro.switchTab({
|
|
|
+ url: "/pages/project/index",
|
|
|
+ });
|
|
|
+ }}>切换</AtButton>
|
|
|
+ </View>
|
|
|
|
|
|
- <View className='items'>
|
|
|
- <View className='ititle'>研发工时:
|
|
|
- <Input type='digit' className='input' placeholder='请输入工时' style={{ textAlign: "center" }} />小时
|
|
|
- <Text style={{ color: "red" }}>注:工时可含1个小数点</Text>
|
|
|
- </View>
|
|
|
- </View>
|
|
|
+ <View className='item'>
|
|
|
+ <View className='ititle'>研发时间:
|
|
|
+ <Picker mode='date'
|
|
|
+ onChange={e => {
|
|
|
+ this.setState({
|
|
|
+ dateSel: e.detail.value
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ <View className='picker'>
|
|
|
+ {!!this.state.dateSel ? this.state.dateSel : "请选择"}
|
|
|
+ </View>
|
|
|
+ </Picker>
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
|
|
|
- <View className='item'>
|
|
|
- <View className='ititle'>研发阶段:
|
|
|
- <Picker mode='selector' range={this.state.selector} onChange={this.onChange}>
|
|
|
- <View className='picker'>
|
|
|
- {!!this.state.selectorChecked ? this.state.selectorChecked : "请选择"}
|
|
|
+ <View className='items'>
|
|
|
+ <View className='ititle'>研发工时:
|
|
|
+ <Input value={this.state.duration} type='digit' className='input' placeholder='请输入工时' style={{ textAlign: "center" }}
|
|
|
+ onInput={e => {
|
|
|
+ this.setState({
|
|
|
+ duration: e.detail.value
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ />小时
|
|
|
+ <Text style={{ color: "red" }}>注:工时可含1个小数点</Text>
|
|
|
</View>
|
|
|
- </Picker>
|
|
|
- </View>
|
|
|
- </View>
|
|
|
+ </View>
|
|
|
|
|
|
- <View className='items'>
|
|
|
- <View className='ititles'>研发记录:
|
|
|
- <Textarea style='background:#fff;width:66%;min-height:70px;border:1px solid #8e8d8d;padding:10px' autoHeight />
|
|
|
- </View>
|
|
|
- </View>
|
|
|
+ <View className='item'>
|
|
|
+ <View className='ititle'>研发阶段:
|
|
|
+ <Picker mode='selector' range={this.state.selector}
|
|
|
+ onChange={e => {
|
|
|
+ this.setState({
|
|
|
+ selectorChecked: this.state.selector[e.detail.value]
|
|
|
+ })
|
|
|
+ }}>
|
|
|
+ <View className='picker'>
|
|
|
+ {!!this.state.selectorChecked ? this.state.selectorChecked : "请选择"}
|
|
|
+ </View>
|
|
|
+ </Picker>
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
|
|
|
- <View className='items'>
|
|
|
- <View className='ititles'>上传附件:</View>
|
|
|
- <View>
|
|
|
- <Text className='text'>注:包括研发日志、实验报告、实验记录、检测报告、会议纪要、会议照片等</Text>
|
|
|
- </View>
|
|
|
- </View>
|
|
|
-
|
|
|
- <View className='content'>
|
|
|
- <View className='punchClockContent'
|
|
|
- onClick={this.publicReleaseClockIn}
|
|
|
- style={{
|
|
|
- boxShadow: '1px 1px 15px 1px #acb8ad',
|
|
|
- background: '#009DD9',
|
|
|
- }}>
|
|
|
- <View className='punchClockTitle'>打卡</View>
|
|
|
+ <View className='items'>
|
|
|
+ <View className='ititles'>研发记录:
|
|
|
+ <Textarea
|
|
|
+ value={this.state.remark}
|
|
|
+ style='background:#fff;width:66%;min-height:70px;border:1px solid #8e8d8d;padding:10px' autoHeight
|
|
|
+ onInput={e => {
|
|
|
+ this.setState({
|
|
|
+ remark: e.detail.value
|
|
|
+ })
|
|
|
+ }}
|
|
|
+ />
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
+
|
|
|
+ <View className='items'>
|
|
|
+ <View className='ititles'>上传附件:</View>
|
|
|
+ <ImagePicker
|
|
|
+ showAddBtn
|
|
|
+ ref={(ref) => (this.imagePickerRef = ref)}
|
|
|
+ url="/api/project/upload"
|
|
|
+ onChange={this.onChange}
|
|
|
+ />
|
|
|
+ <View>
|
|
|
+ <Text className='text'>注:包括研发日志、实验报告、实验记录、检测报告、会议纪要、会议照片等</Text>
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
+
|
|
|
+ <View className='content'>
|
|
|
+ <View className='punchClockContent'
|
|
|
+ onClick={this.publicReleaseClockIn}
|
|
|
+ style={{
|
|
|
+ boxShadow: '1px 1px 15px 1px #acb8ad',
|
|
|
+ background: '#009DD9',
|
|
|
+ }}>
|
|
|
+ <View className='punchClockTitle'>打卡</View>
|
|
|
+ </View>
|
|
|
+ </View>
|
|
|
</View>
|
|
|
- </View>
|
|
|
- </View>
|
|
|
+ }
|
|
|
</Skeleton>
|
|
|
</View>
|
|
|
|