|
@@ -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;
|