| 12345678910111213141516171819202122232425262728293031323334 |
- <template>
- <view>
- <page-head :title="title"></page-head>
- <view class="uni-padding-wrap">
- <view class="uni-btn-v">
- <button type="default" @tap="actionSheetTap">弹出action sheet</button>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- title: 'action-sheet'
- }
- },
- methods: {
- actionSheetTap() {
- uni.showActionSheet({
- title:'标题',
- itemList: ['item1', 'item2', 'item3', 'item4'],
- success: (e) => {
- console.log(e.tapIndex);
- uni.showToast({
- title:"点击了第" + e.tapIndex + "个选项",
- icon:"none"
- })
- }
- })
- }
- }
- }
- </script>
|