import Api from "~/service/Api" import Utils from "~/utils" export default { async onLmnpSel(){ let rtnmsg = await this.executeRule("lmnp.sel") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onLmnpClr(){ let rtnmsg = await this.executeRule("lmnp.clr") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onLmnpLimwar(){ let rtnmsg = await this.executeRule("lmnp.limwar") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onLmnpLimsel(){ let rtnmsg = await this.executeRule("lmnp.limsel") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onLmnpYuesel(){ let rtnmsg = await this.executeRule("lmnp.yuesel") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onLmnpQuemon(){ let rtnmsg = await this.executeRule("lmnp.quemon") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, }