|
@@ -421,12 +421,16 @@ const delegateModalClose = () => {
|
|
|
|
|
|
|
|
|
//查看
|
|
|
-const rowView = ({ entrustPdf }) => {
|
|
|
- if (isNullES(entrustPdf)) {
|
|
|
- window.$message.warning('暂无数据')
|
|
|
+const rowView = ({ entrustEPdf, entrustPdf }) => {
|
|
|
+ if (isNullES(entrustPdf) && isNullES(entrustEPdf)) {
|
|
|
+ window.$message.warning('暂无PDF数据')
|
|
|
return
|
|
|
}
|
|
|
- toPdfPage(entrustPdf)
|
|
|
+ if (!isNullES(entrustEPdf)) {
|
|
|
+ toPdfPage(entrustEPdf)
|
|
|
+ } else if (!isNullES(entrustPdf)) {
|
|
|
+ toPdfPage(entrustPdf)
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
//表单数据
|