addthePlan.axml 3.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <view>
  2. <view style="height:0.2rem"></view>
  3. <view style="margin:0.2rem;margin-top:0">
  4. <view a:if="{{knowFrom == 'action'}}" class="header">
  5. <view style="font-size: 0.32rem;margin: 0.1rem 0 0.15rem 0;">
  6. <text style="width: .32rem;height: .32rem;color:rgb(241, 171, 25)" class="iconfont icon-dengpao"></text>
  7. <text style="font-size:.32rem;padding-left:.1rem;color:black;">执行计划用来做什么</text>
  8. </view>
  9. <view style="font-size: 0.26rem;color: #a0a0a0;">
  10. <text style="line-height:40rpx">
  11. 1、可以填写如何达成指标的计划,并记录进展行动
  12. 2、填写的内容将给评分人作为参考
  13. </text>
  14. </view>
  15. </view>
  16. <view a:else class="header">
  17. <view style="font-size: 0.32rem;margin: 0.1rem 0 0.15rem 0;">
  18. <text style="width: .32rem;height: .32rem;color:rgb(241, 171, 25)" class="iconfont icon-dengpao"></text>
  19. <text style="font-size:.32rem;padding-left:.1rem;color:black;">跟踪管理记录用来做什么</text>
  20. </view>
  21. <view style="font-size: 0.26rem;color: #a0a0a0;">
  22. <text style="line-height:40rpx">
  23. 1、填写工作执行过程的实际情况、表现好坏及奖惩情况
  24. 2、填写管理指导的过程记录
  25. 3、填写的内容可以给评分人作为参考
  26. </text>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="plancenter" catchTap="showDetil">
  31. <view class="van-cell flex-box-ce">
  32. <view class="van-cell__title">
  33. <text>所属指标:{{apDetails.name}}</text>
  34. </view>
  35. <text class="iconfont icon-jiantouyou"></text>
  36. </view>
  37. </view>
  38. <view class="margin-bottom">
  39. <view class="page-section-demo">
  40. <textarea onInput="bindTextAreaBlur" value="{{titValue}}" auto-height placeholder="请输入{{detailsTIt}}" maxlength="200" />
  41. </view>
  42. <view class="page-section-demo">
  43. <textarea onInput="bindTextAreaBlur2" value="{{messageVal}}" auto-height placeholder="选填,请输入备注" maxlength="500" />
  44. </view>
  45. <view class="page-section-demo">
  46. <button size="mini" type="primary" catchTap="openImg" style="margin-bottom:20rpx">+附件</button>
  47. <!--<view class="van-uploader__upload" catchTap="openImg"><text class="iconfont icon-xiangji" style="color:#dcdee0;font-size:0.46rem;"></text></view> -->
  48. <view class="images flex-box-ce" a:for="{{append}}" a:key="{{index}}">
  49. <view class="flex-1 blue" catchTap="showImg" data-item="{{item}}">{{item.fileName}}</view>
  50. <view catchTap="deleteImg" data-index="{{index}}" style="padding:14rpx 20rpx">
  51. <icon type="clear" size="16" />
  52. </view>
  53. </view>
  54. </view>
  55. </view>
  56. <view class="footer">
  57. <view class="flex-box-ce btns">
  58. <view onTap="deleteList" a:if="{{arrlist && isShowAdd}}">删除</view>
  59. <view onTap="save" class="flex-1" a:if="{{isShowAdd}}">保存</view>
  60. </view>
  61. </view>
  62. <!-- 详情 -->
  63. <view class="windows" a:if="{{isShowDetil}}">
  64. <view class="vassheet {{isShowDetil?'showdown':''}}">
  65. <view class="vasHead" catchTap="showDetil">
  66. <icon type="clear" size="20" class="icon" />
  67. <text>所属指标</text>
  68. </view>
  69. <view class="pullUpdel">
  70. <view style="padding:.05rem 0 .15rem 0;font-size:.32rem;">{{ apDetails.name }}</view>
  71. <view class="intro" style="font-size:.26rem;">
  72. <text class="introcol">考核标准:</text>
  73. <text class="line-feed">{{apDetails.per_remark}}</text>
  74. <text class="introcol intropad">权重(%):{{ apDetails.weight }}%</text>
  75. <text class="introcol intropad">目标值:{{ apDetails.target }}{{ apDetails.unit }}</text>
  76. </view>
  77. </view>
  78. </view>
  79. </view>
  80. </view>