|
@@ -10,6 +10,7 @@
|
|
|
<script>
|
|
<script>
|
|
|
import appResult from "@/components/app-result";
|
|
import appResult from "@/components/app-result";
|
|
|
import { mapGetters, mapState } from 'vuex'
|
|
import { mapGetters, mapState } from 'vuex'
|
|
|
|
|
+import { getUser, wxLoginFn } from '@/utils/auth'
|
|
|
export default {
|
|
export default {
|
|
|
name: "BillingResult", // 开单结果
|
|
name: "BillingResult", // 开单结果
|
|
|
components: {
|
|
components: {
|
|
@@ -18,9 +19,12 @@ export default {
|
|
|
computed: {
|
|
computed: {
|
|
|
...mapGetters({ userInfo: "getUser"})
|
|
...mapGetters({ userInfo: "getUser"})
|
|
|
},
|
|
},
|
|
|
|
|
+ onShow() {
|
|
|
|
|
+ getUser(true)
|
|
|
|
|
+ },
|
|
|
methods: {
|
|
methods: {
|
|
|
back() {
|
|
back() {
|
|
|
- this.pageTo({url:'/admin/home/me', type: 4, queyr: {refresh: '1'}})
|
|
|
|
|
|
|
+ this.pageTo({url:'/admin/home/me', type: 4})
|
|
|
},
|
|
},
|
|
|
}
|
|
}
|
|
|
};
|
|
};
|