index.vue 3.9 KB

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