Commit b753e82f by linjinhong

fix:修改问题

parent 5ea87d55
......@@ -106,6 +106,7 @@ export default {
],
faceType: "A",
dialogVisible: false,
showforcedProduc: false,
};
},
computed: {
......@@ -415,7 +416,7 @@ export default {
isForcedProduction,
) {
let imageResList = [];
this.showforcedProduc = false;
// 当adjustable有值时 直接赋值宽高
if (
!this.checked &&
......@@ -460,6 +461,7 @@ export default {
designImagesCanvasJsonList = JSON.parse(designImagesCanvasJsonList);
// 惠立彩 带黄点摸的订单直接展示错误弹窗
if (!designImagesCanvasJsonList[0].images) {
this.showforcedProduc = true;
this.dialogVisible = true;
return;
}
......@@ -1198,8 +1200,11 @@ export default {
<span slot="footer" class="dialog-footer">
<el-button @click="closeDialog">取消</el-button>
<el-button @click="forcedProductionFN">强制生产</el-button>
<el-button v-if="!showforcedProduc" @click="forcedProductionFN"
>强制生产</el-button
>
<el-button
v-if="!showforcedProduc"
@click="(e) => forcedProductionFN(e, true)"
style="color: red;"
>自动强制生产</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