8
0
ZaiZai vor 9 Monaten
Ursprung
Commit
8aa8054bdf
1 geänderte Dateien mit 14 neuen und 3 gelöschten Zeilen
  1. 14 3
      src/views/project/detail/info.vue

+ 14 - 3
src/views/project/detail/info.vue

@@ -1,5 +1,5 @@
 <template>
-    <div class="hc-contract-info-data">
+    <div class="hc-contract-info-data relative">
         <el-form ref="formRef" :model="contractForm" :rules="formRules" label-position="top" label-width="auto">
             <hc-card-item title="基础信息">
                 <el-row :gutter="20">
@@ -215,10 +215,14 @@
                     </el-col>
                 </el-row>
             </hc-card-item>
-            <hc-card-item class="mt-14px" title="计量信息">
+            <hc-card-item class="mb-70px mt-14px" title="计量信息">
                 <HcMeterTable v-model="meterForm" />
             </hc-card-item>
         </el-form>
+        <div class="action">
+            <el-button hc-btn class="mr-4">保存并退出</el-button>
+            <el-button hc-btn type="primary">保存并进入下一步</el-button>
+        </div>
     </div>
 </template>
 
@@ -375,5 +379,12 @@ const getContractRelation = async () => {
 </script>
 
 <style scoped lang="scss">
-
+.hc-contract-info-data .action {
+    position: fixed;
+    bottom: 14px;
+    width: calc(100% - 240px);
+    text-align: center;
+    background: #fff;
+    padding: 14px;
+}
 </style>