dailyReport.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371
  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. <view class="timeSelect">
  12. <view @click="daySwitch(0)"><u-icon name="arrow-left" size="14" color="#000" class="left"></u-icon></view>
  13. <view><text>{{ day }}</text></view>
  14. <view @click="daySwitch(1)" ><u-icon name="arrow-right" size="14" :color="statusNext ? '#000' : '#ccc'" class="right" aria-disabled="true"></u-icon></view>
  15. </view>
  16. <view class="container">
  17. <view class="menu-list">
  18. <view class="list-cell">
  19. <view class="list" :class="{ active: query.queryType == item.value }" @click="tabsClick(item.value)" v-for="(item,index) in activeList" :key="index">
  20. <text>{{ index == 0 ? statistics.submitOnTime :index == 1 ? statistics.submitLate : index == 2 ? statistics.notSubmitted : '' }}</text>
  21. <text>{{ item.name }}</text>
  22. <text v-if="item.value == 0 || item.value == 1"></text>
  23. <text class="line"></text>
  24. </view>
  25. </view>
  26. </view>
  27. </view>
  28. <oa-scroll
  29. customClass="record-container scroll-height"
  30. :pageSize="query.pageSize"
  31. :total="total"
  32. :isSticky="true"
  33. :customStyle="{
  34. //#ifdef APP-PLUS || MP-WEIXIN
  35. height: `calc(100vh - (138px + ${proxy.$settingStore.StatusBarHeight}))`,
  36. //#endif
  37. //#ifdef H5
  38. height: `calc(100vh - (138px))`,
  39. //#endif
  40. }"
  41. :refresherLoad="true"
  42. :refresherEnabled="true"
  43. :refresherDefaultStyle="'none'"
  44. :refresherThreshold="44"
  45. :lowerThreshold="44"
  46. :refresherBackground="'#f5f6f7'"
  47. @load="load"
  48. @refresh="refresh"
  49. :data-theme="'theme-' + proxy.$settingStore.themeColor.name"
  50. >
  51. <template #default>
  52. <!-- <u-loading-page :loading="state.loading" fontSize="16" style="z-index: 99"></u-loading-page> -->
  53. <!-- start -->
  54. <view class="content-area" v-for="(el, index) in reportList" :key="index">
  55. <!-- <view class="flex mb10" @click="goContentDetails(el)">
  56. <img :src="el.avatar" class="content-area-center-avatarImg mr10" v-if="el.avatar" />
  57. <u-avatar
  58. v-if="!el.avatar"
  59. class="content-area-center-avatar mr10"
  60. :text="el.createBy.length > 2 ? el.createBy.slice(1, 3) : el.createBy"
  61. shape="square"
  62. size="35"
  63. fontSize="10"
  64. color="#ffffff"
  65. :bgColor="proxy.$settingStore.themeColor.color"
  66. ></u-avatar>
  67. <view>
  68. <view class="content-area-center-title font14 mb5">{{ el.createBy }}的日报</view>
  69. <view class="content-area-center-time font12">{{ proxy.$time.jktTimes(el.submitDate.replace("T", " ")) }}</view>
  70. </view>
  71. </view> -->
  72. <!-- <view class="content-area-center bg-white" v-else style="margin: 0 10px 10px; border-radius: 10px">
  73. <view class="content-area-top menu-item" style="float: right; padding: 10px 0px">
  74. <view class="content-area-top-time"> </view>
  75. <u-icon class="content-area-top-icon" name="more-dot-fill" size="20" color="#000" @click="moreClick(el)"></u-icon>
  76. </view>
  77. <view class="flex mb10" @click="goContentDetails(el)">
  78. <img :src="el.avatar" class="content-area-center-avatarImg mr10" v-if="el.avatar" />
  79. <u-avatar
  80. v-if="!el.avatar"
  81. class="content-area-center-avatar mr10"
  82. :text="el.createBy.length > 2 ? el.createBy.slice(1, 3) : el.createBy"
  83. shape="square"
  84. size="35"
  85. fontSize="10"
  86. color="#ffffff"
  87. :bgColor="proxy.$settingStore.themeColor.color"
  88. ></u-avatar>
  89. <view>
  90. <view class="content-area-center-title font14 mb5">{{ el.createBy }}的日报</view>
  91. <view class="content-area-center-time font12">{{ proxy.$time.jktTimes(el.submitDate.replace("T", " ")) }}</view>
  92. </view>
  93. </view>
  94. <view class="mb5" @click="goContentDetails(el)">
  95. <u-text :text="el.contentText.length >= 100 ? el.contentText.slice(0, 100) + '···' : el.contentText" color="#666666" size="14"></u-text>
  96. </view>
  97. <view class="flex" v-if="el.createBy != useStore.nickName" @click="goContentDetails(el)">
  98. <u-tag class="mr10" type="info" text="已读" size="mini" plain v-if="el.readFlag === 1" style="margin: 0 auto"></u-tag>
  99. <u-tag class="mr10" type="error" text="未读" size="mini" plain v-if="el.readFlag === 0" style="margin: 0 auto"></u-tag>
  100. <u-text text="全文" :color="proxy.$settingStore.themeColor.color" size="14"></u-text>
  101. </view>
  102. </view> -->
  103. </view>
  104. <!-- end -->
  105. </template>
  106. </oa-scroll>
  107. </template>
  108. <script setup>
  109. /*----------------------------------依赖引入-----------------------------------*/
  110. import { onLoad, onShow, onReady } from "@dcloudio/uni-app";
  111. import { ref, getCurrentInstance, reactive } from "vue";
  112. import { useRouter, useRoute } from "vue-router";
  113. /*----------------------------------接口引入-----------------------------------*/
  114. import { projectApi } from "@/api/business/project.js";
  115. // import dayjs from 'dayjs/esm/index'
  116. /*----------------------------------组件引入-----------------------------------*/
  117. /*----------------------------------store引入-----------------------------------*/
  118. import dayjs from "dayjs";
  119. const route = useRoute();
  120. /*----------------------------------公共方法引入-----------------------------------*/
  121. /*----------------------------------公共变量-----------------------------------*/
  122. const { proxy } = getCurrentInstance();
  123. const day = ref("")
  124. const statusNext = ref(false)//下一天按钮状态
  125. const currentDate = ref("")//当前日期
  126. const date = reactive({
  127. year:"",
  128. month:"",
  129. day:""
  130. })
  131. const activeList = reactive([
  132. {name:"按时提交",value:0},
  133. {name:"迟交",value:1},
  134. {name:"未提交",value:2},
  135. ])
  136. const query = ref({
  137. queryType:0,
  138. submitDate:dayjs().format("YYYY-MM-DD"),
  139. reportId:null,
  140. pageNum:1,
  141. pageSize:10,
  142. })
  143. /*----------------------------------变量声明-----------------------------------*/
  144. const statistics = ref({
  145. submitOnTime: 0, //按时提交
  146. submitLate: 0, //迟交
  147. notSubmitted:0, //未交
  148. })
  149. const loading = ref(false)
  150. const reportList =reactive([])
  151. const pageSize = ref(20)
  152. const current = ref(1)
  153. const total = ref(0)
  154. /**
  155. * @页面初始化
  156. */
  157. function init(id) {
  158. if(id){
  159. query.value.queryType = id
  160. }
  161. var time = dayjs().format("YYYY-MM-DD").split("-")
  162. currentDate.value = `${time[0]}${time[1]}${time[2]}`
  163. day.value = `${time[0]}年${time[1]}月${time[2]}日`
  164. date.value = {
  165. year:time[0],
  166. month:time[1],
  167. day:time[2]
  168. }
  169. getStatistics()
  170. getPageList()
  171. }
  172. //获取统计数据
  173. function getStatistics(time) {
  174. projectApi().pmTimeConfCount(time ? {submitDate:query.value.submitDate} : null ).then((res) => {
  175. statistics.value = res.data;
  176. });
  177. }
  178. //获取分页数据
  179. function getPageList() {
  180. projectApi().pmTimeConfPage(query.value).then((res) => {
  181. reportList.value = res.data.records[0];
  182. console.log(reportList.value)
  183. });
  184. }
  185. /** 日期选择*/
  186. function daySwitch(id){
  187. //获取前一天/后一天日期
  188. if(id == 1 && statusNext.value == false){
  189. return
  190. }
  191. const targetDate = dayjs(`${date.value.year}-${date.value.month}-${date.value.day}`);
  192. var previousDay;
  193. if(id == 0){
  194. previousDay = targetDate.subtract(1, 'day');
  195. }
  196. if(id == 1){
  197. previousDay = targetDate.subtract(-1, 'day');
  198. }
  199. var time = previousDay.format("YYYY-MM-DD").split("-")
  200. day.value = `${time[0]}年${time[1]}月${time[2]}日`
  201. date.value = {
  202. year:time[0],
  203. month:time[1],
  204. day:time[2]
  205. }
  206. query.value.submitDate = `${time[0]}-${time[1]}-${time[2]}`
  207. //获取下一天按钮状态
  208. var changeDate = `${date.value.year}${date.value.month}${date.value.day}`
  209. if(changeDate >= currentDate.value){
  210. statusNext.value = false
  211. }else{
  212. statusNext.value = true
  213. }
  214. getStatistics(query.value.submitDate)
  215. getPageList()
  216. }
  217. /**
  218. * @scrollView加载数据
  219. */
  220. function load() {
  221. query.value.current ++;
  222. init();
  223. }
  224. /**
  225. * @scrollView刷新数据
  226. */
  227. function refresh() {
  228. query.value.current = 1;
  229. init();
  230. }
  231. onLoad(() => {
  232. });
  233. onShow(() => {
  234. if(route?.query?.id){
  235. init(route.query.id)
  236. }else{
  237. init()
  238. }
  239. //调用系统主题颜色
  240. proxy.$settingStore.systemThemeColor([1]);
  241. });
  242. </script>
  243. <style lang="scss" scoped>
  244. :deep(.u-modal__content) {
  245. font-size: 14px;
  246. justify-content: left;
  247. }
  248. :deep(.list-container .content-area-top-name) {
  249. font-size: 16px !important;
  250. }
  251. </style>
  252. <style lang="scss" scoped>
  253. .timeSelect{
  254. width:100%;
  255. height:35px;
  256. background: #fff;
  257. >view{
  258. display: inline-block;
  259. height:35px;
  260. line-height: 35px;
  261. position: relative;
  262. .left{
  263. position: absolute;
  264. top:11px;
  265. right:20px;
  266. }
  267. .right{
  268. position: absolute;
  269. top:11px;
  270. left:20px;
  271. }
  272. }
  273. view:nth-child(1),view:nth-child(3){
  274. width:20%;
  275. }
  276. view:nth-child(2){
  277. width:60%;
  278. text{
  279. position: absolute;
  280. width:100%;
  281. text-align: center;
  282. }
  283. }
  284. }
  285. .container{
  286. width:100%;
  287. height:calc(100% - 20px);
  288. margin:10px 0;
  289. .statisticsSearchBox {
  290. width: 100%;
  291. vertical-align: middle;
  292. position: relative;
  293. display: flex;
  294. .uni-input-input {
  295. font-size: 12px !important;
  296. }
  297. :deep(.u-input__content__prefix-icon) {
  298. position: absolute;
  299. right: 8px;
  300. .uicon-search {
  301. font-size: 16px;
  302. }
  303. }
  304. }
  305. .u-input {
  306. display: inline-block;
  307. background: #fff;
  308. height: 34px;
  309. line-height: 34px;
  310. border-radius: 10px
  311. }
  312. .menu-list{
  313. width:100%;
  314. margin:0px 0 0 0px;
  315. padding:15px 10px;
  316. background: #ffffff;
  317. border-radius: 10px;
  318. .list-cell{
  319. display: flex;
  320. padding:0;
  321. .list{
  322. flex:1;
  323. text-align: center;
  324. position: relative;
  325. text{
  326. display: block;
  327. color:#999999;
  328. }
  329. text:nth-child(1){
  330. font-weight: 700;
  331. font-size: 14px;
  332. }
  333. text:nth-child(2){
  334. font-size: 12px;
  335. margin-top:10px;
  336. }
  337. }
  338. .list:nth-child(1),.list:nth-child(2){
  339. text:nth-child(3){
  340. width:1px;
  341. height:50%;
  342. position: absolute;
  343. top:25%;
  344. right:0;
  345. background: #E7E7E7;
  346. }
  347. }
  348. .active{
  349. text{
  350. color:#000;
  351. }
  352. .line{
  353. position: absolute;
  354. bottom:-36%;
  355. left:25%;
  356. width:50%;
  357. height:4px;
  358. border-radius: 2px;
  359. background: #000;
  360. }
  361. }
  362. }
  363. }
  364. }
  365. </style>