const modelPop = { template: `

{{title}}

{{text}}

{{bottom_text}}

`, props: { /* 弹窗状态 */ show: { type: Boolean, default: false }, title: { type: String, default: "领取成功" }, text: { type: String, default: "恭喜您,已经领取成功啦" }, status: { type: Number, default: 1 }, bottom_text: { type: String, default: "我知道了" } }, methods: { /* 关闭 */ colesFunction(type) { /* type 关闭方式 */ this.$emit("update:show", false) this.$emit("backfunction", type) } } }