소스 검색

fix: 修正应付金额输入框的文本对齐方式,确保左对齐

xieyong 1 일 전
부모
커밋
9050a1091f
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. 6 1
      src/views/financialManage/payableManage/components/detailDialog.vue

+ 6 - 1
src/views/financialManage/payableManage/components/detailDialog.vue

@@ -48,7 +48,8 @@
               prop="payableTotalPrice"
               >
               <el-input-number disabled v-model="form.payableTotalPrice" :precision="2" :controls="false"
-                               style="width: 100%"
+                               style="width: 100%; text-align: left;"
+                               class="payable-amount-input"
                                :min="0"></el-input-number>
             </el-form-item>
           </el-col>
@@ -274,6 +275,10 @@ export default {
   }
 }
 
+:deep(.payable-amount-input .el-input__inner) {
+  text-align: left;
+}
+
 .headbox {
   display: flex;
   justify-content: flex-start;