|
|
@@ -95,19 +95,23 @@
|
|
|
:datasource="detailData.detailList"
|
|
|
row-key="id"
|
|
|
>
|
|
|
+ <template v-slot:expectReceiveDate="scope">
|
|
|
+ <div v-if="scope.row.arrivalWay == 1">
|
|
|
+ {{ scope.row.expectReceiveDate }}
|
|
|
+ </div>
|
|
|
+ <div v-if="scope.row.arrivalWay == 2">
|
|
|
+ <el-link
|
|
|
+ type="primary"
|
|
|
+ :underline="false"
|
|
|
+ @click.native="handleMethod(scope.row)"
|
|
|
+ >
|
|
|
+ 查看分批时间
|
|
|
+ </el-link>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
<template v-slot:files="{ row }">
|
|
|
<fileMain v-model="row.files" type="view"></fileMain>
|
|
|
-<!-- <div v-if="row.files && row.files?.length">-->
|
|
|
-<!-- <el-link-->
|
|
|
-<!-- v-for="link in row.files"-->
|
|
|
-<!-- :key="link.id"-->
|
|
|
-<!-- type="primary"-->
|
|
|
-<!-- :underline="false"-->
|
|
|
-<!-- @click="downloadFile(link)"-->
|
|
|
-<!-- >-->
|
|
|
-<!-- {{ link.name }}</el-link-->
|
|
|
-<!-- >-->
|
|
|
-<!-- </div>-->
|
|
|
+
|
|
|
</template>
|
|
|
</ele-pro-table>
|
|
|
<timeDialog ref="timeDialogRef" :view="true"></timeDialog>
|