Procházet zdrojové kódy

新增调拨单默认人民币;

001295 před 1 rokem
rodič
revize
43dc50c4c8
1 změnil soubory, kde provedl 7 přidání a 0 odebrání
  1. 7 0
      src/views/purchase/transferOrder/add.vue

+ 7 - 0
src/views/purchase/transferOrder/add.vue

@@ -1554,6 +1554,13 @@ export default {
     } else if (this.pageStu == "add") {
       this.basicForm.rate = 1;
       this.basicForm.billDate = new Date();
+      let currency = {
+        id: '1002Z0100000000001K1',
+        name: '人民币',
+      }
+      this.basicForm.currency = currency.id;
+      this.basicForm.currencyName = currency.name;
+      this.currencyOptions = [currency];
       this.loading = false
     }
   },