| | |
| | | <script> |
| | | |
| | | |
| | | import textBox from "@/components/textBox/index.vue"; |
| | | export default { |
| | | components: { |
| | | textBox |
| | | }, |
| | | |
| | | async created() { |
| | | const _this = this; |
| | | |
| | | await uni.request({ |
| | | url: _this.$webHost+'/api/v2/auth/qxgIosUnionLogin?phone='+_this.$util.getUserInfo().phone, |
| | | data:{ |
| | |
| | | success:function (info){ |
| | | _this.memberPeriodConfigInfo = info.data.data; |
| | | uni.setStorageSync('memberPeriodConfigInfo',_this.memberPeriodConfigInfo) |
| | | _this.showTextBox = true; |
| | | _this.$nextTick(() => { |
| | | _this.$refs.textBox && _this.$refs.textBox.open() |
| | | }) |
| | | } |
| | | }) |
| | | } |
| | |
| | | qxgLogin:{}, |
| | | protocolChecked: [0], |
| | | isAgree: false, |
| | | showTextBox: false, |
| | | tm: null, |
| | | time:null, |
| | | text:10, |
| | |
| | | } |
| | | } |
| | | }, |
| | | |
| | | methods: { |
| | | goHome(){ |
| | | uni.switchTab({ |
| | |
| | | |
| | | </view> |
| | | </view> |
| | | <textBox v-if="showTextBox" ref="textBox" :code="memberPeriodConfigInfo.protocolCode" :title="memberPeriodConfigInfo.protocolName"></textBox> |
| | | </view> |
| | | </template> |
| | | |