张延森 2 years ago
parent
commit
8acb9b3392
2 changed files with 9 additions and 3 deletions
  1. 0
    2
      src/pages/invoice/components/InvoiceInfo.vue
  2. 9
    1
      src/pages/invoice/fill.vue

+ 0
- 2
src/pages/invoice/components/InvoiceInfo.vue View File

70
   }
70
   }
71
 })
71
 })
72
 </script>
72
 </script>
73
-<style>
74
-</style>

+ 9
- 1
src/pages/invoice/fill.vue View File

1
 <template>
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
     <back-button />
3
     <back-button />
4
     <h2 :style="{ textAlign: 'center' }">{{ fillData.name }}</h2>
4
     <h2 :style="{ textAlign: 'center' }">{{ fillData.name }}</h2>
5
     <person-info
5
     <person-info
129
   })
129
   })
130
 }
130
 }
131
 </script>
131
 </script>
132
+
133
+<style lang="less">
134
+.invoice-fill-form {
135
+  .van-field__label {
136
+    flex: none;
137
+  }
138
+}
139
+</style>