xiaodai2022 2 anos atrás
pai
commit
098e461765

+ 10 - 9
src/views/goodStore/goodsCost/components/baseFormAddEdit.vue

@@ -4,8 +4,8 @@
     :title="title"
     :center="true"
     align="left"
-    top="18vh"
-    width="600px"
+    top="5vh"
+    width="1040px"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
     element-loading-text="拼命加载中"
@@ -36,7 +36,10 @@
               />
             </el-form-item>
             <el-form-item label="规格值" prop="spec_value_id">
-              <div v-if="specVlist.length > 0">
+              <div
+                v-if="specVlist.length > 0"
+                style="max-height: 600px; overflow-y: scroll"
+              >
                 <el-radio-group
                   v-model="ruleForm.spec_value_id"
                   @change="spec_value_id_change"
@@ -111,9 +114,7 @@ export default {
             trigger: "change",
           },
         ],
-        spec_value_id: [
-          { required: true, message: "请选择规格值", trigger: "change" },
-        ],
+        spec_value_id: [{ required: true, message: "请选择规格值", trigger: "change" }],
       },
     };
   },
@@ -133,7 +134,7 @@ export default {
   methods: {
     async initForm() {
       this.loading = true;
-      this.sinput=""
+      this.sinput = "";
       this.resetFormData();
       this.rulesThis = this.rules;
       if (this.index + "" === "-1") {
@@ -154,7 +155,7 @@ export default {
         }
       });
     },
-   async resetFormData() {
+    async resetFormData() {
       const {
         id,
         spec_id,
@@ -249,7 +250,7 @@ export default {
 };
 </script>
 
-   <style lang="scss" scoped>
+<style lang="scss" scoped>
 .goodsCostAdd {
   .no-data {
     text-align: center;

+ 9 - 10
src/views/purchaseIn/workbench/components/baseFormAddEdit.vue

@@ -4,8 +4,8 @@
     :title="title"
     :center="true"
     align="left"
-    top="18vh"
-    width="570px"
+    top="5vh"
+    width="1040px"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
     element-loading-text="拼命加载中"
@@ -37,7 +37,10 @@
               />
             </el-form-item>
             <el-form-item label="规格值" prop="spec_value_id">
-              <div v-if="specVlist.length > 0">
+              <div
+                v-if="specVlist.length > 0"
+                style="max-height: 600px; overflow-y: scroll"
+              >
                 <el-radio-group
                   v-model="ruleForm.spec_value_id"
                   @change="spec_value_id_change"
@@ -59,7 +62,6 @@
             style="width: 209px"
             v-model="sinput"
             class="fl"
-            
             :disabled="id == 'edit'"
             :size="'small'"
             placeholder="规格值名称,如红色"
@@ -113,9 +115,7 @@ export default {
             trigger: "change",
           },
         ],
-        spec_value_id: [
-          { required: true, message: "请选择规格值", trigger: "change" },
-        ],
+        spec_value_id: [{ required: true, message: "请选择规格值", trigger: "change" }],
       },
     };
   },
@@ -153,8 +153,7 @@ export default {
           this.$refs.ruleForm.clearValidate();
           if (this.index + "" !== "-1") {
             this.specVlist = [];
-            const { specid, spec_name, spec_value_id, spec_value_name } =
-              this.sitem;
+            const { specid, spec_name, spec_value_id, spec_value_name } = this.sitem;
             this.ruleForm = {
               index: this.index,
               specid: specid || "",
@@ -252,7 +251,7 @@ export default {
 };
 </script>
 
-   <style lang="scss" scoped>
+<style lang="scss" scoped>
 .goodsCostAdd {
   .no-data {
     text-align: center;

+ 9 - 9
src/views/sellOut/zixunOrder/components/baseFormAddEdit.vue

@@ -4,8 +4,8 @@
     :title="title"
     :center="true"
     align="left"
-    top="18vh"
-    width="570px"
+    top="5vh"
+    width="1040px"
     :close-on-click-modal="false"
     :visible.sync="showModelThis"
     element-loading-text="拼命加载中"
@@ -37,7 +37,10 @@
               />
             </el-form-item>
             <el-form-item label="规格值" prop="spec_value_id">
-              <div v-if="specVlist.length > 0">
+              <div
+                v-if="specVlist.length > 0"
+                style="max-height: 600px; overflow-y: scroll"
+              >
                 <el-radio-group
                   v-model="ruleForm.spec_value_id"
                   @change="spec_value_id_change"
@@ -112,9 +115,7 @@ export default {
             trigger: "change",
           },
         ],
-        spec_value_id: [
-          { required: true, message: "请选择规格值", trigger: "change" },
-        ],
+        spec_value_id: [{ required: true, message: "请选择规格值", trigger: "change" }],
       },
     };
   },
@@ -152,8 +153,7 @@ export default {
           this.$refs.ruleForm.clearValidate();
           if (this.index + "" !== "-1") {
             this.specVlist = [];
-            const { specid, spec_name, spec_value_id, spec_value_name } =
-              this.sitem;
+            const { specid, spec_name, spec_value_id, spec_value_name } = this.sitem;
             this.ruleForm = {
               index: this.index,
               specid: specid || "",
@@ -251,7 +251,7 @@ export default {
 };
 </script>
 
-   <style lang="scss" scoped>
+<style lang="scss" scoped>
 .goodsCostAdd {
   .no-data {
     text-align: center;