Browse Source

fix(contract): 添加电子签名失败时的错误提示

当电子签名接口返回非200状态码时,显示错误提示信息并终止流程
master
前端-胡立永 1 month ago
parent
commit
82c645593b
1 changed files with 9 additions and 0 deletions
  1. +9
    -0
      pages_order/contract/electronicSignature.vue

+ 9
- 0
pages_order/contract/electronicSignature.vue View File

@ -112,6 +112,15 @@
pageNo : parseInt(pageNo) + 1,
})
if(res.code != 200){
uni.showToast({
title: res.result || '签署失败',
icon:'none',
})
return
}
// uni.downloadFile({
// url : res.result,
// success : res => {


Loading…
Cancel
Save