|
@@ -10,7 +10,7 @@ import Skeleton from 'taro-skeleton'
|
|
|
import HistoricalClock from '../../components/historicalClock';
|
|
|
import ImagePicker from '../../components/common/imagePicker';
|
|
|
import { add, minus, asyncAdd } from '../../actions/counter'
|
|
|
-import { recordAdd, myDuration, } from '../../utils/servers/servers';
|
|
|
+import { recordAdd, myDuration, getInfo, } from '../../utils/servers/servers';
|
|
|
import './index.less';
|
|
|
import 'taro-ui/dist/style/components/noticebar.scss';
|
|
|
import 'taro-ui/dist/style/components/icon.scss';
|
|
@@ -18,8 +18,6 @@ import 'taro-ui/dist/style/components/list.scss';
|
|
|
import "taro-ui/dist/style/components/radio.scss";
|
|
|
import "taro-ui/dist/style/components/icon.scss";
|
|
|
|
|
|
-import { getClockState, getNewOptions } from "../../utils/tools";
|
|
|
-
|
|
|
@connect(({ counter }) => ({
|
|
|
counter
|
|
|
}), (dispatch) => ({
|
|
@@ -40,10 +38,10 @@ class PunchClocks extends Component {
|
|
|
this.state = {
|
|
|
imgs: [],
|
|
|
loading: false,
|
|
|
- selector: ['调研阶段',],
|
|
|
+ selector: [{ value: 0, lable: "调研阶段" },],
|
|
|
dateSel: "",
|
|
|
duration: "",
|
|
|
- selectorChecked: "",
|
|
|
+ selectorChecked: {},
|
|
|
remark: "",
|
|
|
data: {},
|
|
|
}
|
|
@@ -54,9 +52,15 @@ class PunchClocks extends Component {
|
|
|
|
|
|
componentDidMount() {
|
|
|
this.imagePickerRef && this.imagePickerRef.clear();
|
|
|
- this.getMyDuration();
|
|
|
+ // this.getMyDuration();
|
|
|
+ this.getInfo()
|
|
|
}
|
|
|
|
|
|
+ getInfo() {
|
|
|
+ getInfo().then(v => {
|
|
|
+
|
|
|
+ })
|
|
|
+ }
|
|
|
|
|
|
getMyDuration() {
|
|
|
myDuration().then(v => {
|
|
@@ -109,7 +113,7 @@ class PunchClocks extends Component {
|
|
|
Taro.showLoading({ title: '打卡中...' });
|
|
|
recordAdd({
|
|
|
pid: this.state.data.id,
|
|
|
- projectStatus: this.state.selectorChecked,
|
|
|
+ projectStatus: this.state.selectorChecked.value,
|
|
|
duration: this.state.duration,
|
|
|
content: this.state.remark,
|
|
|
annexUrl: this.state.imgs.join(','),
|
|
@@ -183,8 +187,8 @@ class PunchClocks extends Component {
|
|
|
</View>
|
|
|
</View> :
|
|
|
<View className='headerContent'>
|
|
|
- <View className='item'>
|
|
|
- <View style={{ fontSize: "15px" }}>{data.name}</View>
|
|
|
+ <View className='item' style={{ width: "100%", display: "flex", flexDirection: "row", JustifyContent: "space-between" }}>
|
|
|
+ <View className="item_name">{data.name}</View>
|
|
|
<AtButton type="primary" size="small"
|
|
|
onClick={() => {
|
|
|
Taro.switchTab({
|
|
@@ -210,27 +214,27 @@ class PunchClocks extends Component {
|
|
|
|
|
|
<View className='items'>
|
|
|
<View className='ititle'>研发工时:
|
|
|
- <Input value={this.state.duration} type='digit' className='input' placeholder='请输入工时' style={{ textAlign: "center" }}
|
|
|
+ <Input value={this.state.duration} type='digit' className='input' placeholder='请输入' style={{ textAlign: "center", border: "1px solid #d6e4ef" }}
|
|
|
onInput={e => {
|
|
|
this.setState({
|
|
|
duration: e.detail.value
|
|
|
})
|
|
|
}}
|
|
|
/>小时
|
|
|
- <Text style={{ color: "red" }}>注:工时可含1个小数点</Text>
|
|
|
+ <Text style={{ color: "red", fontSize: "10px" }}>注:工时可含1个小数点</Text>
|
|
|
</View>
|
|
|
</View>
|
|
|
|
|
|
<View className='item'>
|
|
|
<View className='ititle'>研发阶段:
|
|
|
- <Picker mode='selector' range={this.state.selector}
|
|
|
+ <Picker mode='selector' range={this.state.selector} rangeKey="lable"
|
|
|
onChange={e => {
|
|
|
this.setState({
|
|
|
selectorChecked: this.state.selector[e.detail.value]
|
|
|
})
|
|
|
}}>
|
|
|
<View className='picker'>
|
|
|
- {!!this.state.selectorChecked ? this.state.selectorChecked : "请选择"}
|
|
|
+ {!!this.state.selectorChecked.lable ? this.state.selectorChecked.lable : "请选择"}
|
|
|
</View>
|
|
|
</Picker>
|
|
|
</View>
|
|
@@ -240,7 +244,7 @@ class PunchClocks extends Component {
|
|
|
<View className='ititles'>研发记录:
|
|
|
<Textarea
|
|
|
value={this.state.remark}
|
|
|
- style='background:#fff;width:66%;min-height:70px;border:1px solid #8e8d8d;padding:10px' autoHeight
|
|
|
+ style='background:#fff;width:66%;min-height:70px;border:1px solid #d6e4ef;padding:10px' autoHeight
|
|
|
onInput={e => {
|
|
|
this.setState({
|
|
|
remark: e.detail.value
|