const payPop = { template: `

128.00

选择支付方式

微信支付
支付宝支付
`, props: { /* 弹窗状态 */ show: { type: Object, default: false }, /* 支付方式 */ active: { type: Number, default: 1 }, /* 是否点击支付 */ pay: { type: Object, default: false } }, watch: { show: function (va) { if (!va) { this._events.setshow[0](va) } }, pay: function (va) { if (va) { this._events.payfunction[0](this.active) } } } }