Quellcode durchsuchen

Merge branch 'master' of http://47.101.159.18:3000/Muchinfo/MTP2.0_WEB

huangbin vor 4 Jahren
Ursprung
Commit
baa5d15679
2 geänderte Dateien mit 64 neuen und 0 gelöschten Zeilen
  1. 21 0
      src/assets/styles/mixin.less
  2. 43 0
      src/views/business/purchase/components/funds/index.vue

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

@@ -1161,4 +1161,25 @@ input:-internal-autofill-selected {
             margin-right: 15px;
             margin-right: 15px;
         }
         }
     }
     }
+}
+
+.ant-radio-group.commonRadioGroup {
+    .ant-radio-wrapper {
+        color: @m-white0;
+        font-size: 14px;
+        .ant-radio {
+            .ant-radio-inner {
+                border-color:#3A87F7;
+                background: #15202B;
+                &::after {
+                    left: 4px;
+                    top: 4px;
+                    width: 6px;
+                    height: 6px;
+                    background: #3A87F7;
+                    border-radius: 50%;
+                }
+            }
+        }
+    }
 }
 }

+ 43 - 0
src/views/business/purchase/components/funds/index.vue

@@ -140,6 +140,49 @@
         </a-row>
         </a-row>
       </a-form>
       </a-form>
     </fieldset>
     </fieldset>
+    <fieldset class="formFieldSet">
+      <legend>本次款项信息</legend>
+      <a-form class="inlineForm"
+              ref="formRef"
+              :model="formState"
+              :rules="rules">
+        <a-row :gutter="24">
+          <a-col :span="12">
+            <a-form-item label="应付款额"
+                         name="PricedPrice">
+              <span class="white">10000000.00元</span>
+            </a-form-item>
+          </a-col>
+          <a-col :span="12">
+            <a-form-item label="款项类型">
+              <a-radio-group class="commonRadioGroup">
+                <a-radio :value="1">付款申请</a-radio>
+                <a-radio :value="2">退款通知</a-radio>
+              </a-radio-group>
+            </a-form-item>
+          </a-col>
+        </a-row>
+        <a-row :gutter="24">
+          <a-col :span="12">
+            <a-form-item label="登记金额">
+               <a-input class="dialogInput"
+                              style="width: 200px"
+                              suffix="元"
+                              placeholder="请输入登记金额" />
+            </a-form-item>
+          </a-col>
+          <a-col :span="24">
+            <a-form-item label="备注"
+                         name="PricedQty"
+                         class="relative">
+              <a-input class="dialogInput"
+                              style="width: 608px"
+                              placeholder="请输入备注信息" />
+            </a-form-item>
+          </a-col>
+        </a-row>
+      </a-form>
+    </fieldset>
   </a-modal>
   </a-modal>
 </template>
 </template>