| | |
| | | v-if="inspectionList.length > 0"> |
| | | <view v-for="(item, index) in inspectionList" |
| | | :key="index"> |
| | | <view class="inspection-item" |
| | | @click="viewDetail(item)"> |
| | | <view class="inspection-item"> |
| | | <view class="item-header"> |
| | | <view class="item-left"> |
| | | <!-- <view class="material-icon" |
| | |
| | | </view> |
| | | <view class="status-tags"> |
| | | <u-tag :type="getTagType(item.checkResult)" |
| | | v-if="item.checkResult!=null" |
| | | size="mini" |
| | | class="status-tag"> |
| | | {{ item.checkResult }} |
| | |
| | | |
| | | // 新增检验 |
| | | const addInspection = () => { |
| | | console.log("新增检验"); |
| | | uni.navigateTo({ |
| | | url: "/pages/qualityManagement/materialInspection/add", |
| | | }); |