|
@@ -4,13 +4,14 @@
|
|
|
:loading="loading"
|
|
|
:model="ruleForm"
|
|
|
status-icon
|
|
|
+ :size="'mini'"
|
|
|
:rules="rulesThis"
|
|
|
- label-width="120px"
|
|
|
+ label-width="115px"
|
|
|
style="width: 100%"
|
|
|
class="demo-ruleForm"
|
|
|
>
|
|
|
<el-row>
|
|
|
- <el-col :span="12">
|
|
|
+ <el-col :span="8">
|
|
|
<el-form-item label="退货总数量" prop="return_num">
|
|
|
<el-input
|
|
|
disabled
|
|
@@ -18,26 +19,35 @@
|
|
|
placeholder="退货总数量"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
- </el-col>
|
|
|
- <el-col :span="12">
|
|
|
<el-form-item label="可销售数量" prop="normal">
|
|
|
<el-input
|
|
|
:disabled="
|
|
|
- !(status === '0' && powers.some((item) => item == '047'))
|
|
|
+ !(
|
|
|
+ status === '1' &&
|
|
|
+ powers &&
|
|
|
+ powers.length > 0 &&
|
|
|
+ powers.some((item) => item == '047')
|
|
|
+ )
|
|
|
"
|
|
|
v-model="ruleForm.normal"
|
|
|
placeholder="可销售数量"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="24">
|
|
|
+ <el-col :span="16">
|
|
|
<el-form-item label="其他备注" prop="remark">
|
|
|
<el-input
|
|
|
:disabled="
|
|
|
- !(status === '0' && powers.some((item) => item == '047'))
|
|
|
+ !(
|
|
|
+ status === '1' &&
|
|
|
+ powers &&
|
|
|
+ powers.length > 0 &&
|
|
|
+ powers.some((item) => item == '047')
|
|
|
+ )
|
|
|
"
|
|
|
type="textarea"
|
|
|
maxlength="250"
|
|
|
+ :rows="3"
|
|
|
show-word-limit
|
|
|
placeholder="请填写备注"
|
|
|
v-model="ruleForm.remark"
|
|
@@ -45,7 +55,15 @@
|
|
|
</el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <el-col :span="24" v-if="status === '0' && powers.some((item) => item == '047')||ruleForm.product_go.length>0">
|
|
|
+ <el-col
|
|
|
+ :span="24"
|
|
|
+ v-if="
|
|
|
+ status === '1' &&
|
|
|
+ powers &&
|
|
|
+ powers.length > 0 &&
|
|
|
+ powers.some((item) => item == '047')
|
|
|
+ "
|
|
|
+ >
|
|
|
<el-form-item label="异常情况记录" :size="'mini'">
|
|
|
<el-form
|
|
|
:model="ruleForm"
|
|
@@ -67,7 +85,12 @@
|
|
|
fixed="right"
|
|
|
label="操作"
|
|
|
width="80"
|
|
|
- v-if="status === '0' && powers.some((item) => item == '047')"
|
|
|
+ v-if="
|
|
|
+ status === '1' &&
|
|
|
+ powers &&
|
|
|
+ powers.length > 0 &&
|
|
|
+ powers.some((item) => item == '047')
|
|
|
+ "
|
|
|
>
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<!-- v-if="status == '1' || status == '0'" -->
|
|
@@ -120,7 +143,12 @@
|
|
|
<el-col
|
|
|
:span="24"
|
|
|
style="text-align: right; margin: -5px 0 20px 0"
|
|
|
- v-if="status === '0' && powers.some((item) => item == '047')"
|
|
|
+ v-if="
|
|
|
+ status === '1' &&
|
|
|
+ powers &&
|
|
|
+ powers.length > 0 &&
|
|
|
+ powers.some((item) => item == '047')
|
|
|
+ "
|
|
|
>
|
|
|
<el-button type="primary" class="fr" :size="'mini'" @click="submitForm"
|
|
|
>保 存
|
|
@@ -231,6 +259,9 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
},
|
|
|
+ mounted() {
|
|
|
+ this.initForm();
|
|
|
+ },
|
|
|
methods: {
|
|
|
async initForm() {
|
|
|
this.loading = true;
|
|
@@ -248,6 +279,7 @@ export default {
|
|
|
this.$refs.ruleForm.clearValidate();
|
|
|
this.status = "";
|
|
|
this.arr = [];
|
|
|
+ console.log(this.sitem);
|
|
|
let { child, status, normal_num, remark, return_num } = this.sitem;
|
|
|
this.status = status;
|
|
|
if (child) {
|
|
@@ -328,7 +360,7 @@ export default {
|
|
|
page: 1,
|
|
|
size: 100,
|
|
|
type: "1",
|
|
|
- // status: "3",
|
|
|
+ status: "3",
|
|
|
});
|
|
|
if (res && res.code === 0 && res.data) {
|
|
|
const { list } = res.data;
|