fix(customerConfig): 修改签名方式判断逻辑
- 将 isCipherMachine 计算属性中的判断条件从 'OTHERS' 修改为 'PUBLIC_SERVICE' - 这个修改确保了正确的签名方式被识别和处理
Showing
1 changed file
with
1 additions
and
1 deletions
| ... | @@ -548,7 +548,7 @@ export default { | ... | @@ -548,7 +548,7 @@ export default { |
| 548 | }, | 548 | }, |
| 549 | computed: { | 549 | computed: { |
| 550 | isCipherMachine() { | 550 | isCipherMachine() { |
| 551 | - return this.formData.methodOfSignature === 'OTHERS'; | 551 | + return this.formData.methodOfSignature === 'PUBLIC_SERVICE'; |
| 552 | } | 552 | } |
| 553 | }, | 553 | }, |
| 554 | 554 | ... | ... |
-
Please register or login to post a comment