配件领用
This commit is contained in:
parent
f34cd6063b
commit
21952c3eef
|
|
@ -93,16 +93,16 @@
|
||||||
</uni-col>
|
</uni-col>
|
||||||
</uni-row>
|
</uni-row>
|
||||||
<scroll-view scroll-y class="scroll-container">
|
<scroll-view scroll-y class="scroll-container">
|
||||||
<uni-table border stripe emptyText="暂无更多数据" >
|
<uni-table border stripe emptyText="暂无更多数据" style="width: 100%">
|
||||||
<!-- 表头行 -->
|
<!-- 表头行 -->
|
||||||
<uni-tr>
|
<uni-tr>
|
||||||
<uni-th style="font-size: 20rpx;" width="40px" align="center" >序号</uni-th>
|
<uni-th style="font-size: 20rpx;" width="40px" align="center" >序号</uni-th>
|
||||||
<uni-th style="font-size: 20rpx;" width="50px" align="center">机具类型</uni-th>
|
<uni-th style="font-size: 20rpx;" width="50px" align="center">机具类型</uni-th>
|
||||||
<uni-th style="font-size: 20rpx;" width="50px" align="center">配件名称</uni-th>
|
<uni-th style="font-size: 20rpx;" width="45px" align="center">配件名称</uni-th>
|
||||||
<uni-th style="font-size: 20rpx;" width="50px" align="center">规格型号</uni-th>
|
<uni-th style="font-size: 20rpx;" width="45px" align="center">规格型号</uni-th>
|
||||||
<uni-th style="font-size: 20rpx;" width="80px" align="center">预领数量</uni-th>
|
<uni-th style="font-size: 20rpx;" width="65px" align="center">预领数量</uni-th>
|
||||||
<uni-th style="font-size: 20rpx;" width="40px" align="center">库存</uni-th>
|
<uni-th style="font-size: 20rpx;" width="40px" align="center">库存</uni-th>
|
||||||
<uni-th style="font-size: 20rpx;" width="50px" align="center">操作</uni-th>
|
<uni-th style="font-size: 20rpx;" width="40px" align="center">操作</uni-th>
|
||||||
</uni-tr>
|
</uni-tr>
|
||||||
<!-- 表格数据行 -->
|
<!-- 表格数据行 -->
|
||||||
<uni-tr v-for="(item,index) in partList" :key="index">
|
<uni-tr v-for="(item,index) in partList" :key="index">
|
||||||
|
|
@ -116,7 +116,7 @@
|
||||||
<uni-td style="font-size: 20rpx;text-align: center;">{{item.storageNum}}</uni-td>
|
<uni-td style="font-size: 20rpx;text-align: center;">{{item.storageNum}}</uni-td>
|
||||||
<uni-td style="font-size: 20rpx;text-align: center;">
|
<uni-td style="font-size: 20rpx;text-align: center;">
|
||||||
<view>
|
<view>
|
||||||
<uni-icons type="trash-filled" size="20" style="color: red;margin-left:10px;" @click="delRow(index)"></uni-icons>
|
<uni-icons type="trash-filled" size="20" style="color: red;" @click="delRow(index)"></uni-icons>
|
||||||
</view>
|
</view>
|
||||||
</uni-td>
|
</uni-td>
|
||||||
</uni-tr>
|
</uni-tr>
|
||||||
|
|
@ -380,7 +380,8 @@ onLoad(() => {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
// padding: 5rpx;
|
// padding: 5rpx;
|
||||||
height: 50vh;
|
height: 50vh;
|
||||||
margin: 20rpx auto;
|
// margin: 20rpx auto;
|
||||||
|
font-size: 11px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* 针对Web平台 */
|
/* 针对Web平台 */
|
||||||
|
|
@ -405,4 +406,7 @@ onLoad(() => {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
/* #endif */
|
/* #endif */
|
||||||
|
.uni-table-td {
|
||||||
|
padding: 8px 2px !important;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue