Bladeren bron

合同计量单元

ZaiZai 10 maanden geleden
bovenliggende
commit
1621ead5e5

+ 8 - 0
src/views/project/debit/contract/check-list.vue

@@ -166,6 +166,14 @@
                             <el-input v-model="formModel.chapterNumber" :disabled="treeItem.nodeTier !== 0 || infoData.citeStatus === 1" />
                         </el-form-item>
                     </el-col>
+                    <el-col v-if="formModel.isFormNode === 1" :span="8">
+                        <el-form-item label="允许材料调差:">
+                            <el-select v-model="formModel.isAdjust" block placeholder="请选择">
+                                <el-option label="是" :value="1" />
+                                <el-option label="否" :value="0" />
+                            </el-select>
+                        </el-form-item>
+                    </el-col>
                     <el-col :span="24">
                         <el-form-item label="备注:">
                             <el-input v-model="formModel.remark" :autosize="{ minRows: 4, maxRows: 8 }" type="textarea" :disabled="infoData.citeStatus === 1" />

+ 3 - 1
src/views/project/debit/contract/components/check-list/info-table1.vue

@@ -41,8 +41,10 @@
             <hc-info-table-td width="auto">{{ infoData?.chapterNumber }}</hc-info-table-td>
         </tr>
         <tr>
+            <hc-info-table-td center is-title width="120px">允许材料调差:</hc-info-table-td>
+            <hc-info-table-td width="auto">{{ infoData?.isAdjustName }}</hc-info-table-td>
             <hc-info-table-td center is-title width="120px">备注:</hc-info-table-td>
-            <hc-info-table-td width="auto" colspan="5">{{ infoData?.remark }}</hc-info-table-td>
+            <hc-info-table-td width="auto" colspan="3">{{ infoData?.remark }}</hc-info-table-td>
         </tr>
     </hc-info-table>
 </template>