4.12重庆测试问题修改

This commit is contained in:
FrancisHu 2024-04-12 14:05:08 +08:00
parent e1eb661fcb
commit 8bcb3be3a7
4 changed files with 9 additions and 9 deletions

View File

@ -28,7 +28,7 @@
</view> </view>
<view v-show="fetch.code != ''"> <view v-show="fetch.code != ''">
<span>设备编号</span> <span>设备编号</span>
<h4>{{ fetch.code }}</h4> <h4>{{ fetch.code == null ? '暂无' : fetch.code }}</h4>
</view> </view>
<view> <view>
<span>维修时间</span> <span>维修时间</span>

View File

@ -15,7 +15,7 @@
<text><span style="padding-right: 20rpx; color: #a6a6a6;">类型名称</span>{{item.typeName}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">类型名称</span>{{item.typeName}}</text>
<text><span style="padding-right: 20rpx; color: #a6a6a6;">规格型号</span>{{item.specificationType}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">规格型号</span>{{item.specificationType}}</text>
<text><span style="padding-right: 20rpx; color: #a6a6a6;">待入库数量</span>{{item.checkNum}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">待入库数量</span>{{item.checkNum}}</text>
<text><span style="padding-right: 20rpx; color: #a6a6a6;">机具编号</span>{{item.maCode}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">机具编号</span>{{item.maCode == null ? '无' : item.maCode}}</text>
</view> </view>
</view> </view>
</view> </view>
@ -47,11 +47,11 @@
<text>全选</text> <text>全选</text>
</view> </view>
<view style="display: flex;"> <view style="display: flex;">
<view class="total" style="margin-right: 15rpx;"> <!-- <view class="total" style="margin-right: 15rpx;">
<view class="bill" @click="bindCode"> <view class="bill" @click="bindCode">
<text>绑定</text> <text>绑定</text>
</view> </view>
</view> </view> -->
<view class="total"> <view class="total">
<view class="bill" @click="finishCart"> <view class="bill" @click="finishCart">
<text>审核</text> <text>审核</text>

View File

@ -15,7 +15,7 @@
<text><span style="padding-right: 20rpx; color: #a6a6a6;">类型名称</span>{{item.typeName}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">类型名称</span>{{item.typeName}}</text>
<text><span style="padding-right: 20rpx; color: #a6a6a6;">规格型号</span>{{item.specificationType}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">规格型号</span>{{item.specificationType}}</text>
<text><span style="padding-right: 20rpx; color: #a6a6a6;">待入库数量</span>{{item.checkNum}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">待入库数量</span>{{item.checkNum}}</text>
<text><span style="padding-right: 20rpx; color: #a6a6a6;">机具编号</span>{{item.maCode}}</text> <text><span style="padding-right: 20rpx; color: #a6a6a6;">机具编号</span>{{item.maCode == null ? '无' : item.maCode}}</text>
</view> </view>
</view> </view>
</view> </view>
@ -268,9 +268,9 @@
res.data.data[i].checked = false res.data.data[i].checked = false
} }
} */ } */
that.list = res.data.data.filter(item => { that.list = res.data.data/* .filter(item => {
return item.maCode != null return item.maCode != null
}) }) */
} else { } else {
uni.showToast({ uni.showToast({
icon: 'none', icon: 'none',

View File

@ -77,11 +77,11 @@
pic: '/static/newInStore.png', pic: '/static/newInStore.png',
url: 'newInStore' url: 'newInStore'
}, },
{ /* {
name: '退料入库', name: '退料入库',
pic: '/static/backMaterialInStore.png', pic: '/static/backMaterialInStore.png',
url: 'backMaterialInStore' url: 'backMaterialInStore'
}, }, */
{ {
name: '修试入库', name: '修试入库',
pic: '/static/repairTestInStore.png', pic: '/static/repairTestInStore.png',