details.vue 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. <template>
  2. <u-navbar :titleStyle="{ color: '#000' }" :autoBack="true" :title="dataList[0]?.createBy + '的日报'" :placeholder="true" :safeAreaInsetTop="true" bgColor="#fff">
  3. <template #left>
  4. <view class="u-navbar__content__left__item">
  5. <u-icon name="arrow-left" size="20" color="#000"></u-icon>
  6. </view>
  7. </template>
  8. </u-navbar>
  9. <oa-scroll
  10. customClass="record-details-container scroll-height"
  11. :style="{
  12. //#ifdef APP-PLUS || MP-WEIXIN
  13. height: 'calc(100vh - 88px)',
  14. //#endif
  15. //#ifdef H5
  16. height: 'calc(100vh - 44px)',
  17. //#endif
  18. }"
  19. :refresherLoad="false"
  20. :refresherEnabled="false"
  21. :refresherEnabledTitle="false"
  22. :refresherDefaultStyle="'none'"
  23. :refresherThreshold="44"
  24. :refresherBackground="'#f5f6f7'"
  25. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  26. >
  27. <template #default>
  28. <view class="content-area radius bg-white" v-for="(item,index) in dataList" :key="index">
  29. <view class="content-area-header flex mb10">
  30. <img :src="item.avatar" class="content-area-header-avatarImg mr10" v-if="item.avatar"/>
  31. <u-avatar
  32. v-if="!item.avatar"
  33. class="content-area-header-avatar mr10"
  34. :text="item.createBy.length > 2 ? item.createBy.slice(1, 3) : item.createBy"
  35. shape="square"
  36. size="40"
  37. fontSize="12"
  38. color="#ffffff"
  39. :bgColor="proxy.$settingStore.themeColor.color"
  40. ></u-avatar>
  41. <view>
  42. <view class="content-area-header-title font16 mb5">{{ item.createBy ? item.createBy : " " }}</view>
  43. <view class="content-area-header-time font14">{{ item.submitDate ? item.submitDate.replace("T", " ") : " " }}</view>
  44. </view>
  45. </view>
  46. <view class="content-area-center mb10" v-for="child in item.workContents" :key="child">
  47. <view class="content-area-center-top flex">
  48. <view class="content-area-center-top-title mr10" style="color: #559AFF;" @click="toProjectMange(child.projectId)">{{ child.projectName ? child.projectName : " " }}</view>
  49. <view class="content-area-center-top-time" :style="{ color: proxy.$settingStore.themeColor.color }">{{ child.workTime }}h</view>
  50. </view>
  51. <u-text :text="child.workContent" color="#000000" size="14"></u-text>
  52. </view>
  53. <view class="content-area-center mb10">
  54. <view class="content-area-center-top"> 明日计划 </view>
  55. <u-text :text="item.tomorrowPlan" color="#000000" size="14"></u-text>
  56. </view>
  57. <view class="content-area-center mb10">
  58. <view class="content-area-center-top"> 工作协调 </view>
  59. <u-text :text="item.coordinateWork" color="#000000" size="14"></u-text>
  60. </view>
  61. <view class="content-area-center mb10">
  62. <view class="content-area-center-top">图片 </view>
  63. <view class="imageBox" v-if="item.reportImage">
  64. <image class="image" style="width:50px;margin:5px" mode="widthFix" v-for="(a,index) in JSON.parse(item.reportImage)" :key="index" :src="a.url" @click="previewImage(index)" />
  65. </view>
  66. <!-- <u-text :text='item.ccTo ? proxy.$common.mapping("nickName", "userId", item.ccTo, userData) : "无"' color="#000000" size="14"></u-text> -->
  67. </view>
  68. <view class="content-area-center mb10">
  69. <view class="content-area-center-top">抄送人 </view>
  70. <u-text :text='item.ccTo ? proxy.$common.mapping("nickName", "userId", item.ccTo, userData) : "无"' color="#000000" size="14"></u-text>
  71. </view>
  72. </view>
  73. </template>
  74. </oa-scroll>
  75. </template>
  76. <script setup>
  77. /*----------------------------------依赖引入-----------------------------------*/
  78. import { onLoad, onShow, onReady, onHide, onLaunch, onBackPress, onUnload, onNavigationBarButtonTap, onPageScroll } from "@dcloudio/uni-app";
  79. import { ref, reactive, computed, getCurrentInstance, toRefs, inject } from "vue";
  80. /*----------------------------------接口引入-----------------------------------*/
  81. import { projectApi } from "@/api/business/project.js";
  82. import { dUserList } from "@/api/system/user.js";
  83. /*----------------------------------组件引入-----------------------------------*/
  84. /*----------------------------------store引入-----------------------------------*/
  85. /*----------------------------------公共方法引入-----------------------------------*/
  86. /*----------------------------------公共变量-----------------------------------*/
  87. const { proxy } = getCurrentInstance();
  88. /*----------------------------------变量声明-----------------------------------*/
  89. const state = reactive({
  90. loading: true,
  91. dataList: [],//日报列表
  92. options: {//日报详情参数
  93. reportId: "",
  94. },
  95. userData:[],//用户列表
  96. images:[],//图片列表
  97. });
  98. const { dataList, userData} = toRefs(state);
  99. function previewImage(index){
  100. uni.previewImage({
  101. current: index, // 当前显示图片索引
  102. urls: state.images // 需要预览的图片http链接列表
  103. });
  104. }
  105. /**
  106. * @初始化
  107. */
  108. function init() {
  109. dataList.value = [];
  110. state.loading = true;
  111. dUserList().then(res=>{
  112. userData.value = res.data;
  113. projectApi()
  114. .ReportRecord({
  115. reportId: state.options.reportId,
  116. pageNum: 1,
  117. pageSize: 1,
  118. })
  119. .then((requset) => {
  120. dataList.value = requset.data.records;
  121. state.loading = false;
  122. var imgs = JSON.parse(dataList.value[0].reportImage);
  123. console.log(dataList.value[0].reportImage)
  124. imgs.forEach(function(item){
  125. state.images.push(item.url);
  126. })
  127. })
  128. .catch((err) => {
  129. state.loading = false;
  130. });
  131. })
  132. }
  133. /**
  134. * 跳转项目概览
  135. * @param id 项目id
  136. */
  137. function toProjectMange(id) {
  138. proxy.$tab.navigateTo(`/pages/business/common/projectMange/overview/index?id=${id}`);
  139. }
  140. onReady(() => {});
  141. onShow(() => {
  142. //调用系统主题颜色
  143. proxy.$settingStore.systemThemeColor([1]);
  144. });
  145. onLoad((options) => {
  146. state.options.reportId = options?.reportId;
  147. init();
  148. });
  149. onUnload(() => {
  150. projectApi()
  151. .ReportRecordReadFlag({ reportId: state.options.reportId })
  152. .then((requset) => {
  153. uni.$emit("projectMange_record", true); //监听器
  154. })
  155. .catch((err) => {
  156. uni.$emit("projectMange_record", true); //监听器
  157. });
  158. });
  159. </script>
  160. <style lang="scss" scoped>
  161. .content-area {
  162. margin: 0;
  163. padding: 15px 20px;
  164. overflow: hidden;
  165. &-header {
  166. &-avatar {
  167. margin: auto 0;
  168. }
  169. &-avatarImg {
  170. width:35px;
  171. height:35px;
  172. border-radius: 4px;
  173. }
  174. &-title {
  175. margin: 0 0 15px 0;
  176. font-weight: 600;
  177. color: #000000;
  178. }
  179. }
  180. &-center {
  181. line-height: 25px;
  182. &-top {
  183. color: #000000;
  184. font-weight: 600;
  185. }
  186. }
  187. }
  188. </style>