Prechádzať zdrojové kódy

森语-搬运工对账单

jbb 2 rokov pred
rodič
commit
0b2a4e3098

+ 9 - 4
src/views/oa/modules/SyCarryDetailModal.vue

@@ -29,15 +29,17 @@
            </a-col>
             <a-col :md="4" :sm="8">
               <a-form-model-item label="合计"  prop="code">
-                 <a-input placeholder="请输入" v-model="formState.totalNum" readOnly/>
+                 <a-input placeholder="请输入" v-model="formState.totalNum" disabled="false"/>
                </a-form-model-item>
             </a-col>
-            <a-col :md="5" :sm="8">
+            <a-col :md="14" :sm="8">
               <a-form-model-item label="合计大写"  prop="code">
-                 <a-input placeholder="请输入" v-model="formState.totalText" readOnly/>
+                 <a-input placeholder="请输入" v-model="formState.totalText" disabled="false"/>
                </a-form-model-item>
             </a-col>
-            <a-col :md="9" :sm="8">
+          </a-row>
+          <a-row :gutter="24">
+          <a-col :md="24" :sm="8">
               <a-form-model-item label="备注"  prop="code">
                  <a-input placeholder="请输入" v-model="formState.remarks" readOnly/>
                </a-form-model-item>
@@ -434,5 +436,8 @@
 /deep/ .ant-table-thead > tr > th, .ant-table-tbody > tr > td {
     padding: 7px 16px;
 }
+/deep/ .table-page-search-wrapper .ant-form-inline .ant-form-item > .ant-form-item-label {
+    width: 118px;
+}
 
 </style>

+ 9 - 3
src/views/oa/modules/SyCarryModal.vue

@@ -34,12 +34,15 @@
                  <a-input placeholder="" v-model="formState.totalNum" disabled="false"/>
                </a-form-model-item>
             </a-col>
-            <a-col :md="5" :sm="8">
+            <a-col :md="14" :sm="8">
               <a-form-model-item label="合计大写" >
-                 <a-input placeholder="请输入" v-model="formState.totalText" readOnly/>
+                 <a-input placeholder="请输入" v-model="formState.totalText" disabled="false"/>
                </a-form-model-item>
             </a-col>
-            <a-col :md="9" :sm="8">
+            
+          </a-row>
+          <a-row :gutter="24">
+            <a-col :md="24" :sm="8">
               <a-form-model-item label="备注"  >
                  <a-input placeholder="请输入" v-model="formState.remarks"/>
                </a-form-model-item>
@@ -804,4 +807,7 @@
 /deep/ .ant-table-thead > tr > th, .ant-table-tbody > tr > td {
     padding: 10px 16px;
 }
+/deep/ .table-page-search-wrapper .ant-form-inline .ant-form-item > .ant-form-item-label {
+    width: 118px;
+}
 </style>