ProjectSituationofQMNew.vue 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537
  1. <template>
  2. <transition
  3. appear
  4. name="animate__animated animate__move"
  5. enter-active-class="animate__slideInRight"
  6. leave-active-class="animate__slideOutRight"
  7. >
  8. <div class="widget-ProjectSituationofQM">
  9. <div class="head">
  10. <div class="title">
  11. <div class="icon"></div>
  12. <span class="site-info">近期工程情况</span>
  13. <div class="dateRange">{{ beginTime }}~{{ endTime }}</div>
  14. </div>
  15. </div>
  16. <div class="content-info">
  17. <!---->
  18. <!-- <div class="projectContent">
  19. <div class="pc-topContent">
  20. <div class="ptc-item">
  21. <span>分部工程验收:</span><span>5<i>个</i></span>
  22. </div>
  23. <div class="ptc-item">
  24. <span>分项工程验收:</span><span>5<i>个</i></span>
  25. </div>
  26. </div>
  27. <div class="pc-bottomContent">
  28. <div class="pbc-item">
  29. <span>224<i>个</i></span> <span>完成功能性试验</span>
  30. </div>
  31. <div class="pbc-item">
  32. <span>224<i>个</i></span> <span>申请检验批</span>
  33. </div>
  34. <div class="pbc-item">
  35. <span>224<i>个</i></span> <span>完成检验批</span>
  36. </div>
  37. </div>
  38. </div> -->
  39. <!---->
  40. <div class="bottom3Content">
  41. <!---->
  42. <div class="bottom2Content">
  43. <!---->
  44. <div class="overallProjectProgress">
  45. <div class="oppContent">
  46. <div class="oppItem">
  47. <div class="oppItem-content">
  48. {{ weeklyInfo }}
  49. </div>
  50. </div>
  51. </div>
  52. </div>
  53. <!---->
  54. <div class="scanCodeNumber">
  55. <div class="title">
  56. <div class="icon"></div>
  57. <span class="item-name">质量验评记录</span>
  58. </div>
  59. <div class="recordsContent">
  60. <div class="records-item" v-for="(item, index) in recordsList" :key="index">
  61. <div class="ri-title">
  62. <span>{{ index + 1 }}、</span>
  63. <span>{{ item.create_time.split(' ')[0] || '' }}</span>
  64. <span>{{ `【${item.name}】` }}</span>
  65. <span class="qualityGrade" :class="{ disqualification: item.quality_grade_str == '不合格' }">{{
  66. item.quality_grade_str || '暂无'
  67. }}</span>
  68. </div>
  69. <div class="ri-content">{{ item.project_name }}-{{ item.name }}</div>
  70. </div>
  71. </div>
  72. </div>
  73. </div>
  74. <!---->
  75. <div class="constructionRecords">
  76. <div class="title">
  77. <div class="icon"></div>
  78. <span class="item-name">施工记录</span>
  79. <!-- <span class="item-type">(沟槽开挖)</span> -->
  80. </div>
  81. <div class="constructionRecordsContent">
  82. <el-carousel ref="picCarousel" indicator-position="none" :autoplay="true" @change="changeCarousel">
  83. <el-carousel-item v-for="(item, index) in pictureList" :key="index">
  84. <!-- <div class="consName">
  85. <div class="nameWrap">
  86. <div class="prjName">白洋冲片区排水管网综合治理工程{{ item.index }}</div>
  87. <div class="isQualified">合格</div>
  88. </div>
  89. </div> -->
  90. <div class="consInfo">
  91. <div class="infoWrap">
  92. <!-- <div class="pipeInfo">排水管网WS01-WS03</div> -->
  93. <div class="pipeInfo"></div>
  94. <div class="timeInfo">{{ item.createTime }}</div>
  95. </div>
  96. </div>
  97. <!-- <img class="consImg" src="@/views/groupPage/images/项目图册/质量现场.jpg" /> -->
  98. <el-image
  99. class="consImg"
  100. :src="item.img"
  101. :preview-src-list="pictureList.map((i) => i.img)"
  102. ></el-image>
  103. </el-carousel-item>
  104. </el-carousel>
  105. <div class="switchWidget">
  106. <div class="leftArrow" @click="clickPrev()"><i class="el-icon-caret-left"></i></div>
  107. <div class="middleNumber">
  108. <div class="activeNum">{{ currentActive }}</div>
  109. /{{ pictureList.length }}
  110. </div>
  111. <div class="rightArrow" @click="clickNext()"><i class="el-icon-caret-right"></i></div>
  112. </div>
  113. </div>
  114. </div>
  115. </div>
  116. </div>
  117. </div>
  118. </transition>
  119. </template>
  120. <script lang="ts">
  121. import moment from 'moment'
  122. import { Vue, Component, Prop, Watch } from 'vue-property-decorator'
  123. import PercentGaugeChart from '../../../components/GaugeChart/percentGaugeChart.vue'
  124. import SupAndConsNumChartVue from '../../../components/ComprehensiveChart/supAndConsNumChart.vue'
  125. import { getImgFiles, getEpcQbsDetailPage } from '../../../apis'
  126. import request from '@/utils/request'
  127. //近期工程情况-质量
  128. @Component({
  129. name: 'ProjectSituationofQM',
  130. components: { PercentGaugeChart, SupAndConsNumChartVue }
  131. })
  132. export default class ProjectSituationofQM extends Vue {
  133. @Prop({ type: Object, default: () => {} }) dataInfo!: any
  134. beginTime = moment(new Date().setDate(new Date().getDate() - 6)).format('YYYY.MM.DD')
  135. endTime = moment(new Date()).format('YYYY.MM.DD')
  136. // beginTime = null
  137. // endTime = null
  138. pictureList: Array<any> = []
  139. currentActive = 1
  140. weeklyInfo = ''
  141. recordsList = []
  142. clickPrev() {
  143. ;(this.$refs['picCarousel'] as any).prev()
  144. }
  145. clickNext() {
  146. ;(this.$refs['picCarousel'] as any).next()
  147. }
  148. changeCarousel(active, prev) {
  149. this.currentActive = active + 1
  150. }
  151. get projectCode() {
  152. return this.$store.state.bigScreen.currentProjectCode
  153. }
  154. @Watch('dataInfo')
  155. onChangMehod() {
  156. this.getPageData()
  157. }
  158. mounted() {
  159. this.getImgData()
  160. }
  161. async getPageData() {
  162. if (!this.dataInfo) return
  163. const { start_date, end_date, quality_content } = this.dataInfo || {}
  164. // this.beginTime = start_date.split(' ')[0]
  165. // this.endTime = end_date.split(' ')[0]
  166. this.weeklyInfo = quality_content
  167. const res = await getEpcQbsDetailPage({ project_code: this.projectCode })
  168. let { code, result } = res
  169. if (code != 1) return
  170. result.records.sort((a, b) => {
  171. return b.create_time.localeCompare(a.create_time)
  172. })
  173. result.records = result.records.filter(
  174. (item) => moment(new Date()).diff(moment(item.create_time), 'days') < moment(new Date()).daysInMonth()
  175. )
  176. this.recordsList = result.records
  177. console.log('质量验评记录', this.recordsList)
  178. }
  179. async getImgData() {
  180. const res = await getImgFiles({ size: 999, imgType: 'tjfxzl', groupCode: this.projectCode, isShow: 1 })
  181. const { code, result } = res
  182. if (code != 1) return
  183. let list = []
  184. result.records.forEach((item) => {
  185. item.img =
  186. request.defaults.baseURL +
  187. 'base/file/loadImg' +
  188. '?remotePath=' +
  189. item.path +
  190. '&access_token=' +
  191. sessionStorage.getItem('token')
  192. list.push(item)
  193. })
  194. this.pictureList = list
  195. }
  196. }
  197. </script>
  198. <style lang='scss' scoped>
  199. .animate__slideInRight,
  200. .animate__slideOutRight {
  201. animation-duration: 3s; //动画持续时间
  202. animation-delay: 0s; //动画延迟时间
  203. }
  204. .widget-ProjectSituationofQM {
  205. z-index: 2;
  206. //position
  207. bottom: $size10 /* 10/192 */;
  208. margin-right: $size20 /* 20/192 */;
  209. right: 0;
  210. position: absolute;
  211. //size
  212. height: calc(100% - 0.557292rem /* 107/192 */);
  213. width: 2.083333rem /* 400/192 */;
  214. .head {
  215. height: 0.166667rem /* 32/192 */;
  216. width: 100%;
  217. background: linear-gradient(-90deg, rgba(43, 167, 255, 0.2) 0%, rgba(43, 167, 255, 0.08) 100%);
  218. font-family: Source Han Sans CN-HEAVY;
  219. .title {
  220. width: 100%;
  221. height: 100%;
  222. display: flex;
  223. font-weight: 400;
  224. align-items: center;
  225. .icon {
  226. height: 0.166667rem /* 32/192 */;
  227. width: 0.34375rem /* 66/192 */;
  228. background: url('~@/views/groupPage/images/模块图标/统计分析/工程情况.png') no-repeat center center;
  229. background-size: 100% 100%;
  230. }
  231. span {
  232. flex: 1;
  233. font-weight: bold;
  234. font-size: 0.083333rem /* 16/192 */;
  235. color: #ffffff;
  236. padding: 0.041667rem /* 8/192 */;
  237. background: linear-gradient(0deg, #9bd2fa 0%, #ffffff 100%);
  238. background-clip: text;
  239. -webkit-text-fill-color: transparent;
  240. }
  241. .dateRange {
  242. height: 0.0625rem /* 12/192 */;
  243. font-size: 0.072917rem /* 14/192 */;
  244. font-family: Source Han Sans CN;
  245. font-weight: 400;
  246. color: #ffffff;
  247. }
  248. }
  249. }
  250. .content-info {
  251. width: 100%;
  252. height: calc(100% - 0.166667rem);
  253. font-family: Source Han Sans CN;
  254. .projectContent {
  255. height: 0.755208rem /* 145/192 */;
  256. margin-top: 0.052083rem /* 10/192 */;
  257. width: 100%;
  258. display: flex;
  259. align-items: center;
  260. justify-content: center;
  261. flex-flow: column;
  262. background: rgba(6, 34, 57, 0.76);
  263. padding: 0 0.104167rem /* 20/192 */;
  264. font-size: 0.072917rem /* 14/192 */;
  265. font-weight: 400;
  266. color: #84bde5;
  267. .pc-topContent {
  268. height: 0.3125rem /* 60/192 */;
  269. width: 100%;
  270. display: flex;
  271. justify-content: space-between;
  272. position: relative;
  273. .ptc-item {
  274. display: flex;
  275. align-items: center;
  276. & span:nth-of-type(2) {
  277. font-size: 0.104167rem /* 20/192 */;
  278. font-family: Agency FB;
  279. font-weight: bold;
  280. color: #ffffff;
  281. background: linear-gradient(90deg, #1e9dff 0%, #01eae2 100%);
  282. background-clip: text;
  283. -webkit-text-fill-color: transparent;
  284. i {
  285. font-family: Source Han Sans CN-MEDIUM;
  286. font-size: 0.09375rem /* 18/192 */;
  287. }
  288. }
  289. }
  290. .ptc-item:last-child > span:nth-of-type(2) {
  291. background: linear-gradient(90deg, #fdb332 0%, #01eae2 100%);
  292. background-clip: text;
  293. -webkit-text-fill-color: transparent;
  294. }
  295. }
  296. .pc-topContent::before {
  297. content: '';
  298. position: absolute;
  299. margin: auto 0;
  300. bottom: 0;
  301. width: 100%;
  302. height: 0.005208rem /* 1/192 */;
  303. background: rgba(255, 255, 255, 0.24);
  304. }
  305. .pc-bottomContent {
  306. height: calc(100% - 0.3125rem /* 60/192 */);
  307. width: 100%;
  308. display: flex;
  309. justify-content: space-between;
  310. .pbc-item {
  311. display: flex;
  312. flex-flow: column;
  313. align-items: center;
  314. justify-content: center;
  315. & span:first-of-type {
  316. font-size: 0.083333rem /* 16/192 */;
  317. font-family: Agency FB;
  318. font-weight: bold;
  319. color: #ffffff;
  320. margin-bottom: 0.0625rem /* 12/192 */;
  321. i {
  322. font-family: Source Han Sans CN-HEAVY;
  323. font-size: 0.072917rem /* 14/192 */;
  324. }
  325. }
  326. }
  327. }
  328. }
  329. .title {
  330. width: 100%;
  331. display: flex;
  332. align-items: center;
  333. .icon {
  334. height: 0.072917rem /* 14/192 */;
  335. width: 0.078125rem /* 15/192 */;
  336. margin-right: 0.046875rem /* 9/192 */;
  337. background: url('~@/views/groupPage/images/三角.png') no-repeat center center;
  338. background-size: 100% 100%;
  339. }
  340. .item-name,
  341. .item-type {
  342. font-family: Source Han Sans CN;
  343. color: #0ea7ff;
  344. font-size: 0.072917rem /* 14/192 */;
  345. font-weight: 500;
  346. }
  347. .item-type {
  348. color: #89c3ec !important;
  349. }
  350. .symbol {
  351. margin-left: 0.052083rem /* 10/192 */;
  352. width: 0.208333rem /* 40/192 */;
  353. height: 0.104167rem /* 20/192 */;
  354. font-size: 0.072917rem /* 14/192 */;
  355. font-family: Source Han Sans CN;
  356. font-weight: 400;
  357. color: #ffffff;
  358. background: linear-gradient(90deg, #2188d3, #9c2bec);
  359. border-radius: 2px;
  360. display: flex;
  361. align-items: center;
  362. justify-content: center;
  363. }
  364. }
  365. .bottom3Content {
  366. height: 100%;
  367. // height: calc(100% - 0.807292rem /* 155/192 */);
  368. width: 100%;
  369. background: linear-gradient(0deg, rgba(14, 167, 255, 0.16) 0%, rgba(14, 167, 255, 0) 100%);
  370. }
  371. .overallProjectProgress {
  372. margin-top: 0.052083rem /* 10/192 */;
  373. width: 100%;
  374. height: calc(100% - 1.380208rem /* 265/192 */);
  375. .oppContent {
  376. width: 100%;
  377. height: 100%;
  378. background: rgba(6, 34, 57, 0.76);
  379. overflow: auto;
  380. .oppItem {
  381. width: 100%;
  382. padding: 0.052083rem /* 10/192 */;
  383. color: #feffff;
  384. font-family: Source Han Sans CN;
  385. font-size: 0.072917rem /* 14/192 */;
  386. .oppItem-title {
  387. color: #17aaff;
  388. }
  389. .oppItem-content {
  390. // padding: 0.026042rem /* 5/192 */ 0;
  391. line-height: 0.114583rem /* 22/192 */;
  392. }
  393. }
  394. }
  395. }
  396. .scanCodeNumber {
  397. margin-top: 0.052083rem /* 10/192 */;
  398. width: 100%;
  399. height: 1.25rem /* 240/192 */;
  400. .recordsContent {
  401. margin-top: 0.052083rem /* 10/192 */;
  402. height: calc(100% - 0.125rem /* 24/192 */);
  403. width: 100%;
  404. background: rgba(6, 34, 57, 0.76);
  405. overflow-y: auto;
  406. .records-item {
  407. width: 100%;
  408. display: flex;
  409. flex-flow: column;
  410. padding: 0.052083rem /* 10/192 */;
  411. .ri-title {
  412. width: 100%;
  413. font-size: 0.072917rem /* 14/192 */;
  414. font-family: Source Han Sans CN;
  415. font-weight: 400;
  416. color: #feffff;
  417. line-height: 0.09375rem /* 18/192 */;
  418. & span:first-of-type {
  419. font-family: Source Han Sans CN-Medium;
  420. color: #16aaff;
  421. }
  422. .qualityGrade {
  423. display: inline-block;
  424. min-width: 0.166667rem /* 32/192 */;
  425. height: 0.09375rem /* 18/192 */;
  426. background: linear-gradient(-90deg, #09be78, #069161);
  427. border-radius: 2px;
  428. }
  429. .disqualification {
  430. background: linear-gradient(-90deg, #e95555, #f22840);
  431. }
  432. }
  433. .ri-content {
  434. margin-top: 0.026042rem /* 5/192 */;
  435. width: 100%;
  436. font-size: 0.072917rem /* 14/192 */;
  437. font-family: Source Han Sans CN;
  438. font-weight: 400;
  439. color: #84bde5;
  440. padding: 0 0.104167rem /* 20/192 */;
  441. line-height: 0.09375rem /* 18/192 */;
  442. }
  443. }
  444. }
  445. }
  446. .bottom2Content {
  447. width: 100%;
  448. height: calc(100% - 1.40625rem /* 270/192 */);
  449. overflow: auto;
  450. }
  451. .constructionRecords {
  452. margin-top: 0.052083rem /* 10/192 */;
  453. width: 100%;
  454. height: 1.354167rem /* 260/192 */;
  455. .constructionRecordsContent {
  456. width: 100%;
  457. height: calc(100% - 0.072917rem /* 14/192 */);
  458. display: flex;
  459. flex-flow: column;
  460. align-items: center;
  461. justify-content: flex-end;
  462. .el-carousel {
  463. width: 90%;
  464. height: 80%;
  465. /deep/ .el-carousel__container {
  466. height: 100% !important;
  467. }
  468. .consImg {
  469. height: 100%;
  470. width: 100%;
  471. }
  472. .consName,
  473. .consInfo {
  474. position: absolute;
  475. background: rgba(0, 0, 0, 0.4);
  476. width: 100%;
  477. height: 0.177083rem /* 34/192 */;
  478. line-height: 0.177083rem /* 34/192 */;
  479. font-size: 0.072917rem /* 14/192 */;
  480. font-family: Source Han Sans CN;
  481. font-weight: 500;
  482. color: #ffffff;
  483. }
  484. .consName {
  485. top: 0;
  486. }
  487. .consInfo {
  488. bottom: 0;
  489. z-index: 999;
  490. }
  491. .nameWrap {
  492. display: flex;
  493. align-items: center;
  494. justify-content: space-between;
  495. .isQualified {
  496. width: 0.322917rem /* 62/192 */;
  497. text-align: center;
  498. background: rgba(13, 162, 100, 0.9);
  499. border-radius: 0px 0px 0px 30px;
  500. }
  501. }
  502. .infoWrap {
  503. display: flex;
  504. align-items: center;
  505. justify-content: space-between;
  506. }
  507. }
  508. .switchWidget {
  509. display: flex;
  510. align-items: center;
  511. justify-content: space-between;
  512. width: 0.557292rem /* 107/192 */;
  513. color: rgba(137, 195, 236, 1);
  514. height: 0.072917rem /* 14/192 */;
  515. margin: 0.052083rem /* 10/192 */;
  516. .leftArrow,
  517. .rightArrow {
  518. font-size: 0.072917rem /* 14/192 */;
  519. cursor: pointer;
  520. }
  521. .middleNumber {
  522. display: flex;
  523. .activeNum {
  524. color: #2ba7ff;
  525. }
  526. }
  527. }
  528. }
  529. }
  530. }
  531. }
  532. </style>