import Api from "~/service/Api"
import Utils from "~/utils"

export default {
    async onAcbpDet() {
        let rtnmsg = await this.executeRule("acbp.det")
        if (rtnmsg.respCode == SUCCESS) {
            //TODO 处理数据逻辑

        } else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    },
    async onRmbpDet() {
        let rtnmsg = await this.executeRule("rmbp.det")
        if (rtnmsg.respCode == SUCCESS) {
            //TODO 处理数据逻辑

        } else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    },
    async onBebpDet() {
        let rtnmsg = await this.executeRule("bebp.det")
        if (rtnmsg.respCode == SUCCESS) {
            //TODO 处理数据逻辑

        } else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    },
    onSeainf() {},
    onDetpButgetref() {},

}