代码提交
This commit is contained in:
parent
d69a20e23a
commit
83ccfae7a1
|
|
@ -86,6 +86,7 @@ export default {
|
||||||
name: 'RecordDetail2',
|
name: 'RecordDetail2',
|
||||||
query: {
|
query: {
|
||||||
id: encryptWithSM4(row.id ?? '0'),
|
id: encryptWithSM4(row.id ?? '0'),
|
||||||
|
proId: encryptWithSM4(row.proId ?? '0'),
|
||||||
viewStatus: encryptWithSM4('accept'),
|
viewStatus: encryptWithSM4('accept'),
|
||||||
auditStatus: encryptWithSM4(this.getStatusText2(row.auditStatus)),
|
auditStatus: encryptWithSM4(this.getStatusText2(row.auditStatus)),
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -226,7 +226,7 @@ export default {
|
||||||
// 刷新数据
|
// 刷新数据
|
||||||
async refreshData() {
|
async refreshData() {
|
||||||
this.fileList = [];
|
this.fileList = [];
|
||||||
const res = await getTransferReceiceDetailApi({ id: this.id })
|
const res = await getTransferReceiceDetailApi({ id: this.id, proId: this.proId })
|
||||||
if (Array.isArray(res.data.transferFileDtos) && res.data.transferFileDtos.length > 0) {
|
if (Array.isArray(res.data.transferFileDtos) && res.data.transferFileDtos.length > 0) {
|
||||||
res.data.transferFileDtos.map(item => {
|
res.data.transferFileDtos.map(item => {
|
||||||
const newFile = {
|
const newFile = {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue