index.vue 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <template>
  2. <u-sticky class="shadow-default" bgColor="#fff" style="top: 0">
  3. <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" title="选择接收人" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
  4. <template #left>
  5. <view class="u-navbar__content__left__item">
  6. <u-icon name="arrow-left" size="20" color="#000"></u-icon>
  7. </view>
  8. </template>
  9. <template #right>
  10. <view class="u-navbar__content__right__item">
  11. <u-icon name="more-dot-fill" size="20" color="#000"></u-icon>
  12. </view>
  13. </template>
  14. </u-navbar>
  15. </u-sticky>
  16. <oa-scroll
  17. customClass="record-container scroll-height"
  18. :isSticky="false"
  19. :customStyle="{
  20. //#ifdef APP-PLUS || MP-WEIXIN
  21. height: 'calc(100vh - 44px)',
  22. //#endif
  23. }"
  24. :refresherLoad="false"
  25. :refresherEnabled="false"
  26. :refresherDefaultStyle="'none'"
  27. :refresherThreshold="44"
  28. :lowerThreshold="44"
  29. :refresherBackground="'#f5f6f7'"
  30. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  31. >
  32. <template #default>
  33. <uni-mall-list v-if="dataList.length > 0" :dataList="dataList" :defaultHeadList="defaultHeadList" @change="handleChange" @submit="handleSubmit"></uni-mall-list>
  34. </template>
  35. </oa-scroll>
  36. </template>
  37. <script setup>
  38. /*----------------------------------依赖引入-----------------------------------*/
  39. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  40. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  41. /*----------------------------------接口引入-----------------------------------*/
  42. import { deptUserTreeSelect } from "@/api/system/user.js";
  43. /*----------------------------------组件引入-----------------------------------*/
  44. import uniMallList from "./components/mall-list.vue";
  45. /*----------------------------------store引入-----------------------------------*/
  46. /*----------------------------------公共方法引入-----------------------------------*/
  47. import { storageSystem } from "@/utils/storage"; // 公共方法引用
  48. /*----------------------------------公共变量-----------------------------------*/
  49. const { proxy } = getCurrentInstance();
  50. /*----------------------------------变量声明-----------------------------------*/
  51. const state = reactive({
  52. defaultHeadList: { label: "通讯录", id: "18AF75C3-330A-53AC-270E-EAD060BC0E1A" },
  53. dataList: [],
  54. });
  55. const { defaultHeadList, dataList } = toRefs(state);
  56. function init() {
  57. deptUserTreeSelect({ pageNum: "1", pageSize: "10000" }).then((res) => {
  58. state.dataList = JSON.parse(JSON.stringify(res.data).replace(/value/g, "id"))[0].children;
  59. });
  60. }
  61. function handleChange(item) {
  62. // if (item.type === "user") {
  63. // uni.navigateTo({
  64. // url: "/pages/datails/datails?user=" + JSON.stringify(item),
  65. // });
  66. // }
  67. }
  68. function handleSubmit(event) {
  69. proxy.$tab.navigateBack(1); //返回到需要执行方法的页面
  70. uni.$emit("UserMall", event); //将值存储监听器
  71. }
  72. onReady(() => {});
  73. onShow(() => {});
  74. onLoad((options) => {
  75. init();
  76. });
  77. onUnload(() => {});
  78. </script>
  79. <style></style>