代码提交
This commit is contained in:
parent
d69a20e23a
commit
83ccfae7a1
|
|
@ -10,7 +10,7 @@
|
|||
/>
|
||||
</el-form-item>
|
||||
</template>
|
||||
|
||||
|
||||
<template slot="t_list" slot-scope="{ data }">
|
||||
<span class="jump" @click="handleTList(data)">查看</span>
|
||||
</template>
|
||||
|
|
@ -86,6 +86,7 @@ export default {
|
|||
name: 'RecordDetail2',
|
||||
query: {
|
||||
id: encryptWithSM4(row.id ?? '0'),
|
||||
proId: encryptWithSM4(row.proId ?? '0'),
|
||||
viewStatus: encryptWithSM4('accept'),
|
||||
auditStatus: encryptWithSM4(this.getStatusText2(row.auditStatus)),
|
||||
}
|
||||
|
|
@ -109,7 +110,7 @@ export default {
|
|||
this.row = row;
|
||||
this.isflag = true;
|
||||
},
|
||||
|
||||
|
||||
// 获取状态
|
||||
getStatusText(status) {
|
||||
switch (status) {
|
||||
|
|
|
|||
|
|
@ -226,7 +226,7 @@ export default {
|
|||
// 刷新数据
|
||||
async refreshData() {
|
||||
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) {
|
||||
res.data.transferFileDtos.map(item => {
|
||||
const newFile = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue