surveyHistory.vue 357 B

1234567891011121314151617181920
  1. <template>
  2. <web-view :src="url"></web-view>
  3. </template>
  4. <script>
  5. import { h5BaseUrl } from "@/utils/config";
  6. export default {
  7. data() {
  8. return {
  9. url: "",
  10. };
  11. },
  12. onLoad() {
  13. const token = this.$store.state.user.token;
  14. this.url = `${h5BaseUrl}/hzyb/surveyHistory?token=${token}#wechat_redirect`;
  15. },
  16. };
  17. </script>
  18. <style></style>