|
@@ -69,7 +69,7 @@
|
|
</a-radio-group>
|
|
</a-radio-group>
|
|
</div>
|
|
</div>
|
|
<div style="margin-top:36px;text-align:center;">
|
|
<div style="margin-top:36px;text-align:center;">
|
|
- <a-button @click="isShow = false" style="margin-right: 15px" id="chooseCustom-btn-back">取消</a-button>
|
|
|
|
|
|
+ <a-button @click="handleCancel" style="margin-right: 15px" id="chooseCustom-btn-back">取消</a-button>
|
|
<a-button type="primary" @click="handleSubmit" id="chooseCustom-btn-submit">确定</a-button>
|
|
<a-button type="primary" @click="handleSubmit" id="chooseCustom-btn-submit">确定</a-button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@@ -174,6 +174,11 @@ export default {
|
|
productPriceChangeFlag: _this.priceVal
|
|
productPriceChangeFlag: _this.priceVal
|
|
}
|
|
}
|
|
_this.$emit('ok', objInfo)
|
|
_this.$emit('ok', objInfo)
|
|
|
|
+ },
|
|
|
|
+ // 关闭弹窗
|
|
|
|
+ handleCancel () {
|
|
|
|
+ this.isShow = false
|
|
|
|
+ this.$emit('close')
|
|
}
|
|
}
|
|
},
|
|
},
|
|
watch: {
|
|
watch: {
|