Event.js 1.78 KB
Newer Older
1 2 3 4
import Api from "~/service/Api"
import Utils from "~/utils"

export default {
5 6 7 8
    async onSerbut() {
        let rtnmsg = await this.executeRule("serbut")
        if (rtnmsg.respCode == SUCCESS) {
            //TODO 处理数据逻辑
9

10 11 12 13 14 15 16 17 18
        }
        else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    },
    async onButprt() {
        let rtnmsg = await this.executeRule("butprt")
        if (rtnmsg.respCode == SUCCESS) {
            //TODO 处理数据逻辑
19

20 21 22 23 24 25 26 27 28
        }
        else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    },
    async onDtlbut() {
        let rtnmsg = await this.executeRule("dtlbut")
        if (rtnmsg.respCode == SUCCESS) {
            //TODO 处理数据逻辑
29

30 31 32 33 34 35 36 37 38
        }
        else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    },
    async onExi() {
        let rtnmsg = await this.executeRule("exi")
        if (rtnmsg.respCode == SUCCESS) {
            //TODO 处理数据逻辑
39

40 41 42 43 44 45
        }
        else {
            this.$notify.error({ title: '错误', message: '服务请求失败!' });
        }
    },
    async handleSearch() {
taojinrui committed
46 47 48 49 50 51 52 53 54 55
        let rtnmsg = await this.executeRule("serbut")
                if(rtnmsg.respCode == SUCCESS)
                {
                    this.stmData.data = rtnmsg.data.cnystm.rows;

                }
                else
                {
                this.$notify.error({title: '错误',message: '服务请求失败!'});
                }
56 57
    },
    async handleReset() {
taojinrui committed
58 59 60 61 62 63 64
        this.model.cnytyp = ""
        this.model.ownref = ""
        this.model.frmdat = ""
        this.model.tildat = ""
        this.model.ownextkey = ""
        this.stmData.data = ""
    }
65
}