my-action-sheet.vue 10.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291
  1. <template>
  2. <u-popup
  3. :show="show"
  4. mode="bottom"
  5. @close="closeHandler"
  6. :safeAreaInsetBottom="safeAreaInsetBottom"
  7. :round="round"
  8. >
  9. <scroll-view :scroll-y="true" :style="{'max-height': `${height}px`}">
  10. <view class="u-action-sheet">
  11. <view
  12. class="u-action-sheet__header"
  13. v-if="title"
  14. >
  15. <text class="u-action-sheet__header__title u-line-1">{{title}}</text>
  16. <view
  17. class="u-action-sheet__header__icon-wrap"
  18. @tap.stop="cancel"
  19. >
  20. <u-icon
  21. name="close"
  22. size="17"
  23. color="#c8c9cc"
  24. bold
  25. ></u-icon>
  26. </view>
  27. </view>
  28. <text
  29. class="u-action-sheet__description"
  30. :style="[{
  31. marginTop: `${title && description ? 0 : '18px'}`
  32. }]"
  33. v-if="description"
  34. >{{description}}</text>
  35. <slot>
  36. <u-line v-if="description"></u-line>
  37. <view class="u-action-sheet__item-wrap">
  38. <template v-for="(item, index) in actions">
  39. <!-- #ifdef MP -->
  40. <button
  41. :key="index"
  42. class="u-reset-button"
  43. :openType="item.openType"
  44. @getuserinfo="onGetUserInfo"
  45. @contact="onContact"
  46. @getphonenumber="onGetPhoneNumber"
  47. @error="onError"
  48. @launchapp="onLaunchApp"
  49. @opensetting="onOpenSetting"
  50. :lang="lang"
  51. :session-from="sessionFrom"
  52. :send-message-title="sendMessageTitle"
  53. :send-message-path="sendMessagePath"
  54. :send-message-img="sendMessageImg"
  55. :show-message-card="showMessageCard"
  56. :app-parameter="appParameter"
  57. @tap="selectHandler(index)"
  58. :hover-class="!item.disabled && !item.loading ? 'u-action-sheet--hover' : ''"
  59. >
  60. <!-- #endif -->
  61. <view
  62. class="u-action-sheet__item-wrap__item"
  63. @tap.stop="selectHandler(index)"
  64. :hover-class="!item.disabled && !item.loading ? 'u-action-sheet--hover' : ''"
  65. :hover-stay-time="150"
  66. >
  67. <template v-if="!item.loading">
  68. <text
  69. class="u-action-sheet__item-wrap__item__name"
  70. :style="[itemStyle(index)]"
  71. >{{ item.name }}</text>
  72. <text
  73. v-if="item.subname"
  74. class="u-action-sheet__item-wrap__item__subname"
  75. >{{ item.subname }}</text>
  76. </template>
  77. <u-loading-icon
  78. v-else
  79. custom-class="van-action-sheet__loading"
  80. size="18"
  81. mode="circle"
  82. />
  83. </view>
  84. <!-- #ifdef MP -->
  85. </button>
  86. <!-- #endif -->
  87. <u-line v-if="index !== actions.length - 1"></u-line>
  88. </template>
  89. </view>
  90. </slot>
  91. <u-gap
  92. bgColor="#eaeaec"
  93. height="6"
  94. v-if="cancelText"
  95. ></u-gap>
  96. <view hover-class="u-action-sheet--hover">
  97. <text
  98. @touchmove.stop.prevent
  99. :hover-stay-time="150"
  100. v-if="cancelText"
  101. class="u-action-sheet__cancel-text"
  102. @tap="cancel"
  103. >{{cancelText}}</text>
  104. </view>
  105. </view>
  106. </scroll-view>
  107. </u-popup>
  108. </template>
  109. <script>
  110. import openType from '@/uni_modules/uview-ui/libs/mixin/openType'
  111. import button from '@/uni_modules/uview-ui/libs/mixin/button'
  112. import props from './props.js';
  113. /**
  114. * ActionSheet 操作菜单
  115. * @description 本组件用于从底部弹出一个操作菜单,供用户选择并返回结果。本组件功能类似于uni的uni.showActionSheetAPI,配置更加灵活,所有平台都表现一致。
  116. * @tutorial https://www.uviewui.com/components/actionSheet.html
  117. *
  118. * @property {Boolean} show 操作菜单是否展示 (默认 false )
  119. * @property {String} title 操作菜单标题
  120. * @property {String} description 选项上方的描述信息
  121. * @property {Array<Object>} actions 按钮的文字数组,见官方文档示例
  122. * @property {String} cancelText 取消按钮的提示文字,不为空时显示按钮
  123. * @property {Boolean} closeOnClickAction 点击某个菜单项时是否关闭弹窗 (默认 true )
  124. * @property {Boolean} safeAreaInsetBottom 处理底部安全区 (默认 true )
  125. * @property {String} openType 小程序的打开方式 (contact | launchApp | getUserInfo | openSetting |getPhoneNumber |error )
  126. * @property {Boolean} closeOnClickOverlay 点击遮罩是否允许关闭 (默认 true )
  127. * @property {Number|String} round 圆角值,默认无圆角 (默认 0 )
  128. * @property {String} lang 指定返回用户信息的语言,zh_CN 简体中文,zh_TW 繁体中文,en 英文
  129. * @property {String} sessionFrom 会话来源,openType="contact"时有效
  130. * @property {String} sendMessageTitle 会话内消息卡片标题,openType="contact"时有效
  131. * @property {String} sendMessagePath 会话内消息卡片点击跳转小程序路径,openType="contact"时有效
  132. * @property {String} sendMessageImg 会话内消息卡片图片,openType="contact"时有效
  133. * @property {Boolean} showMessageCard 是否显示会话内消息卡片,设置此参数为 true,用户进入客服会话会在右下角显示"可能要发送的小程序"提示,用户点击后可以快速发送小程序消息,openType="contact"时有效 (默认 false )
  134. * @property {String} appParameter 打开 APP 时,向 APP 传递的参数,openType=launchApp 时有效
  135. *
  136. * @event {Function} select 点击ActionSheet列表项时触发
  137. * @event {Function} close 点击取消按钮时触发
  138. * @event {Function} getuserinfo 用户点击该按钮时,会返回获取到的用户信息,回调的 detail 数据与 wx.getUserInfo 返回的一致,openType="getUserInfo"时有效
  139. * @event {Function} contact 客服消息回调,openType="contact"时有效
  140. * @event {Function} getphonenumber 获取用户手机号回调,openType="getPhoneNumber"时有效
  141. * @event {Function} error 当使用开放能力时,发生错误的回调,openType="error"时有效
  142. * @event {Function} launchapp 打开 APP 成功的回调,openType="launchApp"时有效
  143. * @event {Function} opensetting 在打开授权设置页后回调,openType="openSetting"时有效
  144. * @example <u-action-sheet :actions="list" :title="title" :show="show"></u-action-sheet>
  145. */
  146. export default {
  147. name: "my-action-sheet",
  148. // 一些props参数和methods方法,通过mixin混入,因为其他文件也会用到
  149. mixins: [openType, button, uni.$u.mixin, props],
  150. data() {
  151. return {
  152. height: 0,
  153. }
  154. },
  155. computed: {
  156. // 操作项目的样式
  157. itemStyle() {
  158. return (index) => {
  159. let style = {};
  160. if (this.actions[index].color) style.color = this.actions[index].color
  161. if (this.actions[index].fontSize) style.fontSize = uni.$u.addUnit(this.actions[index].fontSize)
  162. // 选项被禁用的样式
  163. if (this.actions[index].disabled) style.color = '#c0c4cc'
  164. return style;
  165. }
  166. },
  167. },
  168. beforeMount() {
  169. uni.onWindowResize(() => {
  170. this.calHeight()
  171. })
  172. this.calHeight()
  173. },
  174. methods: {
  175. calHeight() {
  176. console.log(123);
  177. this.height = uni.getWindowInfo().screenHeight * 0.6
  178. },
  179. closeHandler() {
  180. // 允许点击遮罩关闭时,才发出close事件
  181. if(this.closeOnClickOverlay) {
  182. this.$emit('close')
  183. }
  184. },
  185. // 点击取消按钮
  186. cancel() {
  187. this.$emit('close')
  188. },
  189. selectHandler(index) {
  190. const item = this.actions[index]
  191. if (item && !item.disabled && !item.loading) {
  192. this.$emit('select', item)
  193. if (this.closeOnClickAction) {
  194. this.$emit('close')
  195. }
  196. }
  197. },
  198. }
  199. }
  200. </script>
  201. <style lang="scss" scoped>
  202. @import "@/uni_modules/uview-ui/libs/css/components.scss";
  203. $u-action-sheet-reset-button-width:100% !default;
  204. $u-action-sheet-title-font-size: 16px !default;
  205. $u-action-sheet-title-padding: 12px 30px !default;
  206. $u-action-sheet-title-color: $u-main-color !default;
  207. $u-action-sheet-header-icon-wrap-right:15px !default;
  208. $u-action-sheet-header-icon-wrap-top:15px !default;
  209. $u-action-sheet-description-font-size:13px !default;
  210. $u-action-sheet-description-color:14px !default;
  211. $u-action-sheet-description-margin: 18px 15px !default;
  212. $u-action-sheet-item-wrap-item-padding:15px !default;
  213. $u-action-sheet-item-wrap-name-font-size:16px !default;
  214. $u-action-sheet-item-wrap-subname-font-size:13px !default;
  215. $u-action-sheet-item-wrap-subname-color: #c0c4cc !default;
  216. $u-action-sheet-item-wrap-subname-margin-top:10px !default;
  217. $u-action-sheet-cancel-text-font-size:16px !default;
  218. $u-action-sheet-cancel-text-color:$u-content-color !default;
  219. $u-action-sheet-cancel-text-font-size:15px !default;
  220. $u-action-sheet-cancel-text-hover-background-color:rgb(242, 243, 245) !default;
  221. .u-reset-button {
  222. width: $u-action-sheet-reset-button-width;
  223. }
  224. .u-action-sheet {
  225. text-align: center;
  226. &__header {
  227. position: relative;
  228. padding: $u-action-sheet-title-padding;
  229. &__title {
  230. font-size: $u-action-sheet-title-font-size;
  231. color: $u-action-sheet-title-color;
  232. font-weight: bold;
  233. text-align: center;
  234. }
  235. &__icon-wrap {
  236. position: absolute;
  237. right: $u-action-sheet-header-icon-wrap-right;
  238. top: $u-action-sheet-header-icon-wrap-top;
  239. }
  240. }
  241. &__description {
  242. font-size: $u-action-sheet-description-font-size;
  243. color: $u-tips-color;
  244. margin: $u-action-sheet-description-margin;
  245. text-align: center;
  246. }
  247. &__item-wrap {
  248. &__item {
  249. padding: $u-action-sheet-item-wrap-item-padding;
  250. @include flex;
  251. align-items: center;
  252. justify-content: center;
  253. flex-direction: column;
  254. &__name {
  255. font-size: $u-action-sheet-item-wrap-name-font-size;
  256. color: $u-main-color;
  257. text-align: center;
  258. }
  259. &__subname {
  260. font-size: $u-action-sheet-item-wrap-subname-font-size;
  261. color: $u-action-sheet-item-wrap-subname-color;
  262. margin-top: $u-action-sheet-item-wrap-subname-margin-top;
  263. text-align: center;
  264. }
  265. }
  266. }
  267. &__cancel-text {
  268. font-size: $u-action-sheet-cancel-text-font-size;
  269. color: $u-action-sheet-cancel-text-color;
  270. text-align: center;
  271. padding: $u-action-sheet-cancel-text-font-size;
  272. }
  273. &--hover {
  274. background-color: $u-action-sheet-cancel-text-hover-background-color;
  275. }
  276. }
  277. </style>