소스 검색

added header phrase to login/register pricing modal

bach 2 년 전
부모
커밋
9e01ecb2b9

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 0 - 0
web/themes/custom/materiotheme/assets/dist/main.js


BIN
web/themes/custom/materiotheme/assets/dist/main.js.gz


파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 1 - 1
web/themes/custom/materiotheme/assets/dist/report.html


+ 10 - 2
web/themes/custom/materiotheme/vuejs/components/Helper/LoginRegister.vue

@@ -1,6 +1,6 @@
 <template>
 <template>
   <div id="login-register">
   <div id="login-register">
-    <h2>{{ $t("materio.Please login or create a new account") }}</h2>
+    <h2>{{ $t(header) }}</h2>
     <div class="wrapper">
     <div class="wrapper">
       <section class="login">
       <section class="login">
         <h3>{{ $t("default.Login") }} </h3>
         <h3>{{ $t("default.Login") }} </h3>
@@ -27,7 +27,15 @@ export default {
     password:null,
     password:null,
     registerEmail:null
     registerEmail:null
   }),
   }),
-  props:['callbackargs', 'onLogedInBack', 'onRegisteredBack'],
+  props:{
+    header: {
+      type: String,
+      default: 'materio.Please login or create a new account'
+    }, 
+    callbackargs: Object, 
+    onLogedInBack: Function, 
+    onRegisteredBack: Function
+  },
   methods: {
   methods: {
     ...mapActions({
     ...mapActions({
       userLogin: 'User/userLogin',
       userLogin: 'User/userLogin',

+ 3 - 2
web/themes/custom/materiotheme/vuejs/components/productsMixins.js

@@ -40,6 +40,7 @@ export default {
         // props
         // props
         {
         {
           // item: this.item,
           // item: this.item,
+          header: 'materio.In order to be able to place your order, please log in or create your account',
           callbackargs: { variation_id: variation_id },
           callbackargs: { variation_id: variation_id },
           // close: (variation_id) => { this.closeModal(variation_id) },
           // close: (variation_id) => { this.closeModal(variation_id) },
           onLogedInBack: (cba) => { this.onLogedIn(cba.variation_id) },
           onLogedInBack: (cba) => { this.onLogedIn(cba.variation_id) },
@@ -59,8 +60,8 @@ export default {
           name: 'modal-loginregister',
           name: 'modal-loginregister',
           draggable: false,
           draggable: false,
           classes: 'vm--modale-loginregister',
           classes: 'vm--modale-loginregister',
-          width: '500px',
-          height: '350px'
+          width: '550px',
+          height: '400px'
         }
         }
       )
       )
     },
     },

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.