s-layout.vue 5.5 KB

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