张延森 2 yıl önce
ebeveyn
işleme
8acb9b3392

+ 0
- 2
src/pages/invoice/components/InvoiceInfo.vue Dosyayı Görüntüle

@@ -70,5 +70,3 @@ const props = defineProps({
70 70
   }
71 71
 })
72 72
 </script>
73
-<style>
74
-</style>

+ 9
- 1
src/pages/invoice/fill.vue Dosyayı Görüntüle

@@ -1,5 +1,5 @@
1 1
 <template>
2
-  <van-form @failed="onFailed" @submit="onSubmit" :readonly="isFinished">
2
+  <van-form @failed="onFailed" @submit="onSubmit" :readonly="isFinished" class="invoice-fill-form">
3 3
     <back-button />
4 4
     <h2 :style="{ textAlign: 'center' }">{{ fillData.name }}</h2>
5 5
     <person-info
@@ -129,3 +129,11 @@ const onSubmit = (val) => {
129 129
   })
130 130
 }
131 131
 </script>
132
+
133
+<style lang="less">
134
+.invoice-fill-form {
135
+  .van-field__label {
136
+    flex: none;
137
+  }
138
+}
139
+</style>