Commit 3dcb6d83 by linjinhong

fix:修改adjustable判断值

parent ad42f0fe
......@@ -422,7 +422,7 @@ export default {
if (
!this.checked &&
this.detail.diyId &&
this.detail.adjustable == 1 &&
this.detail.adjustable &&
designImagesCanvasJsonList &&
this.desktopDevice !== 3
) {
......@@ -463,7 +463,7 @@ export default {
// 惠立彩 带黄点摸的订单直接展示错误弹窗
if (
this.detail.productMark == "custom_part" &&
this.detail.adjustable == 1 &&
this.detail.adjustable &&
!designImagesCanvasJsonList[0].images
) {
this.showforcedProduc = true;
......@@ -472,7 +472,7 @@ export default {
}
if (
(this.detail.productMark == "custom_part" &&
this.detail.adjustable == 0) ||
!this.detail.adjustable) ||
this.detail.productMark !== "custom_part"
) {
this.showforcedProduc = true;
......
......@@ -533,7 +533,7 @@ export default {
let size = null;
if (
this.detail.mssWidth &&
this.detail.adjustable == 1 &&
this.detail.adjustable &&
this.detail.mssHeight
) {
size = {
......@@ -1286,7 +1286,7 @@ export default {
if (
this.detail &&
this.detail.mssWidth &&
this.detail.adjustable == 1 &&
this.detail.adjustable &&
this.detail.mssHeight
) {
this.detail.designImageSize = {
......@@ -1792,7 +1792,7 @@ export default {
v-if="
productMark == 'custom_part' &&
selectImgList.length &&
detail.adjustable == 1 &&
detail.adjustable &&
!isOver &&
!isMove &&
!selectImgList.some((el) => el.isCut) &&
......@@ -1806,7 +1806,7 @@ export default {
:style="{ left: isView ? '' : '6%' }"
v-if="
productMark == 'custom_part' &&
detail.adjustable == 1 &&
detail.adjustable &&
selectImgList.length &&
!selectImgList.some((el) => el.isCut) &&
isOver &&
......
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