-
+
- 维修审核列表
+ {{ tipTitle }}列表
@@ -90,6 +90,7 @@ export default {
components: { GoBack },
data() {
return {
+ tipTitle: '',
routerParams: {},
isLoading: false,
queryParams: {
@@ -135,13 +136,15 @@ export default {
created() {
this.routerParams = this.$route.query
const title = this.routerParams.isView ? '维修查看' : '列表查看'
+ this.tipTitle = this.$route.query.isApply ? '维修申请' : '维修审核'
this.queryParams.id = this.routerParams.applyId || ''
this.$tab.updatePage(Object.assign({}, this.$route, { title }))
this.getList()
},
methods: {
goBack() {
- this.$router.push({ path: '/equipmentRepair/repairAuditList' })
+ // this.$router.push({ path: '/equipmentRepair/repairAuditList' })
+ this.$router.back()
},
async getList() {
this.isLoading = true