fix bug
This commit is contained in:
@ -214,7 +214,7 @@ export class SupplyManagementBulkComponent implements OnInit {
|
||||
},
|
||||
}
|
||||
};
|
||||
this.ui2 = { '*': { spanLabelFixed: 120, grid: { span: 24 } } };
|
||||
this.ui2 = { '*': { spanLabelFixed: 120, grid: { span: 16 } } };
|
||||
}
|
||||
/**
|
||||
* 初始化数据列表
|
||||
@ -303,22 +303,22 @@ export class SupplyManagementBulkComponent implements OnInit {
|
||||
{
|
||||
text: '货源审核',
|
||||
click: (_record) => this.audit(_record, 1),
|
||||
iif: item => item.auditStatus == 1,
|
||||
iif: item => item.resourceStatus == 1,
|
||||
},
|
||||
{
|
||||
text: '二维码 ',
|
||||
click: (_record) => this.assignedQrcode(_record),
|
||||
iif: item => item.auditStatus == 1 || item.auditStatus == 2,
|
||||
iif: item => item.resourceStatus == 1,
|
||||
},
|
||||
{
|
||||
text: '修改单价',
|
||||
click: (_record) => this.modification(_record),
|
||||
iif: item => item.auditStatus == 1 || item.auditStatus == 2,
|
||||
iif: item => item.resourceStatus == 1 ,
|
||||
},
|
||||
{
|
||||
text: '取消货源',
|
||||
click: (_record) => this.delOne(_record),
|
||||
iif: item => item.auditStatus == 1 || item.auditStatus == 2,
|
||||
iif: item => item.resourceStatus == 1,
|
||||
},
|
||||
{
|
||||
text: '再下一单',
|
||||
|
||||
@ -88,13 +88,13 @@ export class SupplyManagementVehicleComponent implements OnInit {
|
||||
maxLength: 50,
|
||||
ui: {
|
||||
placeholder: '请输入备注',
|
||||
widget: 'textarea'
|
||||
widget: 'textarea',
|
||||
}
|
||||
}
|
||||
},
|
||||
require: ['remarks']
|
||||
};
|
||||
this.ui2 = { '*': { spanLabelFixed: 120, grid: { span: 24 } } };
|
||||
this.ui2 = { '*': { spanLabelFixed: 120, grid: { span: 16 } } };
|
||||
}
|
||||
|
||||
add(): void {
|
||||
@ -540,7 +540,7 @@ export class SupplyManagementVehicleComponent implements OnInit {
|
||||
{
|
||||
text: '货源审核',
|
||||
click: _record => this.audit(_record, 1),
|
||||
iif: item => item.auditStatus === '1'
|
||||
iif: item => item.resourceStatus === '1'
|
||||
},
|
||||
{
|
||||
text: '修改货源',
|
||||
|
||||
Reference in New Issue
Block a user