index.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. <template>
  2. <view v-if="showPop" class="shade" @tap="hidePop">
  3. <view class="pop" :style="popStyle" :class="{ show: showPop }">
  4. <view
  5. v-for="(item, index) in popButton"
  6. :key="index"
  7. @tap="pickerMenu"
  8. :data-index="index"
  9. >{{ item }}</view
  10. >
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default {
  16. name: "long-press-modal",
  17. props: {
  18. /* 窗口尺寸 */
  19. winSize: {
  20. type: Object,
  21. default() {
  22. return {
  23. witdh: 375,
  24. height: 603,
  25. };
  26. },
  27. },
  28. /* 显示操作弹窗 */
  29. showPop: {
  30. type: Boolean,
  31. default: false,
  32. },
  33. /* 弹窗按钮列表 */
  34. popButton: {
  35. type: Array,
  36. default() {
  37. // 如下
  38. // return ["标为关注", "置顶聊天", "删除该聊天"]
  39. return [];
  40. },
  41. },
  42. /* 弹窗定位样式 */
  43. popStyle: {
  44. type: String,
  45. default: "",
  46. },
  47. change:{
  48. type:Function,
  49. }
  50. },
  51. methods: {
  52. /* 隐藏弹窗 */
  53. hidePop() {
  54. this.$emit('hidePop')
  55. },
  56. /* 选择菜单 */
  57. pickerMenu() {
  58. this.$emit('change')
  59. this.hidePop();
  60. },
  61. },
  62. };
  63. </script>
  64. <style scoped lang="scss">
  65. /* 遮罩 */
  66. .shade {
  67. position: fixed;
  68. z-index: 100;
  69. top: 0;
  70. right: 0;
  71. bottom: 0;
  72. left: 0;
  73. -webkit-touch-callout: none;
  74. .pop {
  75. position: fixed;
  76. z-index: 101;
  77. width: 200upx;
  78. box-sizing: border-box;
  79. font-size: 28upx;
  80. text-align: left;
  81. color: #333;
  82. background-color: #fff;
  83. box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  84. line-height: 80upx;
  85. transition: transform 0.15s ease-in-out 0s;
  86. user-select: none;
  87. -webkit-touch-callout: none;
  88. transform: scale(0, 0);
  89. &.show {
  90. transform: scale(1, 1);
  91. }
  92. & > view {
  93. padding: 0 20upx;
  94. overflow: hidden;
  95. text-overflow: ellipsis;
  96. white-space: nowrap;
  97. user-select: none;
  98. -webkit-touch-callout: none;
  99. &:active {
  100. background-color: #f3f3f3;
  101. }
  102. }
  103. }
  104. }
  105. </style>