import Api from "~/service/Api" import Utils from "~/utils" export default { async onPtpmodSel(){ let rtnmsg = await this.executeRule("ptpmod.sel") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onOftpSer1(){ let rtnmsg = await this.executeRule("oftp.ser1") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onOftpClr(){ let rtnmsg = await this.executeRule("oftp.clr") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onOftpCalsub(){ let rtnmsg = await this.executeRule("oftp.calsub") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onOftpMankpa(){ let rtnmsg = await this.executeRule("oftp.mankpa") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onOftpBatchacc(){ let rtnmsg = await this.executeRule("oftp.batchacc") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onOftpPagechk(){ let rtnmsg = await this.executeRule("oftp.pagechk") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onOftpCalchk(){ let rtnmsg = await this.executeRule("oftp.calchk") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, }