|
@@ -9,22 +9,19 @@
|
|
|
style="width: 100%"
|
|
|
class="demo-ruleForm"
|
|
|
>
|
|
|
- <p>sitem{{ sitem }}</p>
|
|
|
<el-row>
|
|
|
<el-row>
|
|
|
- <!-- 收货商品数量 getGoods_numbers-->
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="收货数量" prop="getGoods_numbers">
|
|
|
+ <el-form-item label="订单商品总数" prop="getGoods_numbers">
|
|
|
<el-input
|
|
|
:disabled="disabled"
|
|
|
v-model="ruleForm.getGoods_numbers"
|
|
|
- placeholder="请输入收货数量"
|
|
|
+ placeholder="订单商品总数"
|
|
|
></el-input>
|
|
|
</el-form-item>
|
|
|
</el-col>
|
|
|
- <!-- 正常销售商品数量 canSellGoods_numbers-->
|
|
|
<el-col :span="12">
|
|
|
- <el-form-item label="可销售数量" prop="canSellGoods_numbers">
|
|
|
+ <el-form-item label="已发货商品总数" prop="canSellGoods_numbers">
|
|
|
<el-input
|
|
|
:disabled="disabled"
|
|
|
v-model="ruleForm.getGoods_numbers"
|
|
@@ -63,34 +60,7 @@
|
|
|
"
|
|
|
>保 存</el-button
|
|
|
>
|
|
|
- <el-button
|
|
|
- type="primary"
|
|
|
- @click="statusConfirm('1', '发起审核流程')"
|
|
|
- v-if="status === '0' && powers.some((item) => item == '012')"
|
|
|
- >发起审核流程
|
|
|
- </el-button>
|
|
|
- <el-button
|
|
|
- @click="statusConfirm('0', '取消审核流程')"
|
|
|
- plain
|
|
|
- v-if="status === '1' && powers.some((item) => item == '014')"
|
|
|
- >取消审核流程</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- @click="statusConfirm('-1', '作废该条信息')"
|
|
|
- type="danger"
|
|
|
- plain
|
|
|
- v-if="
|
|
|
- (status === '0' || status === '1') &&
|
|
|
- powers.some((item) => item == '015')
|
|
|
- "
|
|
|
- >作废该条信息</el-button
|
|
|
- >
|
|
|
- <el-button
|
|
|
- @click="statusConfirm('2', '通过审核')"
|
|
|
- type="primary"
|
|
|
- v-if="status === '1' && powers.some((item) => item == '016')"
|
|
|
- >通过审核</el-button
|
|
|
- >
|
|
|
+
|
|
|
</el-col>
|
|
|
</el-row>
|
|
|
</el-form>
|
|
@@ -101,7 +71,7 @@ import asyncRequest from "@/apis/service/sheetOrder/zxReturn";
|
|
|
import resToken from "@/mixins/resToken";
|
|
|
export default {
|
|
|
name: "handover",
|
|
|
- props: ["id", "sitem", "showModelThis", "newTime"],
|
|
|
+ props: ["id", "sitem", "showModel", "newTime"],
|
|
|
mixins: [resToken],
|
|
|
data() {
|
|
|
const validatenumbers = (rule, value, callback) => {
|