u-action-sheet.vue 9.7 KB

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