12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div class="pb_content2" style="background: #fff">
- <div class="pb_head">
- <van-icon
- name="arrow-left"
- color="#fff"
- class="pb_back"
- size="1.2rem"
- @click="goBack"
- />
- <span>创新</span>
- </div>
- <div class="pb_content_body"></div>
- </div>
- </template>
- <script>
- export default {
- data() {
- return {};
- },
- methods: {
- goBack() {
- this.$router.isBack = true;
- if (window.history.length <= 1) {
- this.$router.push({ path: "/" });
- return false;
- } else {
- this.$router.go(-1);
- }
- },
- },
- };
- </script>
- <style scoped>
- </style>
|