export const payState = { state: { ispay: false, }, setIsPay(data) { this.state.ispay = data }, getIsPay() { if (this.state.ispay == true) { return true } else { return false } } }