|
|
@@ -51,7 +51,19 @@
|
|
|
<view class="info-item" v-if="reEvaluationForm.orderType == '2'">
|
|
|
<text class="info-label">分项完成系数和</text>
|
|
|
<text class="info-value">{{ reEvaluationForm.itemCompletionFactorSum }}</text>
|
|
|
- </view>
|
|
|
+ </view>
|
|
|
+
|
|
|
+ <view class="info-item" v-if="reEvaluationForm.orderType == '2'">
|
|
|
+ <text class="info-label">分项完成系数<text style="color: red;">*</text></text>
|
|
|
+ <input
|
|
|
+ class="info-input"
|
|
|
+ type="digit"
|
|
|
+ :value="getItemCompletionFactorDisplayValue()"
|
|
|
+ @input="onItemCompletionFactorInput"
|
|
|
+ @blur="formatItemCompletionFactor()"
|
|
|
+ placeholder="请输入分项完成系数"
|
|
|
+ />
|
|
|
+ </view>
|
|
|
</view>
|
|
|
|
|
|
<!-- 退回理由 -->
|
|
|
@@ -69,20 +81,9 @@
|
|
|
</view> -->
|
|
|
|
|
|
|
|
|
- <view class="info-card" v-if="reEvaluationForm.orderType == '2'">
|
|
|
- <view class="info-item">
|
|
|
- <text class="info-label">分项完成系数<text style="color: red;">*</text></text>
|
|
|
- <input
|
|
|
- class="info-input"
|
|
|
- type="digit"
|
|
|
- :value="getItemCompletionFactorDisplayValue()"
|
|
|
- @input="onItemCompletionFactorInput"
|
|
|
- @blur="formatItemCompletionFactor()"
|
|
|
- placeholder="请输入分项完成系数"
|
|
|
- />
|
|
|
- </view>
|
|
|
+ <view class="info-card" v-if="showModifyReason">
|
|
|
<!-- 修改理由 - 仅当需要修改时显示 -->
|
|
|
- <view class="form-item" v-if="showModifyReason">
|
|
|
+ <view class="form-item" >
|
|
|
<text class="label">修改理由<text style="color: red;">*</text></text>
|
|
|
<textarea
|
|
|
class="textarea"
|