slitting en id

This commit is contained in:
2026-01-21 17:04:22 +08:00
parent b1fa28b8e6
commit 7491f7cdaf
9 changed files with 66 additions and 22 deletions

View File

@@ -29,7 +29,8 @@
<button class="zd-col-8 btn-submit btn-success" :class="{'btn-info': !val1 || !val2}" @tap="toSure3">{{$t('button.qzzbind')}}</button>
</view>
<uni-popup ref="alertDialog" type="dialog">
<uni-popup-dialog type="info" cancelText="关闭" confirmText="确定" title="提示" :content="content" @confirm="dialogConfirm"></uni-popup-dialog>
<!-- <uni-popup-dialog type="info" cancelText="关闭" confirmText="确定" title="提示" :content="content" @confirm="dialogConfirm"></uni-popup-dialog> -->
<uni-popup-dialog type="info" :cancelText="$t('button.close')" :confirmText="$t('button.confirm')" :title="$t('toast.prompt')" :content="content" @confirm="dialogConfirm"></uni-popup-dialog>
</uni-popup>
</view>
</template>
@@ -69,7 +70,7 @@
if (!this.val1) {
return
}
this.content = '确认是否清除点位数据?'
this.content = this.$t('toast.confirm-whether-clear-pointdata')
this.type = 1
this.$refs.alertDialog.open()
},
@@ -88,7 +89,7 @@
if (!this.val1 || !this.val2) {
return
}
this.content = '确认是否绑定子卷?'
this.content = this.$t('toast.confirm-bind-sub-roll')
this.type = 2
this.$refs.alertDialog.open()
},
@@ -107,7 +108,7 @@
if (!this.val1 || !this.val2) {
return
}
this.content = '确认是否绑定气胀轴?'
this.content = this.$t('toast.confirm-bind-inflation-axis')
this.type = 3
this.$refs.alertDialog.open()
},