Jelajahi Sumber

款项登记弹窗补充

marymelisa 4 tahun lalu
induk
melakukan
26f6f69b1d

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

@@ -1161,4 +1161,25 @@ input:-internal-autofill-selected {
             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%;
+                }
+            }
+        }
+    }
 }

+ 3 - 3
src/services/request/serviceURL.ts

@@ -73,10 +73,10 @@ export const commonSearchUrl = (url: string): string => {
 export const setServiceURL = (config: URL): void => {
     // console.log('URL', config);
     // 外网环境(175),外包同事使用
-    if (process.env.NODE_ENV === 'development') {
+    // if (process.env.NODE_ENV === 'development') {
         serviceURL.goCommonSearchUrl = 'http://218.17.158.45:21001/api';
         serviceURL.quoteUrl = 'ws://218.17.158.45:21004';
         serviceURL.tradeUrl = 'ws://218.17.158.45:21005';
-    }
-    serviceURL = config;
+    // }
+    // serviceURL = config;
 };

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

@@ -140,6 +140,49 @@
         </a-row>
       </a-form>
     </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>
 </template>