1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <view>
- <view style="height:0.2rem"></view>
- <view style="margin:0.2rem;margin-top:0">
- <view a:if="{{knowFrom == 'action'}}" class="header">
- <view style="font-size: 0.32rem;margin: 0.1rem 0 0.15rem 0;">
- <text style="width: .32rem;height: .32rem;color:rgb(241, 171, 25)" class="iconfont icon-dengpao"></text>
- <text style="font-size:.32rem;padding-left:.1rem;color:black;">执行计划用来做什么</text>
- </view>
- <view style="font-size: 0.26rem;color: #a0a0a0;">
- <text style="line-height:40rpx">
- 1、可以填写如何达成指标的计划,并记录进展行动
- 2、填写的内容将给评分人作为参考
- </text>
- </view>
- </view>
- <view a:else class="header">
- <view style="font-size: 0.32rem;margin: 0.1rem 0 0.15rem 0;">
- <text style="width: .32rem;height: .32rem;color:rgb(241, 171, 25)" class="iconfont icon-dengpao"></text>
- <text style="font-size:.32rem;padding-left:.1rem;color:black;">跟踪管理记录用来做什么</text>
- </view>
- <view style="font-size: 0.26rem;color: #a0a0a0;">
- <text style="line-height:40rpx">
- 1、填写工作执行过程的实际情况、表现好坏及奖惩情况
- 2、填写管理指导的过程记录
- 3、填写的内容可以给评分人作为参考
- </text>
- </view>
- </view>
- </view>
- <view class="plancenter" catchTap="showDetil">
- <view class="van-cell flex-box-ce">
- <view class="van-cell__title">
- <text>所属指标:{{apDetails.name}}</text>
- </view>
- <text class="iconfont icon-jiantouyou"></text>
- </view>
- </view>
- <view class="margin-bottom">
- <view class="page-section-demo">
- <textarea onInput="bindTextAreaBlur" value="{{titValue}}" auto-height placeholder="请输入{{detailsTIt}}" maxlength="200" />
- </view>
- <view class="page-section-demo">
- <textarea onInput="bindTextAreaBlur2" value="{{messageVal}}" auto-height placeholder="选填,请输入备注" maxlength="500" />
- </view>
- <view class="page-section-demo">
- <button size="mini" type="primary" catchTap="openImg" style="margin-bottom:20rpx">+附件</button>
- <!--<view class="van-uploader__upload" catchTap="openImg"><text class="iconfont icon-xiangji" style="color:#dcdee0;font-size:0.46rem;"></text></view> -->
- <view class="images flex-box-ce" a:for="{{append}}" a:key="{{index}}">
- <view class="flex-1 blue" catchTap="showImg" data-item="{{item}}">{{item.fileName}}</view>
- <view catchTap="deleteImg" data-index="{{index}}" style="padding:14rpx 20rpx">
- <icon type="clear" size="16" />
- </view>
- </view>
- </view>
- </view>
- <view class="footer">
- <view class="flex-box-ce btns">
- <view onTap="deleteList" a:if="{{arrlist && isShowAdd}}">删除</view>
- <view onTap="save" class="flex-1" a:if="{{isShowAdd}}">保存</view>
- </view>
- </view>
- <!-- 详情 -->
- <view class="windows" a:if="{{isShowDetil}}">
- <view class="vassheet {{isShowDetil?'showdown':''}}">
- <view class="vasHead" catchTap="showDetil">
- <icon type="clear" size="20" class="icon" />
- <text>所属指标</text>
- </view>
- <view class="pullUpdel">
- <view style="padding:.05rem 0 .15rem 0;font-size:.32rem;">{{ apDetails.name }}</view>
- <view class="intro" style="font-size:.26rem;">
- <text class="introcol">考核标准:</text>
- <text class="line-feed">{{apDetails.per_remark}}</text>
- <text class="introcol intropad">权重(%):{{ apDetails.weight }}%</text>
- <text class="introcol intropad">目标值:{{ apDetails.target }}{{ apDetails.unit }}</text>
- </view>
- </view>
- </view>
- </view>
- </view>
|