Browse Source

提交代码

tangning 2 years ago
parent
commit
9995fc61df
1 changed files with 23 additions and 23 deletions
  1. 23 23
      src/views/customer/modal/InfoModal.vue

+ 23 - 23
src/views/customer/modal/InfoModal.vue

@@ -106,6 +106,28 @@
           },
         },
         {
+          field: 'sceneVersion',
+          component: 'RadioGroup',
+          label: '场景类型',
+          defaultValue: 'V4',
+          required: true,
+          componentProps: {
+            options: [
+              {
+                label: 'V3',
+                value: 'V3',
+              },
+              {
+                label: 'V4',
+                value: 'V4',
+              },
+            ],
+          },
+          colProps: {
+            span: 22,
+          },
+        },
+        {
           field: 'topLogo',
           component: 'Divider',
           label: 'Logo信息',
@@ -158,7 +180,7 @@
           component: 'Upload',
           label: '二维码LOGO',
           defaultValue: null,
-          helpMessage:'显示在场景二维码中间的LOGO',
+          helpMessage: '显示在场景二维码中间的LOGO',
           componentProps: {
             api: uploadApi,
             maxNumber: 1,
@@ -173,28 +195,6 @@
             span: 22,
           },
         },
-        // {
-        //   field: 'showLogo',
-        //   component: 'RadioGroup',
-        //   label: '移动端品牌LOGO',
-        //   helpMessage:'四维时代提供技术支持',
-        //   defaultValue: 1,
-        //   componentProps: {
-        //     options: [
-        //       {
-        //         label: '显示',
-        //         value: 1,
-        //       },
-        //       {
-        //         label: '不显示',
-        //         value: 2,
-        //       },
-        //     ],
-        //   },
-        //   colProps: {
-        //     span: 22,
-        //   },
-        // },
       ];
       const [registerForm, { validate, resetFields, setFieldsValue }] = useForm({
         labelWidth: 150,