Compare commits
No commits in common. "6329fc32517bace997552e3c1fbfedbac6c28b6a" and "b3b71364e02310e1e8700854487042e7b1aaebce" have entirely different histories.
6329fc3251
...
b3b71364e0
|
|
@ -49,11 +49,10 @@ export function submitRepairApplyApi(data) {
|
|||
})
|
||||
}
|
||||
// 用户下拉选
|
||||
export function getUserSelectApi(params) {
|
||||
export function getUserSelectApi() {
|
||||
return request({
|
||||
url: '/system/user/getUserByRoleList',
|
||||
method: 'get',
|
||||
params
|
||||
})
|
||||
}
|
||||
// 工程下拉选
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
"
|
||||
>
|
||||
|
|
|
|||
|
|
@ -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) => {
|
||||
|
|
|
|||
Reference in New Issue