|
|
@@ -994,13 +994,15 @@ const openDzfp = (row,typeFlag)=>{
|
|
|
const uploadZyFp=(row,typeFlag)=>{
|
|
|
row['typeFlag'] = typeFlag
|
|
|
let typeFlagStr = typeFlag == 3 ? '上传' : '作废'
|
|
|
- ElMessageBox.confirm("请确认是否"+typeFlagStr+"电子发票", {
|
|
|
+ ElMessageBox.prompt("备注", "提示", {
|
|
|
+ type: "warning",
|
|
|
+ confirmButtonText: "确定"+typeFlagStr,
|
|
|
cancelButtonText: "取消",
|
|
|
- confirmButtonText: "确定",
|
|
|
})
|
|
|
- .then(() => {
|
|
|
+ .then(({value}) => {
|
|
|
+ row['remark'] = value
|
|
|
queryPrintZyFpData(row).then(res=>{
|
|
|
- ElMessage.error(typeFlagStr+"电子发票成功!");
|
|
|
+ ElMessage.success(typeFlagStr+"电子发票成功!");
|
|
|
})
|
|
|
})
|
|
|
}
|