<template>
<button @click="aaa" :data-item="price">测试</button>
</template>
<script>
export default {
data () {
return {
price: 25.88
}
},
methods: {
aaa: function (e) {
uni.showModal({
title: '提示',
content: e.currentTarget.dataset.item + '',
})
}
}
}
</script>
<style>
</style>
DCloud_UNI_yuhe
感谢反馈,运行到ios上发现问题,正在进行针对性测试
2024-07-10 21:06