index.vue 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  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="19" color="#000"></u-icon>
  12. </view>
  13. </template> -->
  14. </u-navbar>
  15. </u-sticky>
  16. <oa-scroll
  17. customClass="record-container scroll-height bg-white"
  18. :isSticky="true"
  19. :customStyle="{
  20. //#ifdef APP-PLUS || MP-WEIXIN
  21. height: 'calc(100vh - 88px)',
  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. <u-loading-page :loading="state.loading" fontSize="16" style="z-index: 99"></u-loading-page>
  34. <view class="content-area p20">
  35. <!-- <view class="content-area-title font16 mb20">可使用模板</view> -->
  36. <u-row class="content-area-row" gutter="10">
  37. <u-col class="content-area-row-col" :span="4" v-for="item in moreData" :key="item">
  38. <view class="content-area-row-col-item shadow-default plr10 ptb10" @click="goNavigateTo(item)">
  39. <div class="font14 mb10" style="font-weight: 600">{{ item.title }}</div>
  40. <div class="font10 mb10" style="line-height: 16px" v-for="child in item.valueData" :key="child">
  41. <div style="color: #606266">{{ child.title }}</div>
  42. <div style="color: #a8abb2">{{ child.value }}</div>
  43. </div>
  44. </view>
  45. </u-col>
  46. </u-row>
  47. </view>
  48. </template>
  49. </oa-scroll>
  50. <oa-tabbar :tabbarValue="1" :tabbarList="proxy.$constData.projectTabbar" :isTabbar="false"></oa-tabbar>
  51. </template>
  52. <script setup>
  53. /*----------------------------------依赖引入-----------------------------------*/
  54. import { onLoad, onShow, onReady, onHide, onLaunch, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  55. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  56. /*----------------------------------接口引入-----------------------------------*/
  57. import { projectApi } from "@/api/business/project.js";
  58. /*----------------------------------组件引入-----------------------------------*/
  59. /*----------------------------------store引入-----------------------------------*/
  60. /*----------------------------------公共方法引入-----------------------------------*/
  61. /*----------------------------------公共变量-----------------------------------*/
  62. const { proxy } = getCurrentInstance();
  63. /*----------------------------------变量声明-----------------------------------*/
  64. const state = reactive({
  65. moreData: [
  66. {
  67. id: 1,
  68. title: "项目报告",
  69. valueData: [
  70. { title: "今日工作内容", value: "请填写" },
  71. { title: "明日工作计划", value: "请输入" },
  72. { title: "需协调工作", value: "请输入" },
  73. ],
  74. },
  75. // {
  76. // id: 2,
  77. // title: "日志",
  78. // valueData: [
  79. // { title: "今日工作内容", value: "请输入" },
  80. // { title: "明日工作计划", value: "请输入" },
  81. // { title: "需协调工作", value: "请输入" },
  82. // ],
  83. // },
  84. ],
  85. });
  86. const { moreData } = toRefs(state);
  87. /**
  88. * @跳转详情
  89. */
  90. function goNavigateTo(e) {
  91. proxy.$tab.navigateTo(`/pages/business/common/projectMange/write/insert?templateId=${e.id}`);
  92. }
  93. onReady(() => {});
  94. onShow(() => {
  95. //调用系统主题颜色
  96. proxy.$settingStore.systemThemeColor([1]);
  97. });
  98. onLoad((options) => {});
  99. onUnload(() => {});
  100. </script>
  101. <style lang="scss" scoped>
  102. .content-area {
  103. color: #000000;
  104. }
  105. </style>