Compare commits

..

No commits in common. "6329fc32517bace997552e3c1fbfedbac6c28b6a" and "b3b71364e02310e1e8700854487042e7b1aaebce" have entirely different histories.

3 changed files with 3 additions and 10 deletions

View File

@ -49,11 +49,10 @@ export function submitRepairApplyApi(data) {
})
}
// 用户下拉选
export function getUserSelectApi(params) {
export function getUserSelectApi() {
return request({
url: '/system/user/getUserByRoleList',
method: 'get',
params
})
}
// 工程下拉选

View File

@ -157,12 +157,6 @@
prop="preNum"
:show-overflow-tooltip="true"
/>
<el-table-column
label="已完成退料数量"
align="center"
prop="finishedBackNum"
:show-overflow-tooltip="true"
/>
<el-table-column
label="待退料数量"
align="center"
@ -236,7 +230,7 @@
@click="handleBackup(scope.row)"
v-if="
!isView &&
scope.row.num < scope.row.preNum - scope.row.finishedBackNum &&
scope.row.num < scope.row.preNum &&
(userId == scope.row.userId || userId == 1)
"
>

View File

@ -492,7 +492,7 @@ export default {
this.dynamicValidateFormTwo.premiumListTwo = []
this.addDomainTwo()
}
getUserSelectApi({ roleIds: [133] }).then((response) => {
getUserSelectApi().then((response) => {
this.userSelectList = response.data
})
getInfo().then((res) => {