// 信息提示窗口 Vue.component("tip-message-box", { props: ["code"], mounted: function () { let that = this Tea.action("/ui/showTip") .params({ code: this.code }) .success(function (resp) { that.visible = resp.data.visible }) .post() }, data: function () { return { visible: false } }, methods: { close: function () { this.visible = false Tea.action("/ui/hideTip") .params({ code: this.code }) .post() } }, template: `
` })