vue2-client 1.2.12 → 1.2.15
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.
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -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,8 @@
|
|
|
274
278
|
},
|
|
275
279
|
mounted () {
|
|
276
280
|
if (!this.currUser) {
|
|
277
|
-
this.$router.
|
|
281
|
+
this.$router.replace('/login')
|
|
282
|
+
return
|
|
278
283
|
}
|
|
279
284
|
this.getCurrentUserPhone()
|
|
280
285
|
this.fixedQueryForm['t_uploader'] = this.currUser.ename
|