| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <view class='list'>
- <text>公司名称</text>
- <view class="list-content">
- <input value="{{ comName }}" placeholder="请填写" maxlength='50' bindchange="changeComName" />
- </view>
- </view>
- <view class='list'>
- <text>工作岗位</text>
- <view class="list-content">
- <input value="{{ jobName }}" placeholder="请填写" maxlength='50' bindchange="changeJobName" />
- </view>
- </view>
- <view class='list'>
- <text>入职时间</text>
- <view class="list-content">
- <picker bindchange="startDateChange" mode="date" value="{{startDate}}" fields="month" start="2015-09" end="{{startDateEnd}}">
- {{startDate}}
- </picker>
- <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- </view>
- <view class='list'>
- <text>离职时间</text>
- <view class="list-content">
- <view bindtap="showEndDate" class="endDate">
- {{endDate}}
- <!-- <picker bindchange="endDateChange" mode="date" value="{{endDate}}" fields="month" start="2015-09" end="{{endTime}}">
- </picker> -->
- </view>
- <image class='arrow' src='{{imgServerUrl}}/images/happyjob/rightwjt.png'></image>
- </view>
- </view>
- <!-- <view class="delete" wx:if='{{show_delete}}' bindtap="delete">
- <icon type='cancel' color='#006BE7' size="35rpx"></icon>
- <text>删除工作经历</text>
- </view> -->
- <form bindsubmit="submit" report-submit='true' class="btn-group fixed-footer">
- <button class="distance selfBtn {{!disabled&&'disabled'}}" form-type="submit">保存</button>
- </form>
- <view class="pick-view" bindtap="endDateCancel" hidden="{{pick_view}}">
- <view class="pick-view-header">
- <view style="color:#0177FF;" catchtap="endDateCancel">取消</view>
- <view>离职时间</view>
- <view style="color:#0177FF" catchtap="endDateSure">确定</view>
- </view>
- <picker-view class="show-pick" style="width: 750rpx; height: 300px;" value="{{end_time}}" indicator-style="height: 50px;" style="width: 100%; height: 300px;position:absolute;bottom: 0;left: 0;background: #fff;" indicator-class='indicator-class' catchchange="endDateChange" bindpickend='touchEnd' bindpickstart='touchStart' catchtap="endDateTap">
- <picker-view-column style='background: #fff;'>
- <view wx:for="{{years}}" wx:key='index' style="line-height: 50px;text-align: center;background: #fff;">{{item}}</view>
- </picker-view-column>
- <picker-view-column>
- <view wx:for="{{months}}" wx:key='index' style="line-height: 50px;text-align: center;background: #fff;">{{item}}月</view>
- </picker-view-column>
- </picker-view>
- </view>
|