| | |
| | | <view> |
| | | <u-modal :show="show" |
| | | :title="title" |
| | | @confirm="checkedConfirm"> |
| | | show-cancel-button |
| | | @confirm="checkedConfirm" |
| | | @cancel="checkedCancel"> |
| | | <view class="slot-content"> |
| | | <view class="radio-group"> |
| | | <u-radio-group v-model="checkedStyle" |
| | |
| | | if (!this.checkedDefault) { |
| | | uni.setStorageSync('ischeckedDefault', 0) |
| | | } |
| | | this.$u.toast('选择成功,后续修改请在个人中心进行修改') |
| | | //如果勾选默认选择 则在打印时 不进行提醒 |
| | | this.$emit('selectedPrint', this.ischeckedDefault) |
| | | // 个人中心 修改磅单打印样式 |
| | | this.$emit('selectedPrintStyle', this.checkedName) |
| | | this.show = false |
| | | }, |
| | | checkedCancel() { |
| | | this.show = false |
| | | } |
| | | } |
| | | } |