marymelisa il y a 4 ans
Parent
commit
4c0631c625

+ 17 - 0
src/assets/styles/mixin.less

@@ -546,6 +546,23 @@
       padding: 0 10px;
     }
   }
+  .paddingDialog {
+      .ant-modal-content {
+          .ant-modal-body {
+              padding: 24px;
+          }
+      }
+      .formFieldSet {
+        legend {
+            width: auto;
+            margin-left: 20px;
+            font-size: 16px;
+            color: @m-white0;
+            border-bottom: 0;
+            padding: 0 10px;
+          }
+      }
+  }
   // 上传
   .upload {
     display: inline-flex;

+ 2 - 1
src/views/business/purchase/components/detail/index.vue

@@ -1,6 +1,6 @@
 <template>
     <!-- 采购合同详情-->
-    <a-modal class="custom-detail"
+    <a-modal class="commonModal paddingDialog purchase-detail"
              title="详情"
              v-model:visible="visible"
              @cancel="cancel"
@@ -139,4 +139,5 @@ export default defineComponent({
 </script>
 
 <style lang="less">
+
 </style>;

+ 1 - 1
src/views/business/purchase/components/filterTable/index.vue

@@ -1,6 +1,6 @@
 <template>
   <!-- 过滤客户资料表格 -->
-  <div>
+  <div class="filterTable">
     <FilterOption :selectList="selectList"
                   :inputList="inputList"
                   :fixedBtnList="fixedBtnList" />

+ 1 - 1
src/views/business/sell/components/filterTable/index.vue

@@ -1,6 +1,6 @@
 <template>
   <!-- 过滤客户资料表格 -->
-  <div>
+  <div class="filterTable">
     <FilterOption :selectList="selectList"
                   :inputList="inputList"
                   :fixedBtnList="fixedBtnList" />