u-action-sheet.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  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. <template v-for="(item, index) in actions">
  38. <!-- #ifdef MP -->
  39. <button
  40. :key="index"
  41. class="u-reset-button"
  42. :openType="item.openType"
  43. @getuserinfo="onGetUserInfo"
  44. @contact="onContact"
  45. @getphonenumber="onGetPhoneNumber"
  46. @error="onError"
  47. @launchapp="onLaunchApp"
  48. @opensetting="onOpenSetting"
  49. :lang="lang"
  50. :session-from="sessionFrom"
  51. :send-message-title="sendMessageTitle"
  52. :send-message-path="sendMessagePath"
  53. :send-message-img="sendMessageImg"
  54. :show-message-card="showMessageCard"
  55. :app-parameter="appParameter"
  56. @tap="selectHandler(index)"
  57. :hover-class="!item.disabled && !item.loading ? 'u-action-sheet--hover' : ''"
  58. >
  59. <!-- #endif -->
  60. <view
  61. class="u-action-sheet__item-wrap__item"
  62. @tap.stop="selectHandler(index)"
  63. :hover-class="!item.disabled && !item.loading ? 'u-action-sheet--hover' : ''"
  64. :hover-stay-time="150"
  65. >
  66. <template v-if="!item.loading">
  67. <text
  68. class="u-action-sheet__item-wrap__item__name"
  69. :style="[itemStyle(index)]"
  70. >{{ item.patientName }}</text>
  71. <text
  72. style="width: 90%;color: blue;margin-top: 5px;"
  73. v-if="item.subname"
  74. class="u-action-sheet__item-wrap__item__subname omit"
  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. </u-popup>
  107. </template>
  108. <script>
  109. import openType from '../../libs/mixin/openType'
  110. import button from '../../libs/mixin/button'
  111. import props from './props.js';
  112. /**
  113. * ActionSheet 操作菜单
  114. * @description 本组件用于从底部弹出一个操作菜单,供用户选择并返回结果。本组件功能类似于uni的uni.showActionSheetAPI,配置更加灵活,所有平台都表现一致。
  115. * @tutorial https://www.uviewui.com/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, uni.$u.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. methods: {
  167. closeHandler() {
  168. // 允许点击遮罩关闭时,才发出close事件
  169. if(this.closeOnClickOverlay) {
  170. this.$emit('close')
  171. }
  172. },
  173. // 点击取消按钮
  174. cancel() {
  175. this.$emit('close')
  176. },
  177. selectHandler(index) {
  178. const item = this.actions[index]
  179. if (item && !item.disabled && !item.loading) {
  180. this.$emit('select', item)
  181. if (this.closeOnClickAction) {
  182. this.$emit('close')
  183. }
  184. }
  185. },
  186. }
  187. }
  188. </script>
  189. <style lang="scss" scoped>
  190. @import "../../libs/css/components.scss";
  191. $u-action-sheet-reset-button-width:100% !default;
  192. $u-action-sheet-title-font-size: 16px !default;
  193. $u-action-sheet-title-padding: 12px 30px !default;
  194. $u-action-sheet-title-color: $u-main-color !default;
  195. $u-action-sheet-header-icon-wrap-right:15px !default;
  196. $u-action-sheet-header-icon-wrap-top:15px !default;
  197. $u-action-sheet-description-font-size:13px !default;
  198. $u-action-sheet-description-color:14px !default;
  199. $u-action-sheet-description-margin: 18px 15px !default;
  200. $u-action-sheet-item-wrap-item-padding:15px !default;
  201. $u-action-sheet-item-wrap-name-font-size:16px !default;
  202. $u-action-sheet-item-wrap-subname-font-size:13px !default;
  203. $u-action-sheet-item-wrap-subname-color: #c0c4cc !default;
  204. $u-action-sheet-item-wrap-subname-margin-top:10px !default;
  205. $u-action-sheet-cancel-text-font-size:16px !default;
  206. $u-action-sheet-cancel-text-color:$u-content-color !default;
  207. $u-action-sheet-cancel-text-font-size:15px !default;
  208. $u-action-sheet-cancel-text-hover-background-color:rgb(242, 243, 245) !default;
  209. .u-reset-button {
  210. width: $u-action-sheet-reset-button-width;
  211. }
  212. .u-action-sheet {
  213. text-align: center;
  214. &__header {
  215. position: relative;
  216. padding: $u-action-sheet-title-padding;
  217. &__title {
  218. font-size: $u-action-sheet-title-font-size;
  219. color: $u-action-sheet-title-color;
  220. font-weight: bold;
  221. text-align: center;
  222. }
  223. &__icon-wrap {
  224. position: absolute;
  225. right: $u-action-sheet-header-icon-wrap-right;
  226. top: $u-action-sheet-header-icon-wrap-top;
  227. }
  228. }
  229. &__description {
  230. font-size: $u-action-sheet-description-font-size;
  231. color: $u-tips-color;
  232. margin: $u-action-sheet-description-margin;
  233. text-align: center;
  234. }
  235. &__item-wrap {
  236. &__item {
  237. padding: $u-action-sheet-item-wrap-item-padding;
  238. @include flex;
  239. align-items: center;
  240. justify-content: center;
  241. flex-direction: column;
  242. &__name {
  243. font-size: $u-action-sheet-item-wrap-name-font-size;
  244. color: $u-main-color;
  245. text-align: center;
  246. }
  247. &__subname {
  248. font-size: $u-action-sheet-item-wrap-subname-font-size;
  249. color: $u-action-sheet-item-wrap-subname-color;
  250. margin-top: $u-action-sheet-item-wrap-subname-margin-top;
  251. text-align: center;
  252. }
  253. }
  254. }
  255. &__cancel-text {
  256. font-size: $u-action-sheet-cancel-text-font-size;
  257. color: $u-action-sheet-cancel-text-color;
  258. text-align: center;
  259. padding: $u-action-sheet-cancel-text-font-size;
  260. }
  261. &--hover {
  262. background-color: $u-action-sheet-cancel-text-hover-background-color;
  263. }
  264. }
  265. </style>