|
@@ -1,26 +1,26 @@
|
|
<template>
|
|
<template>
|
|
<el-dialog
|
|
<el-dialog
|
|
|
|
+ v-loading="loading"
|
|
:title="title"
|
|
:title="title"
|
|
:center="true"
|
|
:center="true"
|
|
align="left"
|
|
align="left"
|
|
top="12vh"
|
|
top="12vh"
|
|
width="700px"
|
|
width="700px"
|
|
- @close="showModelThis = false"
|
|
|
|
:close-on-click-modal="false"
|
|
:close-on-click-modal="false"
|
|
:visible.sync="showModelThis"
|
|
:visible.sync="showModelThis"
|
|
- v-loading="loading"
|
|
|
|
element-loading-text="拼命加载中"
|
|
element-loading-text="拼命加载中"
|
|
element-loading-spinner="el-icon-loading"
|
|
element-loading-spinner="el-icon-loading"
|
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
element-loading-background="rgba(0, 0, 0, 0.8)"
|
|
|
|
+ @close="showModelThis = false"
|
|
>
|
|
>
|
|
<el-card style="margin: -20px 0 0 0">
|
|
<el-card style="margin: -20px 0 0 0">
|
|
<el-row :gutter="10">
|
|
<el-row :gutter="10">
|
|
<el-col :span="24">
|
|
<el-col :span="24">
|
|
<el-form
|
|
<el-form
|
|
|
|
+ ref="ruleForm"
|
|
:model="ruleForm"
|
|
:model="ruleForm"
|
|
status-icon
|
|
status-icon
|
|
:rules="rulesThis"
|
|
:rules="rulesThis"
|
|
- ref="ruleForm"
|
|
|
|
label-width="80px"
|
|
label-width="80px"
|
|
class="demo-ruleForm"
|
|
class="demo-ruleForm"
|
|
>
|
|
>
|
|
@@ -36,8 +36,7 @@
|
|
:key="item.id"
|
|
:key="item.id"
|
|
:label="item.label"
|
|
:label="item.label"
|
|
:value="item.id"
|
|
:value="item.id"
|
|
- >
|
|
|
|
- </el-option>
|
|
|
|
|
|
+ />
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
<el-form-item label="原因标题" prop="result">
|
|
<el-form-item label="原因标题" prop="result">
|
|
@@ -47,25 +46,28 @@
|
|
placeholder="原因标题"
|
|
placeholder="原因标题"
|
|
maxlength="50"
|
|
maxlength="50"
|
|
show-word-limit
|
|
show-word-limit
|
|
- ></el-input>
|
|
|
|
|
|
+ />
|
|
</el-form-item>
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="原因备注" prop="result_desc">
|
|
<el-form-item label="原因备注" prop="result_desc">
|
|
<el-input
|
|
<el-input
|
|
|
|
+ v-model="ruleForm.result_desc"
|
|
:autosize="{ minRows: 4, maxRows: 10 }"
|
|
:autosize="{ minRows: 4, maxRows: 10 }"
|
|
type="textarea"
|
|
type="textarea"
|
|
placeholder="原因备注"
|
|
placeholder="原因备注"
|
|
maxlength="250"
|
|
maxlength="250"
|
|
show-word-limit
|
|
show-word-limit
|
|
- v-model="ruleForm.result_desc"
|
|
|
|
:disabled="isDetail"
|
|
:disabled="isDetail"
|
|
- ></el-input>
|
|
|
|
|
|
+ />
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-form>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="24" style="text-align: right">
|
|
<el-col :span="24" style="text-align: right">
|
|
- <el-button type="primary" @click="submitForm" v-if="!isDetail"
|
|
|
|
- >保 存
|
|
|
|
|
|
+ <el-button
|
|
|
|
+ v-if="!isDetail"
|
|
|
|
+ type="primary"
|
|
|
|
+ @click="submitForm"
|
|
|
|
+ >保 存
|
|
</el-button>
|
|
</el-button>
|
|
<el-button @click="showModelThis = false">{{
|
|
<el-button @click="showModelThis = false">{{
|
|
isDetail ? "关 闭" : "取 消"
|
|
isDetail ? "关 闭" : "取 消"
|
|
@@ -75,175 +77,176 @@
|
|
</el-card>
|
|
</el-card>
|
|
</el-dialog>
|
|
</el-dialog>
|
|
</template>
|
|
</template>
|
|
- <script>
|
|
|
|
-import asyncRequest from "@/apis/service/serviceParam/unusualReason";
|
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
|
|
|
+<script>
|
|
|
|
+import asyncRequest from '@/apis/service/serviceParam/unusualReason'
|
|
|
|
+import resToken from '@/mixins/resToken'
|
|
export default {
|
|
export default {
|
|
- name: "unusualReason",
|
|
|
|
- props: ["showModel", "id", "isDetail", "sitem"],
|
|
|
|
|
|
+ name: 'UnusualReason',
|
|
mixins: [resToken],
|
|
mixins: [resToken],
|
|
|
|
+ props: ['showModel', 'id', 'isDetail', 'sitem'],
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
loading: false,
|
|
loading: false,
|
|
- title: "",
|
|
|
|
|
|
+ title: '',
|
|
showModelThis: this.showModel,
|
|
showModelThis: this.showModel,
|
|
ruleForm: {
|
|
ruleForm: {
|
|
- type: "1",
|
|
|
|
- result: "", //入库验收异常原因
|
|
|
|
- result_desc: "", //入库异常备注
|
|
|
|
|
|
+ type: '1',
|
|
|
|
+ result: '', // 入库验收异常原因
|
|
|
|
+ result_desc: '' // 入库异常备注
|
|
},
|
|
},
|
|
rulesThis: this.rules,
|
|
rulesThis: this.rules,
|
|
options: [
|
|
options: [
|
|
- { id: "1", label: "入库验收异常" },
|
|
|
|
- { id: "2", label: "退货验收异常" },
|
|
|
|
- { id: "3", label: "售后已收到货异常" },
|
|
|
|
- { id: "4", label: "采购退货" },
|
|
|
|
- { id: "5", label: "销售退换货" },
|
|
|
|
- { id: "6", label: "售后未收到货异常" },
|
|
|
|
- { id: "7", label: "议价申请原因" },
|
|
|
|
- { id: "8", label: "商品下线原因" },
|
|
|
|
|
|
+ { id: '1', label: '入库验收异常' },
|
|
|
|
+ { id: '2', label: '退货验收异常' },
|
|
|
|
+ { id: '3', label: '售后已收到货异常' },
|
|
|
|
+ { id: '4', label: '采购退货' },
|
|
|
|
+ { id: '5', label: '销售退换货' },
|
|
|
|
+ { id: '6', label: '售后未收到货异常' },
|
|
|
|
+ { id: '7', label: '议价申请原因' },
|
|
|
|
+ { id: '8', label: '商品下线原因' }
|
|
],
|
|
],
|
|
|
|
|
|
rules: {
|
|
rules: {
|
|
type: [
|
|
type: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- trigger: "change",
|
|
|
|
- message: "请选择原因类型",
|
|
|
|
- },
|
|
|
|
|
|
+ trigger: 'change',
|
|
|
|
+ message: '请选择原因类型'
|
|
|
|
+ }
|
|
],
|
|
],
|
|
result: [
|
|
result: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- trigger: "blur",
|
|
|
|
- message: "入库异常原因不能为空",
|
|
|
|
- },
|
|
|
|
|
|
+ trigger: 'blur',
|
|
|
|
+ message: '入库异常原因不能为空'
|
|
|
|
+ }
|
|
],
|
|
],
|
|
|
|
|
|
result_desc: [
|
|
result_desc: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
- trigger: "blur",
|
|
|
|
- message: "入库异常备注不能为空",
|
|
|
|
- },
|
|
|
|
- ],
|
|
|
|
- },
|
|
|
|
- };
|
|
|
|
|
|
+ trigger: 'blur',
|
|
|
|
+ message: '入库异常备注不能为空'
|
|
|
|
+ }
|
|
|
|
+ ]
|
|
|
|
+ }
|
|
|
|
+ }
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|
|
- showModel: function (val) {
|
|
|
|
- this.showModelThis = val;
|
|
|
|
|
|
+ showModel: function(val) {
|
|
|
|
+ this.showModelThis = val
|
|
if (val) {
|
|
if (val) {
|
|
- this.initForm();
|
|
|
|
|
|
+ this.initForm()
|
|
}
|
|
}
|
|
},
|
|
},
|
|
showModelThis(val) {
|
|
showModelThis(val) {
|
|
if (!val) {
|
|
if (!val) {
|
|
- this.$emit("cancel");
|
|
|
|
|
|
+ this.$emit('cancel')
|
|
}
|
|
}
|
|
- },
|
|
|
|
|
|
+ }
|
|
},
|
|
},
|
|
methods: {
|
|
methods: {
|
|
async initForm() {
|
|
async initForm() {
|
|
- this.loading = true;
|
|
|
|
- if (this.id === "add") {
|
|
|
|
- this.title = "添加异常原因";
|
|
|
|
- this.rulesThis = this.rules;
|
|
|
|
- await this.resetForm();
|
|
|
|
|
|
+ this.loading = true
|
|
|
|
+ if (this.id === 'add') {
|
|
|
|
+ this.title = '添加异常原因'
|
|
|
|
+ this.rulesThis = this.rules
|
|
|
|
+ await this.resetForm()
|
|
} else {
|
|
} else {
|
|
if (this.isDetail) {
|
|
if (this.isDetail) {
|
|
- this.title = "异常原因详情";
|
|
|
|
- this.rulesThis = {};
|
|
|
|
|
|
+ this.title = '异常原因详情'
|
|
|
|
+ this.rulesThis = {}
|
|
} else {
|
|
} else {
|
|
- this.title = "修改异常原因";
|
|
|
|
- this.rulesThis = this.rules;
|
|
|
|
|
|
+ this.title = '修改异常原因'
|
|
|
|
+ this.rulesThis = this.rules
|
|
}
|
|
}
|
|
|
|
|
|
- await this.resetForm();
|
|
|
|
- await this.initData();
|
|
|
|
|
|
+ await this.resetForm()
|
|
|
|
+ await this.initData()
|
|
}
|
|
}
|
|
- this.loading = false;
|
|
|
|
|
|
+ this.loading = false
|
|
},
|
|
},
|
|
// 获取详情列表
|
|
// 获取详情列表
|
|
async initData() {
|
|
async initData() {
|
|
- const res = await asyncRequest.detail({ id: this.id });
|
|
|
|
|
|
+ const res = await asyncRequest.detail({ id: this.id })
|
|
if (res && res.code === 0 && res.data) {
|
|
if (res && res.code === 0 && res.data) {
|
|
- this.ruleForm = res.data;
|
|
|
|
|
|
+ this.ruleForm = res.data
|
|
|
|
+ this.ruleForm.type = String(this.ruleForm.type)
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
- await this.logout();
|
|
|
|
|
|
+ await this.logout()
|
|
} else {
|
|
} else {
|
|
- this.$message.warning(res.message);
|
|
|
|
|
|
+ this.$message.warning(res.message)
|
|
}
|
|
}
|
|
},
|
|
},
|
|
async resetForm() {
|
|
async resetForm() {
|
|
// 重置
|
|
// 重置
|
|
await this.$nextTick(() => {
|
|
await this.$nextTick(() => {
|
|
if (this.$refs.ruleForm) {
|
|
if (this.$refs.ruleForm) {
|
|
- this.$refs.ruleForm.resetFields();
|
|
|
|
- this.$refs.ruleForm.clearValidate();
|
|
|
|
|
|
+ this.$refs.ruleForm.resetFields()
|
|
|
|
+ this.$refs.ruleForm.clearValidate()
|
|
this.ruleForm = {
|
|
this.ruleForm = {
|
|
- result: "", //入库验收异常原因
|
|
|
|
- result_desc: "", //入库异常备注
|
|
|
|
- type: "1",
|
|
|
|
- };
|
|
|
|
|
|
+ result: '', // 入库验收异常原因
|
|
|
|
+ result_desc: '', // 入库异常备注
|
|
|
|
+ type: '1'
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- });
|
|
|
|
|
|
+ })
|
|
},
|
|
},
|
|
|
|
|
|
// 提交功能
|
|
// 提交功能
|
|
async submitForm() {
|
|
async submitForm() {
|
|
- await this.$refs.ruleForm.validate(async (valid) => {
|
|
|
|
- console.log(valid);
|
|
|
|
|
|
+ await this.$refs.ruleForm.validate(async(valid) => {
|
|
|
|
+ console.log(valid)
|
|
if (valid) {
|
|
if (valid) {
|
|
if (this.loading) {
|
|
if (this.loading) {
|
|
- return;
|
|
|
|
|
|
+ return
|
|
}
|
|
}
|
|
- this.loading = true;
|
|
|
|
|
|
+ this.loading = true
|
|
const { result, result_desc, type } = JSON.parse(
|
|
const { result, result_desc, type } = JSON.parse(
|
|
JSON.stringify(this.ruleForm)
|
|
JSON.stringify(this.ruleForm)
|
|
- );
|
|
|
|
|
|
+ )
|
|
const model = {
|
|
const model = {
|
|
- result: result || "", //入库验收异常原因
|
|
|
|
- result_desc: result_desc || "", //入库异常备注
|
|
|
|
- type: type || "1",
|
|
|
|
- id: this.id,
|
|
|
|
- };
|
|
|
|
- let res = {};
|
|
|
|
- if (this.id === "add") {
|
|
|
|
- delete model["id"];
|
|
|
|
- res = await asyncRequest.add(model);
|
|
|
|
|
|
+ result: result || '', // 入库验收异常原因
|
|
|
|
+ result_desc: result_desc || '', // 入库异常备注
|
|
|
|
+ type: type || '1',
|
|
|
|
+ id: this.id
|
|
|
|
+ }
|
|
|
|
+ let res = {}
|
|
|
|
+ if (this.id === 'add') {
|
|
|
|
+ delete model['id']
|
|
|
|
+ res = await asyncRequest.add(model)
|
|
} else {
|
|
} else {
|
|
- delete model["type"];
|
|
|
|
- res = await asyncRequest.update(model);
|
|
|
|
- console.log(res);
|
|
|
|
|
|
+ delete model['type']
|
|
|
|
+ res = await asyncRequest.update(model)
|
|
|
|
+ console.log(res)
|
|
}
|
|
}
|
|
- this.loading = false;
|
|
|
|
|
|
+ this.loading = false
|
|
if (res && res.code === 0) {
|
|
if (res && res.code === 0) {
|
|
- const title = this.id === "add" ? "添加成功" : "修改成功";
|
|
|
|
|
|
+ const title = this.id === 'add' ? '添加成功' : '修改成功'
|
|
this.$notify.success({
|
|
this.$notify.success({
|
|
title,
|
|
title,
|
|
- message: "",
|
|
|
|
- });
|
|
|
|
- this.showModelThis = false;
|
|
|
|
|
|
+ message: ''
|
|
|
|
+ })
|
|
|
|
+ this.showModelThis = false
|
|
// 刷新
|
|
// 刷新
|
|
- this.$emit("refresh");
|
|
|
|
|
|
+ this.$emit('refresh')
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
} else if (res && res.code >= 100 && res.code <= 104) {
|
|
- await this.logout();
|
|
|
|
|
|
+ await this.logout()
|
|
} else {
|
|
} else {
|
|
- this.$message.warning(res.message);
|
|
|
|
|
|
+ this.$message.warning(res.message)
|
|
}
|
|
}
|
|
} else {
|
|
} else {
|
|
- console.log("error submit!!");
|
|
|
|
- return false;
|
|
|
|
|
|
+ console.log('error submit!!')
|
|
|
|
+ return false
|
|
}
|
|
}
|
|
- });
|
|
|
|
- },
|
|
|
|
- },
|
|
|
|
-};
|
|
|
|
|
|
+ })
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+}
|
|
</script>
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
.unusualReason {
|
|
.unusualReason {
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|
|
-
|
|
|
|
|
|
+
|