This commit is contained in:
2022-10-14 09:34:25 +08:00
parent cb123d08ce
commit 465fbbf429
5 changed files with 24 additions and 38 deletions

View File

@@ -117,19 +117,15 @@
/** 生产区域下拉框查询 */
async _queryProductArea () {
let res = await queryProductArea()
this.options = [...res.rows]
this.options = [...res.data]
},
/** 初始化查询 */
async _queryMaterialInfo () {
let area = ''
if (this.index !== '') {
area = this.options[this.index].value
}
let res = await queryMaterialInfo3(this.val1, this.val2, area)
res.rows.map(el => {
let res = await queryMaterialInfo3(this.val1, this.val2, this.index)
res.data.map(el => {
this.$set(el, 'checked', false)
})
this.dataList = [...res.rows]
this.dataList = [...res.data]
},
/** 呼叫载具 */
async _needVehicle () {
@@ -180,11 +176,11 @@
width 92rpx
.slide_new table td:nth-child(2), .slide_new table th:nth-child(2)
position sticky
left 92rpx
left 89rpx
width 92rpx
z-index 102
.slide_new table td:nth-child(3), .slide_new table th:nth-child(3)
position sticky
left 184rpx
left 176rpx
z-index 103
</style>