|
@@ -26,18 +26,20 @@
|
|
|
label-width="90px"
|
|
|
class="demo-ruleForm"
|
|
|
>
|
|
|
- <el-form-item label="供应商" prop="gyscode">
|
|
|
- <el-input
|
|
|
- v-model="ruleForm.gyscode"
|
|
|
- disabled
|
|
|
- placeholder="支持品牌来源"
|
|
|
- minlength="20"
|
|
|
+ <el-form-item label="供应商" v-if="gys_name" prop="gyscode">
|
|
|
+ <search-supplier
|
|
|
+ :disabled="true"
|
|
|
+ :value="ruleForm.gyscode"
|
|
|
+ :placeholder="'供应商'"
|
|
|
+ :isDetail="true"
|
|
|
+ :names="gys_name"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="支持品牌" prop="brand_id">
|
|
|
<search-brand
|
|
|
:value="ruleForm.brand_id"
|
|
|
:size="'mini'"
|
|
|
+ :disabled="type === 'view'"
|
|
|
:isDetail="type !== 'add'"
|
|
|
:names="brand_name"
|
|
|
:placeholder="'商品品牌'"
|
|
@@ -45,19 +47,30 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item label="授权类型" prop="long">
|
|
|
- <el-radio-group v-model="ruleForm.long">
|
|
|
+ <el-radio-group
|
|
|
+ :disabled="type === 'view'"
|
|
|
+ v-model="ruleForm.long"
|
|
|
+ >
|
|
|
<el-radio :label="'0'">长期</el-radio>
|
|
|
<el-radio :label="'1'">非长期</el-radio>
|
|
|
</el-radio-group>
|
|
|
</el-form-item>
|
|
|
- <el-form-item label="授权时间" style="margin: 0">
|
|
|
+ <el-form-item
|
|
|
+ v-if="ruleForm.long === '1'"
|
|
|
+ label="授权时间"
|
|
|
+ style="margin: 0"
|
|
|
+ >
|
|
|
<el-col :span="11">
|
|
|
<el-form-item prop="starttime">
|
|
|
<el-date-picker
|
|
|
type="date"
|
|
|
+ :disabled="type === 'view'"
|
|
|
placeholder="开始日期"
|
|
|
v-model="ruleForm.starttime"
|
|
|
+ :picker-options="pickerOptions1"
|
|
|
style="width: 100%"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
+ @change="timeChange"
|
|
|
></el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -66,9 +79,13 @@
|
|
|
<el-form-item prop="endtime">
|
|
|
<el-date-picker
|
|
|
type="date"
|
|
|
+ :disabled="type === 'view'"
|
|
|
placeholder="结束日期"
|
|
|
+ value-format="yyyy-MM-dd"
|
|
|
v-model="ruleForm.endtime"
|
|
|
+ :picker-options="pickerOptions2"
|
|
|
style="width: 100%"
|
|
|
+ @change="timeChange"
|
|
|
></el-date-picker>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
@@ -89,7 +106,7 @@
|
|
|
<i v-else class="el-icon-plus avatar-uploader-icon"></i>
|
|
|
<file-upload
|
|
|
class="Upload"
|
|
|
- :disabled="id == '007'"
|
|
|
+ :disabled="type === 'view'"
|
|
|
:accept="'.jpg,.png,.jpeg'"
|
|
|
:multiple="true"
|
|
|
:uploadcondition="beforeAvatarUpload"
|
|
@@ -101,14 +118,14 @@
|
|
|
</el-col>
|
|
|
<el-col :span="7" style="text-align: right; padding: 72px 0 0 0">
|
|
|
<el-button
|
|
|
- v-if="id !== '007'"
|
|
|
+ v-if="type !== 'view'"
|
|
|
:size="'small'"
|
|
|
type="primary"
|
|
|
@click="submitForm"
|
|
|
>保 存
|
|
|
</el-button>
|
|
|
<el-button @click="showModelThis = false" :size="'small'">{{
|
|
|
- id == "007" ? "关 闭" : "取 消"
|
|
|
+ type === "view" ? "关 闭" : "取 消"
|
|
|
}}</el-button>
|
|
|
</el-col>
|
|
|
</el-form>
|
|
@@ -122,18 +139,39 @@ import asyncRequest from "@/apis/service/serviceParam/supplier";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
export default {
|
|
|
name: "brand",
|
|
|
- props: ["showModel", "id", "sitem"],
|
|
|
+ props: ["showModel", "id", "type", "sitem"],
|
|
|
mixins: [resToken],
|
|
|
data() {
|
|
|
return {
|
|
|
loading: false,
|
|
|
title: "添加支持品牌",
|
|
|
showModelThis: this.showModel,
|
|
|
- select: "1",
|
|
|
- activeOptions: [],
|
|
|
- actionList: [],
|
|
|
+ brand_name: "",
|
|
|
+ gys_name: "",
|
|
|
ruleForm: {},
|
|
|
rulesThis: this.rules,
|
|
|
+ pickerOptions1: {
|
|
|
+ disabledDate: (time) => {
|
|
|
+ if (
|
|
|
+ this.ruleForm.endtime != null &&
|
|
|
+ this.ruleForm.endtime != "" &&
|
|
|
+ time
|
|
|
+ ) {
|
|
|
+ return time.getTime() > new Date(this.ruleForm.endtime).valueOf();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
+ pickerOptions2: {
|
|
|
+ disabledDate: (time) => {
|
|
|
+ if (
|
|
|
+ this.ruleForm.starttime != null &&
|
|
|
+ this.ruleForm.starttime != "" &&
|
|
|
+ time
|
|
|
+ ) {
|
|
|
+ return time.getTime() < new Date(this.ruleForm.starttime).valueOf();
|
|
|
+ }
|
|
|
+ },
|
|
|
+ },
|
|
|
rules: {
|
|
|
gyscode: [
|
|
|
{
|
|
@@ -183,21 +221,25 @@ export default {
|
|
|
methods: {
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
|
+ this.brand_name = "";
|
|
|
+ this.gys_name = "";
|
|
|
this.resetFormData();
|
|
|
- if (this.id === "003") {
|
|
|
+ if (this.type === "add") {
|
|
|
this.rulesThis = this.rules;
|
|
|
this.title = "添加支持品牌";
|
|
|
await this.resetForm();
|
|
|
- } else if (this.id === "005") {
|
|
|
+ } else if (this.type === "edit") {
|
|
|
this.rulesThis = this.rules;
|
|
|
this.title = "修改支持品牌";
|
|
|
await this.resetForm();
|
|
|
+ await this.initData();
|
|
|
} else {
|
|
|
this.rulesThis = {};
|
|
|
this.title = "查看支持品牌";
|
|
|
await this.resetForm();
|
|
|
+ await this.initData();
|
|
|
}
|
|
|
-
|
|
|
+ console.log(this.brand_name, this.gys_name, this.ruleForm);
|
|
|
this.loading = false;
|
|
|
},
|
|
|
async resetForm() {
|
|
@@ -210,12 +252,42 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
+ timeChange() {
|
|
|
+ if (
|
|
|
+ this.ruleForm.starttime !== "" &&
|
|
|
+ this.ruleForm.starttime !== null &&
|
|
|
+ this.ruleForm.endtime !== "" &&
|
|
|
+ this.ruleForm.endtime !== null
|
|
|
+ ) {
|
|
|
+ if (
|
|
|
+ new Date(this.ruleForm.endtime).valueOf() <
|
|
|
+ new Date(this.ruleForm.starttime).valueOf()
|
|
|
+ ) {
|
|
|
+ this.$message.warning("结束时间不大于开始时间!");
|
|
|
+ this.ruleForm.endtime = "";
|
|
|
+ this.ruleForm.starttime = "";
|
|
|
+ this.$refs.ruleForm.validateField("starttime");
|
|
|
+ this.$refs.ruleForm.validateField("endtime");
|
|
|
+ } else {
|
|
|
+ this.$refs.ruleForm.validateField("starttime");
|
|
|
+ this.$refs.ruleForm.validateField("endtime");
|
|
|
+ }
|
|
|
+ } else {
|
|
|
+ this.$refs.ruleForm.validateField("starttime");
|
|
|
+ this.$refs.ruleForm.validateField("endtime");
|
|
|
+ }
|
|
|
+ },
|
|
|
resetFormData() {
|
|
|
+ const { code, name } = JSON.parse(JSON.stringify(this.sitem));
|
|
|
+ if (this.type === "add") {
|
|
|
+ this.gys_name = name || "";
|
|
|
+ }
|
|
|
+
|
|
|
this.ruleForm = {
|
|
|
id: "",
|
|
|
- gyscode: "",
|
|
|
+ gyscode: this.type === "add" && code ? [code] : [],
|
|
|
brand_id: [],
|
|
|
- long: "",
|
|
|
+ long: "1",
|
|
|
starttime: "",
|
|
|
endtime: "",
|
|
|
brand_book: "",
|
|
@@ -237,10 +309,13 @@ export default {
|
|
|
starttime,
|
|
|
endtime,
|
|
|
gyscode,
|
|
|
+ name,
|
|
|
} = data;
|
|
|
+ this.brand_name = brand_name;
|
|
|
+ this.gys_name = name;
|
|
|
this.ruleForm = {
|
|
|
id: id || "",
|
|
|
- gyscode: gyscode || "",
|
|
|
+ gyscode: gyscode ? [gyscode] : [],
|
|
|
brand_id: brand_id ? [brand_id] : [],
|
|
|
long: long || "",
|
|
|
starttime: starttime || "",
|
|
@@ -258,16 +333,19 @@ export default {
|
|
|
if (valid) {
|
|
|
this.loading = true;
|
|
|
let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
+ model.brand_id = model.brand_id.toString();
|
|
|
+ model.gyscode = model.gyscode.toString();
|
|
|
+
|
|
|
let res = {};
|
|
|
- if (this.id === "003") {
|
|
|
+ if (this.type === "add") {
|
|
|
delete model["id"];
|
|
|
- res = await asyncRequest.add(model);
|
|
|
+ res = await asyncRequest.kadd(model);
|
|
|
} else {
|
|
|
- res = await asyncRequest.update(model);
|
|
|
+ res = await asyncRequest.kupdate(model);
|
|
|
}
|
|
|
this.loading = false;
|
|
|
if (res && res.code === 0) {
|
|
|
- const title = this.id === "add" ? "添加成功!" : "修改成功!";
|
|
|
+ const title = this.type === "add" ? "添加成功!" : "修改成功!";
|
|
|
this.$notify.success({
|
|
|
title,
|
|
|
message: "",
|