优化页面样式

This commit is contained in:
BianLzhaoMin 2024-06-11 10:17:33 +08:00
parent cd4679b92c
commit b57f5a4152
3 changed files with 13 additions and 4 deletions

View File

@ -175,6 +175,13 @@ export function backReceiveRecordWeb(data) {
})
}
export function backReceiveRecordWebPt(data) {
return request({
url: 'base/backReceive/backReceiveRecordWebPt ',
method: 'post',
data: data
})
}
// 退料接收 数量接收
export function setNumBack(data) {

View File

@ -246,9 +246,9 @@
width="1200px"
append-to-body
>
<div style="margin-left: 40px; margin-bottom: 10px"
<!-- <div style="margin-left: 40px; margin-bottom: 10px"
>退料数量{{ returnNum }}</div
>
> -->
<el-form
:model="codeQuery"
ref="codeQuery"
@ -495,9 +495,9 @@
</div>
<div v-else>
<div style="margin-left: 40px; margin-bottom: 10px"
<!-- <div style="margin-left: 40px; margin-bottom: 10px"
>退料数量{{ returnNum }}</div
>
> -->
<el-row :gutter="10" class="mb8" v-if="!dialogIsView">
<el-col :span="1.5">
<el-button

View File

@ -771,9 +771,11 @@ export default {
/** 查询用户列表--库管员,维修员 */
getUserList() {
getMaUserList().then((response) => {
console.log(response, '库管员')
this.keeperList = response.data
})
getUserByRoleList().then((response) => {
console.log(response, '维修员')
this.repairUserList = response.data
})
},