上传
This commit is contained in:
@@ -1,11 +1,15 @@
|
||||
<template>
|
||||
<ChartCard margin="30rpx 0 0 0" title="项目质量检查数">
|
||||
<view class="defect">
|
||||
<view class="defect" @click="router.push('/pages/quality/projectQuality/index')">
|
||||
<!-- <u-subsection :list="list" :current="current" @change="handleChange"></u-subsection> -->
|
||||
<view class="defect-main u-flex u-row-between">
|
||||
<view class="defect-box gb-rectified">
|
||||
<text class="defect-box-lab">项目质量检查数</text>
|
||||
<text class="defect-box-num u-margin-top-20">20</text>
|
||||
<text class="defect-box-num u-margin-top-20">{{ qualityProblemData?.ProjectProblemNum || 0 }}</text>
|
||||
</view>
|
||||
<view class="defect-box gb-rectified">
|
||||
<text class="defect-box-lab">项目质量未完成数</text>
|
||||
<text class="defect-box-num u-margin-top-20">{{ qualityProblemData?.ProjectProblemNotCompletedNum || 0 }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
@@ -14,7 +18,13 @@
|
||||
<script setup>
|
||||
import ChartCard from '@/components/chartCard.vue';
|
||||
import { ref, watch } from 'vue';
|
||||
|
||||
import {router} from '@/utils'
|
||||
defineProps({
|
||||
qualityProblemData: {
|
||||
type: Object,
|
||||
default: () => {}
|
||||
}
|
||||
});
|
||||
const current = ref(0);
|
||||
const list = ref([
|
||||
{
|
||||
@@ -40,7 +50,7 @@ const handleChange = () => {};
|
||||
}
|
||||
|
||||
&-box {
|
||||
width:100%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
||||
Reference in New Issue
Block a user