jiaxing.zhou

fix(customerConfig): 修改签名方式判断逻辑

- 将 isCipherMachine 计算属性中的判断条件从 'OTHERS' 修改为 'PUBLIC_SERVICE'
- 这个修改确保了正确的签名方式被识别和处理
......@@ -548,7 +548,7 @@ export default {
},
computed: {
isCipherMachine() {
return this.formData.methodOfSignature === 'OTHERS';
return this.formData.methodOfSignature === 'PUBLIC_SERVICE';
}
},
......