vue2-client 1.2.13 → 1.2.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -229,9 +229,13 @@
229
229
  import { TicketDetailsViewApi } from '@vue2-client/services/api/TicketDetailsViewApi'
230
230
  import { logout } from '@/services/user'
231
231
  import { mapState } from 'vuex'
232
+ import XFormTable from '@vue2-client/base-client/components/common/XFormTable/XFormTable'
232
233
 
233
234
  export default {
234
235
  name: 'submitTicket',
236
+ components: {
237
+ XFormTable
238
+ },
235
239
  data () {
236
240
  return {
237
241
  // 查询配置文件名
@@ -274,7 +278,7 @@
274
278
  },
275
279
  mounted () {
276
280
  if (!this.currUser) {
277
- this.$router.push('/login')
281
+ this.$router.replace('/login')
278
282
  return
279
283
  }
280
284
  this.getCurrentUserPhone()