yuanyuan il y a 2 ans
Parent
commit
d82aa585ff
4 fichiers modifiés avec 24 ajouts et 25 suppressions
  1. 1 1
      .env.development
  2. 3 3
      src/views/DomainName.vue
  3. 9 10
      src/views/Store.vue
  4. 11 11
      src/views/product/MetaDomain.vue

+ 1 - 1
.env.development

@@ -1,4 +1,4 @@
-VUE_APP_BASE_URL=https://www.raex.vip/
+VUE_APP_BASE_URL=https://test.raex.vip/
 NODE_ENV=development
 VUE_APP_PUBLIC_PATH=/
 ASSETS_PATH=raex

+ 3 - 3
src/views/DomainName.vue

@@ -456,8 +456,8 @@ export default {
                     this.list = [];
                 });
             } else {
-                // let matching = /^[A-Za-z0-9_\u4e00-\u9fa5]+$/;
-                let matching = /^[A-Za-z0-9]+$/;
+                let matching = /^[A-Za-z0-9_\u4e00-\u9fa5]+$/;
+                // let matching = /^[A-Za-z0-9]+$/;
                 if (matching.test(value)) {
                     this.$http
                         .post('/domainOrder/search', {
@@ -483,7 +483,7 @@ export default {
                         })
                         .catch(e => {});
                 } else {
-                    this.$toast('只能由数字和字母组成');
+                    this.$toast('只能由数字和字母、中文组成');
                     this.list = [];
                 }
             }

+ 9 - 10
src/views/Store.vue

@@ -237,14 +237,14 @@ export default {
                     name: '审核中',
                     type: 'underReview'
                 },
-                // {
-                //     name: '我的出价',
-                //     type: 'myBid'
-                // },
-                // {
-                //     name: '收到的报价',
-                //     type: 'receiveQuotation'
-                // }
+                {
+                    name: '我的出价',
+                    type: 'myBid'
+                },
+                {
+                    name: '收到的报价',
+                    type: 'receiveQuotation'
+                }
             ],
             typeOptionLike: [
                 {
@@ -902,7 +902,7 @@ export default {
 .metadomainName_list {
     padding: 16px 15px 20px 16px;
     display: flex;
-    // justify-content: space-between;
+    justify-content: space-between;
     background: #0F0F0F;
 
     .metadomainName_list_cons {
@@ -915,7 +915,6 @@ export default {
         font-size: 12px;
         font-weight: 400;
         color: rgba(147, 149, 153, 0.6);
-        margin-right: 20px;
     }
 
     .metadomainName_list_con {

+ 11 - 11
src/views/product/MetaDomain.vue

@@ -232,14 +232,14 @@ export default {
                 }
             ],
             characteristicList: [
-                // {
-                //     name: '百家姓',
-                //     type: 'RIDCX'
-                // },
-                // {
-                //     name: '中文',
-                //     type: 'RIDC'
-                // },
+                {
+                    name: '百家姓',
+                    type: 'RIDCX'
+                },
+                {
+                    name: '中文',
+                    type: 'RIDC'
+                },
                 {
                     name: '二位数字',
                     type: 'RIDN2'
@@ -310,15 +310,15 @@ export default {
         },
         getSearch(value) {
             this.search = this.value;
-            // let matching = /^[A-Za-z0-9_\u4e00-\u9fa5]+$/;
-            let matching = /^[A-Za-z0-9]+$/;
+            let matching = /^[A-Za-z0-9_\u4e00-\u9fa5]+$/;
+            // let matching = /^[A-Za-z0-9]+$/;
             if (matching.test(this.search)) {
                 this.getList(true);
             } else {
                 if (this.search == '') {
                     this.refreash();
                 } else {
-                    this.$toast('只能由数字和字母组成');
+                    this.$toast('只能由数字和字母、中文组成');
                 }
             }
         },