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) } } } }