import Api from "~/service/Api" import Utils from "~/utils" export default { async onCpsmsgpSel(){ let rtnmsg = await this.executeRule("cpsmsgp.sel") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpDel(){ let rtnmsg = await this.executeRule("cpsmsgp.del") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpDlpnl(){ let rtnmsg = await this.executeRule("cpsmsgp.dlpnl") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpTuichu(){ let rtnmsg = await this.executeRule("cpsmsgp.tuichu") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpCerbng(){ let rtnmsg = await this.executeRule("cpsmsgp.cerbng") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpBnkchg(){ let rtnmsg = await this.executeRule("cpsmsgp.bnkchg") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpYwtbtn(){ let rtnmsg = await this.executeRule("cpsmsgp.ywtbtn") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpMar(){ let rtnmsg = await this.executeRule("cpsmsgp.mar") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpYewbtn(){ let rtnmsg = await this.executeRule("cpsmsgp.yewbtn") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpXitbtn(){ let rtnmsg = await this.executeRule("cpsmsgp.xitbtn") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpBdqbtn(){ let rtnmsg = await this.executeRule("cpsmsgp.bdqbtn") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpActbtn(){ let rtnmsg = await this.executeRule("cpsmsgp.actbtn") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, async onCpsmsgpRtn(){ let rtnmsg = await this.executeRule("cpsmsgp.rtn") if(rtnmsg.respCode == SUCCESS) { //TODO 处理数据逻辑 } else { this.$notify.error({title: '错误',message: '服务请求失败!'}); } }, }