Commit b753e82f by linjinhong

fix:修改问题

parent 5ea87d55
...@@ -106,6 +106,7 @@ export default { ...@@ -106,6 +106,7 @@ export default {
], ],
faceType: "A", faceType: "A",
dialogVisible: false, dialogVisible: false,
showforcedProduc: false,
}; };
}, },
computed: { computed: {
...@@ -415,7 +416,7 @@ export default { ...@@ -415,7 +416,7 @@ export default {
isForcedProduction, isForcedProduction,
) { ) {
let imageResList = []; let imageResList = [];
this.showforcedProduc = false;
// 当adjustable有值时 直接赋值宽高 // 当adjustable有值时 直接赋值宽高
if ( if (
!this.checked && !this.checked &&
...@@ -460,6 +461,7 @@ export default { ...@@ -460,6 +461,7 @@ export default {
designImagesCanvasJsonList = JSON.parse(designImagesCanvasJsonList); designImagesCanvasJsonList = JSON.parse(designImagesCanvasJsonList);
// 惠立彩 带黄点摸的订单直接展示错误弹窗 // 惠立彩 带黄点摸的订单直接展示错误弹窗
if (!designImagesCanvasJsonList[0].images) { if (!designImagesCanvasJsonList[0].images) {
this.showforcedProduc = true;
this.dialogVisible = true; this.dialogVisible = true;
return; return;
} }
...@@ -1198,8 +1200,11 @@ export default { ...@@ -1198,8 +1200,11 @@ export default {
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="closeDialog">取消</el-button> <el-button @click="closeDialog">取消</el-button>
<el-button @click="forcedProductionFN">强制生产</el-button> <el-button v-if="!showforcedProduc" @click="forcedProductionFN"
>强制生产</el-button
>
<el-button <el-button
v-if="!showforcedProduc"
@click="(e) => forcedProductionFN(e, true)" @click="(e) => forcedProductionFN(e, true)"
style="color: red;" style="color: red;"
>自动强制生产</el-button >自动强制生产</el-button
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment