|
@@ -12,7 +12,7 @@
|
|
|
>
|
|
|
<el-row>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="销售方" prop="anomalous_numbers">
|
|
|
+ <el-form-item label="销售方" prop="companyNo">
|
|
|
<search-work-company
|
|
|
:value="ruleForm.companyNo"
|
|
|
:placeholder="'销售方公司'"
|
|
@@ -24,7 +24,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="购买方公司" prop="anomalous_reason">
|
|
|
+ <el-form-item label="购买方公司" prop="khNo">
|
|
|
<search-customer
|
|
|
:value="ruleForm.khNo"
|
|
|
:names="ruleForm.customer_name"
|
|
@@ -37,7 +37,7 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
<el-col :span="8">
|
|
|
- <el-form-item label="所属平台" prop="expect_wish">
|
|
|
+ <el-form-item label="所属平台" prop="platform_code">
|
|
|
<search-terrace
|
|
|
:value="ruleForm.platform_code"
|
|
|
:disabled="type === 'view'"
|
|
@@ -80,18 +80,34 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
- <el-col :span="8">
|
|
|
- <el-form-item label="项目名称" prop="anomalous_remark">
|
|
|
- <el-input
|
|
|
- placeholder="项目名称"
|
|
|
- v-model="ruleForm.anomalous_remark"
|
|
|
- :disabled="id !== 'add'"
|
|
|
- maxlength="250"
|
|
|
- show-word-limit
|
|
|
- />
|
|
|
+ <el-col :span="16" v-if="ruleForm.is_project === '1'">
|
|
|
+ <el-form-item label="项目名称" prop="projectNo">
|
|
|
+ <el-select
|
|
|
+ v-model="ruleForm.projectNo"
|
|
|
+ multiple
|
|
|
+ filterable
|
|
|
+ remote
|
|
|
+ clearable
|
|
|
+ :multiple-limit="1"
|
|
|
+ reserve-keyword
|
|
|
+ style="width: 100%"
|
|
|
+ :placeholder="'项目名称'"
|
|
|
+ :remote-method="remoteMethod"
|
|
|
+ :loading="selectLoading"
|
|
|
+ @change="selectChange"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="(item, index) in poptions"
|
|
|
+ :key="item.id + index"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.code + ''"
|
|
|
+ :disabled="item.status !== '1'"
|
|
|
+ >
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
+ <el-col :span="8" v-if="ruleForm.is_project === '1'">
|
|
|
<el-form-item label="项目总预算" prop="anomalous_remark">
|
|
|
<el-input
|
|
|
placeholder="项目总预算"
|
|
@@ -100,7 +116,7 @@
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="8">
|
|
|
+ <el-col :span="24" v-if="ruleForm.is_project === '1'">
|
|
|
<el-form-item label="项目用途" prop="anomalous_remark">
|
|
|
<el-input
|
|
|
placeholder="项目用途"
|
|
@@ -111,8 +127,8 @@
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
|
|
|
- <el-col :span="24" style="text-align: right">
|
|
|
- <el-button type="primary" @click="submitForm" v-if="id === 'add'"
|
|
|
+ <el-col :span="24" style="text-align: right" v-if="id === 'add'">
|
|
|
+ <el-button type="primary" @click="submitForm" :size="'mini'"
|
|
|
>保 存</el-button
|
|
|
>
|
|
|
</el-col>
|
|
@@ -120,113 +136,87 @@
|
|
|
</el-form>
|
|
|
</template>
|
|
|
<script>
|
|
|
-import { isnumber } from "@/utils/validate.js";
|
|
|
import asyncRequest from "@/apis/service/sellOut/sellAfterApply";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
export default {
|
|
|
name: "handover",
|
|
|
- props: ["id", "sitem", "showModelThis", "newTime"],
|
|
|
+ props: ["id", "sitem", "newTime"],
|
|
|
mixins: [resToken],
|
|
|
data() {
|
|
|
- const validatenumbers = (rule, value, callback) => {
|
|
|
- if (value === "") {
|
|
|
- callback(new Error("异常数量不能为空!"));
|
|
|
- } else {
|
|
|
- if (!isnumber(value)) {
|
|
|
- callback(new Error("异常数量必须为数字"));
|
|
|
- } else {
|
|
|
- callback();
|
|
|
- }
|
|
|
- }
|
|
|
- };
|
|
|
return {
|
|
|
options: [
|
|
|
{ value: "0", label: "非项目" },
|
|
|
{ value: "1", label: "项目" },
|
|
|
],
|
|
|
+ poptions: [],
|
|
|
loading: false,
|
|
|
+ selectLoading: false,
|
|
|
pickerOptions: {
|
|
|
disabledDate(time) {
|
|
|
return time.getTime() < Date.now() - 60 * 60 * 24 * 1000;
|
|
|
},
|
|
|
},
|
|
|
status: "", //存储详情接口返的状态
|
|
|
- showModelThis: this.showModel,
|
|
|
- resign_name: "", //离职人
|
|
|
- hand_name: "", //交接人
|
|
|
ruleForm: {
|
|
|
- is_project: "1", //咨询类型 1销售2咨询,
|
|
|
- projectNo: "", //项目编号
|
|
|
- khNo: "", //客户编号
|
|
|
+ is_project: "0", //咨询类型 1非项目2项目,
|
|
|
+ projectNo: [], //项目编号
|
|
|
+ khNo: [], //客户编号
|
|
|
customer_name: "", //客户名称
|
|
|
+ companyNo: "",
|
|
|
endtime: "", //咨询截止时间
|
|
|
- platform_code: "", //平台id
|
|
|
-
|
|
|
- stock_out_numbers: "", //出库单编号
|
|
|
- anomalous_numbers: "", //异常数量
|
|
|
- anomalous_reason: "", //异常原因
|
|
|
- expect_wish: "", //期望意愿
|
|
|
- anomalous_images: [],
|
|
|
- anomalous_remark: "", //异常备注
|
|
|
+ platform_code: [], //平台id
|
|
|
},
|
|
|
rulesThis: this.rules,
|
|
|
// 验证规则
|
|
|
rules: {
|
|
|
- anomalous_numbers: [
|
|
|
+ companyNo: [
|
|
|
{
|
|
|
required: true,
|
|
|
- trigger: "blur",
|
|
|
- validator: validatenumbers,
|
|
|
+ message: "请选择销售方公司",
|
|
|
+ trigger: "change",
|
|
|
},
|
|
|
],
|
|
|
- anomalous_reason: [
|
|
|
+ khNo: [
|
|
|
{
|
|
|
+ type: "array",
|
|
|
required: true,
|
|
|
- message: "请选择异常原因",
|
|
|
+ message: "请选择购买方公司",
|
|
|
trigger: "change",
|
|
|
},
|
|
|
],
|
|
|
- expect_wish: [
|
|
|
+ platform_code: [
|
|
|
{
|
|
|
+ type: "array",
|
|
|
required: true,
|
|
|
- message: "请选择期望意愿",
|
|
|
+ message: "请选择所属平台",
|
|
|
trigger: "change",
|
|
|
},
|
|
|
],
|
|
|
- anomalous_images: [
|
|
|
+ endtime: [
|
|
|
+ {
|
|
|
+ required: true,
|
|
|
+ message: "咨询截止时间不能为空",
|
|
|
+ trigger: "change",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+
|
|
|
+ is_project: [
|
|
|
{
|
|
|
- type: "array",
|
|
|
required: true,
|
|
|
- message: "异常图片不能为空!",
|
|
|
+ message: "请选择咨询类型!",
|
|
|
trigger: "change",
|
|
|
},
|
|
|
],
|
|
|
- anomalous_remark: [
|
|
|
+
|
|
|
+ ladder: [
|
|
|
{
|
|
|
+ type: "array",
|
|
|
required: true,
|
|
|
- message: "请输入异常原因备注",
|
|
|
- trigger: "blur",
|
|
|
+ message: "至少添加两个商品要求",
|
|
|
+ trigger: "change",
|
|
|
},
|
|
|
],
|
|
|
},
|
|
|
- reason_options: [],
|
|
|
- reason_value: "", //异常原因
|
|
|
- expect_options: [
|
|
|
- {
|
|
|
- value: "1",
|
|
|
- label: "退货",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "2",
|
|
|
- label: "换货",
|
|
|
- },
|
|
|
- {
|
|
|
- value: "3",
|
|
|
- label: "接受差异改变售价",
|
|
|
- },
|
|
|
- ],
|
|
|
- expect_value: "", //期望意愿
|
|
|
- code: "",
|
|
|
};
|
|
|
},
|
|
|
computed: {
|
|
@@ -243,7 +233,6 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.getReason(); //获取异常原因
|
|
|
this.initForm();
|
|
|
},
|
|
|
watch: {
|
|
@@ -259,37 +248,6 @@ export default {
|
|
|
},
|
|
|
},
|
|
|
methods: {
|
|
|
- //平台选择
|
|
|
- platform_code_codesearchChange(e) {
|
|
|
- if (e) {
|
|
|
- const { id, code, label } = e;
|
|
|
- this.ruleForm.platform_code = id ? [id] : [];
|
|
|
- this.$refs.ruleForm.validateField("platform_code");
|
|
|
- }
|
|
|
- },
|
|
|
- //销售方公司选择
|
|
|
- company_idsearchChange(e) {
|
|
|
- if (e) {
|
|
|
- const { id, code, label } = e;
|
|
|
- this.ruleForm.companyNo = code || "";
|
|
|
- }
|
|
|
- this.$refs.ruleForm.validateField("companyNo");
|
|
|
- },
|
|
|
- //购买方公司选择
|
|
|
- customerChange(e) {
|
|
|
- if (e && e.id) {
|
|
|
- this.ruleForm.khNo = [e.code];
|
|
|
- this.ruleForm.customer_name = e.label;
|
|
|
- } else {
|
|
|
- this.ruleForm.khNo = [];
|
|
|
- this.ruleForm.customer_name = "";
|
|
|
- }
|
|
|
-
|
|
|
- this.$refs.ruleForm.validateField("khNo");
|
|
|
- },
|
|
|
- closeAdd() {
|
|
|
- this.showModelThis = false;
|
|
|
- },
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
|
this.status = "";
|
|
@@ -298,32 +256,6 @@ export default {
|
|
|
await this.resetForm();
|
|
|
this.loading = false;
|
|
|
},
|
|
|
- async initData() {
|
|
|
- if (this.sitem) {
|
|
|
- let { returnCode } = this.sitem;
|
|
|
- let model = {
|
|
|
- returnCode,
|
|
|
- };
|
|
|
- const res = await asyncRequest.detail(model);
|
|
|
- if (res && res.code === 0 && res.data) {
|
|
|
- let { error_num, error_img, error_remark, except_code, error_code } =
|
|
|
- res.data;
|
|
|
- console.log(res.data);
|
|
|
- this.ruleForm = {
|
|
|
- stock_out_numbers: "", //出库单编号
|
|
|
- anomalous_numbers: error_num, //异常数量
|
|
|
- anomalous_reason: error_code, //异常原因
|
|
|
- expect_wish: except_code, //期望意愿
|
|
|
- anomalous_images: [error_img],
|
|
|
- anomalous_remark: error_remark, //异常备注
|
|
|
- };
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.$message.warning(res.message);
|
|
|
- }
|
|
|
- }
|
|
|
- },
|
|
|
|
|
|
async resetForm() {
|
|
|
this.resign_name = "";
|
|
@@ -335,24 +267,24 @@ export default {
|
|
|
this.$refs.ruleForm.resetFields();
|
|
|
this.$refs.ruleForm.clearValidate();
|
|
|
let {
|
|
|
- outCode,
|
|
|
- error_num,
|
|
|
- error_img,
|
|
|
- error_remark,
|
|
|
- except_code,
|
|
|
- error_code,
|
|
|
+ is_project, //咨询类型 1销售2咨询,
|
|
|
+ projectNo, //项目编号
|
|
|
+ khNo, //客户编号
|
|
|
+ customer_name, //客户名称
|
|
|
+ companyNo,
|
|
|
+ endtime, //咨询截止时间
|
|
|
+ platform_code, //平台id
|
|
|
} = this.sitem;
|
|
|
|
|
|
- this.code = outCode;
|
|
|
this.ruleForm = {
|
|
|
- stock_out_numbers: "", //出库单编号
|
|
|
- anomalous_numbers: error_num, //异常数量
|
|
|
- anomalous_reason: error_code, //异常原因
|
|
|
- expect_wish: except_code, //期望意愿
|
|
|
- anomalous_images: [error_img],
|
|
|
- anomalous_remark: error_remark, //异常备注
|
|
|
+ is_project: is_project || "0", //咨询类型 1销售2咨询,
|
|
|
+ projectNo: projectNo ? [projectNo] : [], //项目编号
|
|
|
+ khNo: khNo ? [khNo] : [], //客户编号
|
|
|
+ customer_name: customer_name || "", //客户名称
|
|
|
+ companyNo: companyNo || "",
|
|
|
+ endtime: endtime || "", //咨询截止时间
|
|
|
+ platform_code: platform_code ? [platform_code] : [], //平台id
|
|
|
};
|
|
|
- // }
|
|
|
}
|
|
|
});
|
|
|
},
|
|
@@ -360,10 +292,7 @@ export default {
|
|
|
await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
if (valid) {
|
|
|
const { anomalous_numbers } = this.ruleForm;
|
|
|
- if (this.sitem.send_num < anomalous_numbers) {
|
|
|
- this.$message.warning("异常数量不能大于发货数量");
|
|
|
- return false;
|
|
|
- }
|
|
|
+
|
|
|
let model = JSON.parse(JSON.stringify(this.ruleForm));
|
|
|
|
|
|
// console.log("调接口");
|
|
@@ -398,152 +327,83 @@ export default {
|
|
|
}
|
|
|
});
|
|
|
},
|
|
|
- async statusConfirm(status, message) {
|
|
|
- await this.$confirm(`确定要${message}?`, {
|
|
|
- confirmButtonText: "确定",
|
|
|
- cancelButtonText: "取消",
|
|
|
- type: "warning",
|
|
|
- })
|
|
|
- .then(async () => {
|
|
|
- if (status === "-1") {
|
|
|
- await this.deleteById(message);
|
|
|
- } else {
|
|
|
- await this.setStatus(status, message);
|
|
|
- }
|
|
|
- })
|
|
|
- .catch(() => {
|
|
|
- console.log("取消");
|
|
|
- });
|
|
|
- },
|
|
|
-
|
|
|
- async deleteById(message) {
|
|
|
- const res = await asyncRequest.delete({ id: this.id });
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.$notify.success({
|
|
|
- title: message + "成功!",
|
|
|
- message: "",
|
|
|
- });
|
|
|
-
|
|
|
- this.routeGoto("handover", {});
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ selectChange(e) {},
|
|
|
+ async remoteMethod(query) {
|
|
|
+ this.selectLoading = true;
|
|
|
+ this.poptions = [];
|
|
|
+ const { platform_code, companyNo, khNo } = JSON.parse(
|
|
|
+ JSON.stringify(this.ruleForm)
|
|
|
+ );
|
|
|
+ if (!companyNo) {
|
|
|
+ this.$message.warning("请选择销售方公司!");
|
|
|
+ this.selectLoading = false;
|
|
|
+ return;
|
|
|
}
|
|
|
- },
|
|
|
-
|
|
|
- async setStatus(status, message) {
|
|
|
- let model = {
|
|
|
- id: this.id,
|
|
|
- remark: "",
|
|
|
- status: status,
|
|
|
- };
|
|
|
- const res = await asyncRequest.status(model);
|
|
|
- this.loading = false;
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.$notify.success({
|
|
|
- title: message + "成功!",
|
|
|
- message: "",
|
|
|
- });
|
|
|
- this.initForm();
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
- await this.logout();
|
|
|
- } else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ if (khNo.length === 0) {
|
|
|
+ this.$message.warning("请选择购买方公司!");
|
|
|
+ this.selectLoading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (platform_code.length === 0) {
|
|
|
+ this.$message.warning("请选择所属平台!");
|
|
|
+ this.selectLoading = false;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ if (!query) {
|
|
|
+ this.selectLoading = false;
|
|
|
+ return;
|
|
|
}
|
|
|
- },
|
|
|
|
|
|
- open() {
|
|
|
- this.show = true;
|
|
|
- },
|
|
|
- // 获取异常原因
|
|
|
- async getReason() {
|
|
|
- let model = {
|
|
|
- type: "2",
|
|
|
+ let formValue = {
|
|
|
page: 1,
|
|
|
size: 100,
|
|
|
+ khNo: khNo.toString(),
|
|
|
+ companyNo: companyNo,
|
|
|
+ platform_code: platform_code.toString(),
|
|
|
+ status: "1",
|
|
|
+ project_name: query,
|
|
|
};
|
|
|
- const res = await asyncRequest.reasonList(model);
|
|
|
- this.loading = false;
|
|
|
- if (res && res.code === 0) {
|
|
|
- this.reason_options = res.data.list;
|
|
|
- } else if (res && res.code >= 100 && res.code <= 104) {
|
|
|
+
|
|
|
+ const { code, data, message } = await asyncRequest.plist(formValue);
|
|
|
+ if (code === 0) {
|
|
|
+ const { list } = data;
|
|
|
+ this.poptions = list;
|
|
|
+ } else if (code >= 100 && code <= 104) {
|
|
|
await this.logout();
|
|
|
} else {
|
|
|
- this.$message.warning(res.message);
|
|
|
+ this.$message.warning(message);
|
|
|
+ this.poptions = [];
|
|
|
}
|
|
|
+
|
|
|
+ this.selectLoading = false;
|
|
|
},
|
|
|
- // 异常原因
|
|
|
- handleAnomalousReason(e) {
|
|
|
- console.log(e);
|
|
|
+ //平台选择
|
|
|
+ platform_code_codesearchChange(e) {
|
|
|
if (e) {
|
|
|
- this.ruleForm.anomalous_reason = e;
|
|
|
- } else {
|
|
|
- this.ruleForm.anomalous_reason = "";
|
|
|
+ const { id, code, label } = e;
|
|
|
+ this.ruleForm.platform_code = id ? [id] : [];
|
|
|
+ this.$refs.ruleForm.validateField("platform_code");
|
|
|
}
|
|
|
- this.$refs.ruleForm.validateField("company_img");
|
|
|
},
|
|
|
- //图片上传失败
|
|
|
- UploadErrorEvent(res) {
|
|
|
- if (res !== "break") {
|
|
|
- this.$message.error("图片上传失败!");
|
|
|
- this.$refs.ruleForm.validateField("anomalous_images");
|
|
|
+ //销售方公司选择
|
|
|
+ company_idsearchChange(e) {
|
|
|
+ if (e) {
|
|
|
+ const { id, code, label } = e;
|
|
|
+ this.ruleForm.companyNo = code || "";
|
|
|
}
|
|
|
+ this.$refs.ruleForm.validateField("companyNo");
|
|
|
},
|
|
|
- //图片上传成功
|
|
|
- async UploadSuccessEvent(data) {
|
|
|
- const { url } = data;
|
|
|
- if (url === "noToken") {
|
|
|
- await this.logout();
|
|
|
+ //购买方公司选择
|
|
|
+ customerChange(e) {
|
|
|
+ if (e && e.id) {
|
|
|
+ this.ruleForm.khNo = [e.code];
|
|
|
+ this.ruleForm.customer_name = e.label;
|
|
|
} else {
|
|
|
- this.ruleForm.anomalous_images.push(url);
|
|
|
- this.$message.success("图片上传成功!");
|
|
|
- this.$refs.ruleForm.validateField("anomalous_images");
|
|
|
- }
|
|
|
- },
|
|
|
-
|
|
|
- //判断图片规格
|
|
|
- beforeAvatarUpload(file) {
|
|
|
- let isJPG = false,
|
|
|
- isLt2M = false;
|
|
|
- if (file) {
|
|
|
- if (
|
|
|
- file.type === "image/jpg" ||
|
|
|
- file.type === "image/png" ||
|
|
|
- file.type === "image/jpeg"
|
|
|
- ) {
|
|
|
- isJPG = true;
|
|
|
- }
|
|
|
- isLt2M = file.size / 1024 / 1024 < 1;
|
|
|
- if (!isJPG) {
|
|
|
- this.$message.error("图片格式不正确!");
|
|
|
- }
|
|
|
- if (!isLt2M) {
|
|
|
- this.$message.error("图片大小不能超过 1MB!");
|
|
|
- }
|
|
|
+ this.ruleForm.khNo = [];
|
|
|
+ this.ruleForm.customer_name = "";
|
|
|
}
|
|
|
|
|
|
- return isJPG && isLt2M;
|
|
|
- },
|
|
|
- imgClose(index) {
|
|
|
- this.ruleForm.anomalous_images.splice(index, 1);
|
|
|
- this.$refs.ruleForm.validateField("anomalous_images");
|
|
|
- },
|
|
|
- getMargin() {
|
|
|
- if (this.ruleForm.anomalous_images.length == 0) {
|
|
|
- return "margin:0;";
|
|
|
- } else if (this.ruleForm.anomalous_images.length < 3) {
|
|
|
- return "margin:0px 0 0 10px";
|
|
|
- } else {
|
|
|
- return "margin:10px 0 0 10px";
|
|
|
- }
|
|
|
- },
|
|
|
- getMargin_li() {
|
|
|
- if (this.ruleForm.anomalous_images.length <= 3) {
|
|
|
- return "margin:0 0 0 10px";
|
|
|
- } else {
|
|
|
- return "margin:10px 0 0 10px";
|
|
|
- }
|
|
|
+ this.$refs.ruleForm.validateField("khNo");
|
|
|
},
|
|
|
},
|
|
|
};
|