|
@@ -162,6 +162,7 @@ import { useAppStore } from '~src/store'
|
|
import { useRouter } from 'vue-router'
|
|
import { useRouter } from 'vue-router'
|
|
import { getStoreValue, setStoreValue } from '~src/utils/storage'
|
|
import { getStoreValue, setStoreValue } from '~src/utils/storage'
|
|
import { arrToId, deepClone, formValidate, getArrValue, getObjValue, isNullES, isString } from 'js-fast-way'
|
|
import { arrToId, deepClone, formValidate, getArrValue, getObjValue, isNullES, isString } from 'js-fast-way'
|
|
|
|
+import { toPdfPage } from '~uti/btn-auth'
|
|
import { getDictionaryData } from '~uti/tools'
|
|
import { getDictionaryData } from '~uti/tools'
|
|
import { getErtractInfo } from '~api/other'
|
|
import { getErtractInfo } from '~api/other'
|
|
import mainApi from '~api/tentative/detect/commission'
|
|
import mainApi from '~api/tentative/detect/commission'
|
|
@@ -417,8 +418,12 @@ const delegateModalClose = () => {
|
|
|
|
|
|
|
|
|
|
//查看
|
|
//查看
|
|
-const rowView = (row) => {
|
|
|
|
- window.$message.warning('暂无接口')
|
|
|
|
|
|
+const rowView = ({ entrustPdf }) => {
|
|
|
|
+ if (isNullES(entrustPdf)) {
|
|
|
|
+ window.$message.warning('暂无数据')
|
|
|
|
+ return
|
|
|
|
+ }
|
|
|
|
+ toPdfPage(entrustPdf)
|
|
}
|
|
}
|
|
|
|
|
|
//表单数据
|
|
//表单数据
|