4.12重庆测试问题修改
This commit is contained in:
parent
e1eb661fcb
commit
8bcb3be3a7
|
|
@ -28,7 +28,7 @@
|
|||
</view>
|
||||
<view v-show="fetch.code != ''">
|
||||
<span>设备编号</span>
|
||||
<h4>{{ fetch.code }}</h4>
|
||||
<h4>{{ fetch.code == null ? '暂无' : fetch.code }}</h4>
|
||||
</view>
|
||||
<view>
|
||||
<span>维修时间</span>
|
||||
|
|
|
|||
|
|
@ -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.specificationType}}</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>
|
||||
|
|
@ -47,11 +47,11 @@
|
|||
<text>全选</text>
|
||||
</view>
|
||||
<view style="display: flex;">
|
||||
<view class="total" style="margin-right: 15rpx;">
|
||||
<!-- <view class="total" style="margin-right: 15rpx;">
|
||||
<view class="bill" @click="bindCode">
|
||||
<text>绑定</text>
|
||||
</view>
|
||||
</view>
|
||||
</view> -->
|
||||
<view class="total">
|
||||
<view class="bill" @click="finishCart">
|
||||
<text>审核</text>
|
||||
|
|
|
|||
|
|
@ -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.specificationType}}</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>
|
||||
|
|
@ -268,9 +268,9 @@
|
|||
res.data.data[i].checked = false
|
||||
}
|
||||
} */
|
||||
that.list = res.data.data.filter(item => {
|
||||
that.list = res.data.data/* .filter(item => {
|
||||
return item.maCode != null
|
||||
})
|
||||
}) */
|
||||
} else {
|
||||
uni.showToast({
|
||||
icon: 'none',
|
||||
|
|
|
|||
|
|
@ -77,11 +77,11 @@
|
|||
pic: '/static/newInStore.png',
|
||||
url: 'newInStore'
|
||||
},
|
||||
{
|
||||
/* {
|
||||
name: '退料入库',
|
||||
pic: '/static/backMaterialInStore.png',
|
||||
url: 'backMaterialInStore'
|
||||
},
|
||||
}, */
|
||||
{
|
||||
name: '修试入库',
|
||||
pic: '/static/repairTestInStore.png',
|
||||
|
|
|
|||
Loading…
Reference in New Issue