s-layout.vue 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. <template>
  2. <view class="page-app" :class="['theme-' + sys.mode, 'main-' + sys.theme, 'font-' + sys.fontSize]">
  3. <view class="page-main" :style="[bgMain]">
  4. <!-- 默认通用顶部导航栏 -->
  5. <su-navbar v-if="navbar === 'normal'" :title="title" statusBar :color="color" :tools="tools"
  6. :opacityBgUi="opacityBgUi" @search="(e) => emits('search', e)" :defaultSearch="defaultSearch" />
  7. <!-- 装修组件导航栏-普通 -->
  8. <s-custom-navbar v-else-if="navbar === 'custom' && navbarMode === 'normal'" :data="navbarStyle"
  9. :showLeftButton="showLeftButton" />
  10. <view class="page-body" :style="[bgBody]">
  11. <!-- 沉浸式头部 -->
  12. <su-inner-navbar v-if="navbar === 'inner'" :title="title" />
  13. <view v-if="navbar === 'inner'" :style="[{ paddingTop: sheep.$platform.navbar + 'px' }]"></view>
  14. <!-- 装修组件导航栏-沉浸式 -->
  15. <!-- <s-custom-navbar v-if="navbar === 'custom' && navbarMode === 'inner'" :data="navbarStyle" :showLeftButton="showLeftButton" /> -->
  16. <!-- 页面内容插槽 -->
  17. <slot />
  18. <!-- 底部导航 -->
  19. <s-tabbar v-if="tabbar !== ''" :path="tabbar" />
  20. </view>
  21. </view>
  22. <view class="page-modal">
  23. <!-- 全局获得佣金提示弹窗 -->
  24. <s-wallet-modal />
  25. <!-- 全局自动签到弹窗 -->
  26. <s-signup-modal />
  27. <!-- 全局授权弹窗 -->
  28. <s-auth-modal />
  29. <!-- 全局分享弹窗 -->
  30. <s-share-modal :shareInfo="shareInfo" />
  31. <!-- 全局快捷入口 -->
  32. <s-menu-tools />
  33. </view>
  34. </view>
  35. </template>
  36. <script setup>
  37. /**
  38. * 模板组件 - 提供页面公共组件,属性,方法
  39. */
  40. import {
  41. computed,
  42. reactive,
  43. ref
  44. } from 'vue';
  45. import sheep from '@/sheep';
  46. import {
  47. isEmpty
  48. } from 'lodash';
  49. import {
  50. onShow
  51. } from '@dcloudio/uni-app';
  52. // #ifdef MP-WEIXIN
  53. import {
  54. onShareAppMessage
  55. } from '@dcloudio/uni-app';
  56. // #endif
  57. const props = defineProps({
  58. title: {
  59. type: String,
  60. default: '',
  61. },
  62. navbar: {
  63. type: String,
  64. default: 'normal',
  65. },
  66. opacityBgUi: {
  67. type: String,
  68. default: 'bg-white',
  69. },
  70. color: {
  71. type: String,
  72. default: '',
  73. },
  74. tools: {
  75. type: String,
  76. default: 'title',
  77. },
  78. keyword: {
  79. type: String,
  80. default: '',
  81. },
  82. navbarStyle: {
  83. type: Object,
  84. default: () => ({
  85. mode: '',
  86. type: '',
  87. color: '',
  88. src: '',
  89. list: [],
  90. alwaysShow: 0,
  91. }),
  92. },
  93. bgStyle: {
  94. type: Object,
  95. default: () => ({
  96. src: '',
  97. color: 'var(--ui-BG-1)',
  98. }),
  99. },
  100. tabbar: {
  101. type: [String, Boolean],
  102. default: '',
  103. },
  104. onShareAppMessage: {
  105. type: [Boolean, Object],
  106. default: true,
  107. },
  108. leftWidth: {
  109. type: [Number, String],
  110. default: 100,
  111. },
  112. rightWidth: {
  113. type: [Number, String],
  114. default: 100,
  115. },
  116. defaultSearch: {
  117. type: String,
  118. default: '',
  119. },
  120. //展示返回按钮
  121. showLeftButton: {
  122. type: Boolean,
  123. default: false,
  124. },
  125. });
  126. const emits = defineEmits(['search']);
  127. const sysStore = sheep.$store('sys');
  128. const userStore = sheep.$store('user');
  129. const appStore = sheep.$store('app');
  130. const modalStore = sheep.$store('modal');
  131. const sys = computed(() => sysStore);
  132. // 导航栏模式(因为有自定义导航栏 需要计算)
  133. const navbarMode = computed(() => {
  134. if (props.navbar === 'normal' || props.navbarStyle.mode === 'normal') {
  135. return 'normal';
  136. }
  137. return 'inner';
  138. });
  139. // 背景1
  140. const bgMain = computed(() => {
  141. if (navbarMode.value === 'inner') {
  142. return {
  143. background: `${props.bgStyle.backgroundColor} url(${sheep.$url.cdn(
  144. props.bgStyle.backgroundImage,
  145. )}) no-repeat top center / 100% auto`,
  146. };
  147. }
  148. return {};
  149. });
  150. // 背景2
  151. const bgBody = computed(() => {
  152. if (navbarMode.value === 'normal') {
  153. return {
  154. background: `${props.bgStyle.backgroundColor} url(${sheep.$url.cdn(
  155. props.bgStyle.backgroundImage,
  156. )}) no-repeat top center / 100% auto`,
  157. };
  158. }
  159. return {};
  160. });
  161. // 分享信息
  162. const shareInfo = computed(() => {
  163. if (props.onShareAppMessage === true) {
  164. return sheep.$platform.share.getShareInfo();
  165. } else {
  166. if (!isEmpty(props.onShareAppMessage)) {
  167. sheep.$platform.share.updateShareInfo(props.onShareAppMessage);
  168. return props.onShareAppMessage;
  169. }
  170. }
  171. return {};
  172. });
  173. // #ifdef MP-WEIXIN
  174. // 微信小程序分享
  175. onShareAppMessage(() => {
  176. return {
  177. title: shareInfo.value.title,
  178. path: shareInfo.value.path,
  179. imageUrl: shareInfo.value.image,
  180. };
  181. });
  182. // #endif
  183. onShow(() => {
  184. if (!isEmpty(shareInfo.value)) {
  185. sheep.$platform.share.updateShareInfo(shareInfo.value);
  186. }
  187. });
  188. </script>
  189. <style lang="scss" scoped>
  190. .page-app {
  191. position: relative;
  192. color: var(--ui-TC);
  193. background-color: var(--ui-BG-1) !important;
  194. z-index: 2;
  195. display: flex;
  196. width: 100%;
  197. height: 100vh;
  198. .page-main {
  199. position: absolute;
  200. z-index: 1;
  201. width: 100%;
  202. min-height: 100%;
  203. display: flex;
  204. flex-direction: column;
  205. background-color: var(--ui-BG-1) !important;
  206. .page-body {
  207. width: 100%;
  208. position: relative;
  209. z-index: 1;
  210. flex: 1;
  211. }
  212. .page-img {
  213. width: 100vw;
  214. height: 100vh;
  215. position: absolute;
  216. top: 0;
  217. left: 0;
  218. z-index: 0;
  219. }
  220. }
  221. }
  222. </style>