|
@@ -30,7 +30,7 @@
|
|
|
:value="ruleForm.spec_id"
|
|
|
:disabled="sitem.isMust"
|
|
|
:size="'mini'"
|
|
|
- :isDetail="false"
|
|
|
+ :is-detail="false"
|
|
|
:placeholder="'规格类型'"
|
|
|
@searchChange="spec_idsearchChange"
|
|
|
/>
|
|
@@ -42,27 +42,26 @@
|
|
|
<el-select
|
|
|
v-model="ruleForm.spec_value_id"
|
|
|
placeholder="请选择规格值"
|
|
|
- @change="spec_value_id_change"
|
|
|
style="width:100%"
|
|
|
filterable
|
|
|
+ @change="spec_value_id_change"
|
|
|
>
|
|
|
<el-option
|
|
|
v-for="item in specVlist"
|
|
|
:key="item.id + item.spec_value"
|
|
|
:label="item.spec_value"
|
|
|
:value="item.id"
|
|
|
- >{{ item.spec_value }}</el-option
|
|
|
- >
|
|
|
+ >{{ item.spec_value }}</el-option>
|
|
|
</el-select>
|
|
|
</div>
|
|
|
- <div class="no-data" v-else>暂无规格值,请添加!</div>
|
|
|
+ <div v-else class="no-data">暂无规格值,请添加!</div>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
</el-col>
|
|
|
<el-col :span="24" style="text-align: right">
|
|
|
<el-input
|
|
|
- style="width: 209px"
|
|
|
v-model="sinput"
|
|
|
+ style="width: 209px"
|
|
|
class="fl"
|
|
|
:disabled="id == 'edit'"
|
|
|
:size="'small'"
|
|
@@ -73,18 +72,17 @@
|
|
|
style="margin: 0 0 0 10px"
|
|
|
icon="el-icon-plus"
|
|
|
:size="'small'"
|
|
|
- @click="add_spec"
|
|
|
class="fl"
|
|
|
- >新增规格值</el-button
|
|
|
- >
|
|
|
+ @click="add_spec"
|
|
|
+ >新增规格值</el-button>
|
|
|
<el-button
|
|
|
v-if="id !== 'edit'"
|
|
|
:size="'small'"
|
|
|
type="primary"
|
|
|
@click="submitForm"
|
|
|
- >保 存
|
|
|
+ >保 存
|
|
|
</el-button>
|
|
|
- <el-button @click="showModelThis = false" :size="'small'">{{
|
|
|
+ <el-button :size="'small'" @click="showModelThis = false">{{
|
|
|
id == "edit" ? "关 闭" : "取 消"
|
|
|
}}</el-button>
|
|
|
</el-col>
|
|
@@ -93,70 +91,69 @@
|
|
|
</el-dialog>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import asyncRequest from "@/apis/service/goodStore/goodsCost";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
+import asyncRequest from '@/apis/service/goodStore/goodsCost'
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
export default {
|
|
|
- name: "brand",
|
|
|
- props: ["showModel", "index", "sitem"],
|
|
|
+ name: 'Brand',
|
|
|
mixins: [resToken],
|
|
|
+ props: ['showModel', 'index', 'sitem'],
|
|
|
data() {
|
|
|
return {
|
|
|
loading: false,
|
|
|
- title: "商品规格",
|
|
|
- sinput: "",
|
|
|
+ title: '商品规格',
|
|
|
+ sinput: '',
|
|
|
showModelThis: this.showModel,
|
|
|
specVlist: [],
|
|
|
ruleForm: {},
|
|
|
rulesThis: this.rules,
|
|
|
-
|
|
|
rules: {
|
|
|
spec_id: [
|
|
|
{
|
|
|
required: true,
|
|
|
- message: "规格类型不能为空",
|
|
|
- trigger: "change",
|
|
|
- },
|
|
|
+ message: '规格类型不能为空',
|
|
|
+ trigger: 'change'
|
|
|
+ }
|
|
|
],
|
|
|
- spec_value_id: [{ required: true, message: "请选择规格值", trigger: "change" }],
|
|
|
- },
|
|
|
- };
|
|
|
+ spec_value_id: [{ required: true, message: '请选择规格值', trigger: 'change' }]
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
- showModel: function (val) {
|
|
|
- this.showModelThis = val;
|
|
|
+ showModel: function(val) {
|
|
|
+ this.showModelThis = val
|
|
|
if (val) {
|
|
|
- this.initForm();
|
|
|
+ this.initForm()
|
|
|
}
|
|
|
},
|
|
|
showModelThis(val) {
|
|
|
if (!val) {
|
|
|
- this.$emit("cancel");
|
|
|
+ this.$emit('cancel')
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
methods: {
|
|
|
async initForm() {
|
|
|
- this.loading = true;
|
|
|
- this.sinput = "";
|
|
|
- this.resetFormData();
|
|
|
- this.rulesThis = this.rules;
|
|
|
- if (this.index + "" === "-1") {
|
|
|
- this.title = "添加商品规格值";
|
|
|
+ this.loading = true
|
|
|
+ this.sinput = ''
|
|
|
+ this.resetFormData()
|
|
|
+ this.rulesThis = this.rules
|
|
|
+ if (this.index + '' === '-1') {
|
|
|
+ this.title = '添加商品规格值'
|
|
|
} else {
|
|
|
- this.title = "修改商品规格值";
|
|
|
+ this.title = '修改商品规格值'
|
|
|
}
|
|
|
- await this.resetForm();
|
|
|
- this.loading = false;
|
|
|
+ await this.resetForm()
|
|
|
+ this.loading = false
|
|
|
},
|
|
|
async resetForm() {
|
|
|
// 重置
|
|
|
await this.$nextTick(() => {
|
|
|
if (this.$refs.ruleForm) {
|
|
|
- this.$refs.ruleForm.resetFields();
|
|
|
- this.$refs.ruleForm.clearValidate();
|
|
|
- this.resetFormData();
|
|
|
+ this.$refs.ruleForm.resetFields()
|
|
|
+ this.$refs.ruleForm.clearValidate()
|
|
|
+ this.resetFormData()
|
|
|
}
|
|
|
- });
|
|
|
+ })
|
|
|
},
|
|
|
async resetFormData() {
|
|
|
const {
|
|
@@ -165,92 +162,92 @@ export default {
|
|
|
spec_value,
|
|
|
spec_value_id,
|
|
|
spec_value_value,
|
|
|
- isMust,
|
|
|
- } = this.sitem;
|
|
|
+ isMust
|
|
|
+ } = this.sitem
|
|
|
this.ruleForm = {
|
|
|
index: this.index,
|
|
|
- id: id || "",
|
|
|
- spec_id: spec_id || "",
|
|
|
- spec_value: spec_value || "",
|
|
|
+ id: id || '',
|
|
|
+ spec_id: spec_id || '',
|
|
|
+ spec_value: spec_value || '',
|
|
|
isMust: isMust || false,
|
|
|
- spec_value_id: spec_value_id || "",
|
|
|
- spec_value_value: spec_value_value || "",
|
|
|
- };
|
|
|
+ spec_value_id: spec_value_id || '',
|
|
|
+ spec_value_value: spec_value_value || ''
|
|
|
+ }
|
|
|
if (spec_id) {
|
|
|
- await this.getlist();
|
|
|
+ await this.getlist()
|
|
|
}
|
|
|
},
|
|
|
async add_spec() {
|
|
|
- const { spec_id } = this.ruleForm;
|
|
|
+ const { spec_id } = this.ruleForm
|
|
|
if (spec_id) {
|
|
|
if (this.sinput) {
|
|
|
const { code, data, message } = await asyncRequest.valueadd({
|
|
|
spec_id: spec_id,
|
|
|
- spec_value: this.sinput,
|
|
|
- });
|
|
|
+ spec_value: this.sinput
|
|
|
+ })
|
|
|
if (code === 0) {
|
|
|
- await this.getlist();
|
|
|
+ await this.getlist()
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(message);
|
|
|
+ this.$message.warning(message)
|
|
|
}
|
|
|
} else {
|
|
|
- this.$message.warning("请输入规格值!");
|
|
|
+ this.$message.warning('请输入规格值!')
|
|
|
}
|
|
|
} else {
|
|
|
- this.$message.warning("请选择规格类型!");
|
|
|
+ this.$message.warning('请选择规格类型!')
|
|
|
}
|
|
|
},
|
|
|
async spec_idsearchChange(e) {
|
|
|
- const { id, spec_name } = e;
|
|
|
- this.ruleForm.spec_id = id || "";
|
|
|
- this.ruleForm.spec_value = spec_name || "";
|
|
|
- this.$refs.ruleForm.validateField("spec_id");
|
|
|
- await this.getlist();
|
|
|
+ const { id, spec_name } = e
|
|
|
+ this.ruleForm.spec_id = id || ''
|
|
|
+ this.ruleForm.spec_value = spec_name || ''
|
|
|
+ this.$refs.ruleForm.validateField('spec_id')
|
|
|
+ await this.getlist()
|
|
|
},
|
|
|
spec_value_id_change(e) {
|
|
|
if (e) {
|
|
|
- const { id, spec_value } = this.specVlist.find((i) => i.id === e);
|
|
|
- this.ruleForm.spec_value_id = id || "";
|
|
|
- this.ruleForm.spec_value_value = spec_value || "";
|
|
|
+ const { id, spec_value } = this.specVlist.find((i) => i.id === e)
|
|
|
+ this.ruleForm.spec_value_id = id || ''
|
|
|
+ this.ruleForm.spec_value_value = spec_value || ''
|
|
|
} else {
|
|
|
- this.ruleForm.spec_value_id = "";
|
|
|
- this.ruleForm.spec_value_value = "";
|
|
|
+ this.ruleForm.spec_value_id = ''
|
|
|
+ this.ruleForm.spec_value_value = ''
|
|
|
}
|
|
|
- this.$refs.ruleForm.validateField("spec_value_id");
|
|
|
+ this.$refs.ruleForm.validateField('spec_value_id')
|
|
|
},
|
|
|
async getlist() {
|
|
|
- const { spec_id } = this.ruleForm;
|
|
|
+ const { spec_id } = this.ruleForm
|
|
|
if (spec_id) {
|
|
|
const { code, data, message } = await asyncRequest.valueall({
|
|
|
- spec_id: spec_id,
|
|
|
- });
|
|
|
+ spec_id: spec_id
|
|
|
+ })
|
|
|
if (code === 0) {
|
|
|
- this.specVlist = data;
|
|
|
+ this.specVlist = data
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(message);
|
|
|
+ this.$message.warning(message)
|
|
|
}
|
|
|
} else {
|
|
|
- this.specVlist = [];
|
|
|
+ this.specVlist = []
|
|
|
}
|
|
|
},
|
|
|
|
|
|
async submitForm() {
|
|
|
- await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
+ await this.$refs.ruleForm.validate(async(valid) => {
|
|
|
if (valid) {
|
|
|
- this.showModelThis = false;
|
|
|
- this.$emit("refresh", this.ruleForm);
|
|
|
+ this.showModelThis = false
|
|
|
+ this.$emit('refresh', this.ruleForm)
|
|
|
} else {
|
|
|
- console.log("error submit!!");
|
|
|
- return false;
|
|
|
+ console.log('error submit!!')
|
|
|
+ return false
|
|
|
}
|
|
|
- });
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|