|
@@ -388,20 +388,10 @@ export default {
|
|
|
authorizeAutomaticSignature: {
|
|
|
prompt: '是否授权自动签章?',
|
|
|
conditions: ({ row, index, column }) => {
|
|
|
- return row.fadadaIsAuth === 'YES' && row.fadadaAuthAutoStatus === 'NO'
|
|
|
+ return row.fadadaIsAuth === 'YES' && row.fadadaAuthAutoStatus === 'NO' && row.fadadaAuthAutoUrl
|
|
|
},
|
|
|
click: ({ row, index, column }) => {
|
|
|
- {
|
|
|
- /* companyCaAuthGetAuth({
|
|
|
- companyCaAuthId: row.companyCaAuthId
|
|
|
- }).then(res => {
|
|
|
- this.$message({
|
|
|
- message: '设置成功',
|
|
|
- type: 'success'
|
|
|
- })
|
|
|
- this.$refs?.pageRef?.refreshList()
|
|
|
- }) */
|
|
|
- }
|
|
|
+ window.open(row.fadadaAuthAutoUrl, '_blank')
|
|
|
}
|
|
|
}
|
|
|
})
|