|
|
@@ -1,11 +1,10 @@
|
|
|
export default class DealSeoData {
|
|
|
- constructor({ $axios, req, app, redirect, error, ...other }) {
|
|
|
+ constructor({ $axios, req, app, redirect, error}) {
|
|
|
this.$axios = $axios
|
|
|
this.req = req
|
|
|
this.app = app
|
|
|
this.redirect = redirect
|
|
|
this.error = error
|
|
|
- this.other = other
|
|
|
this.selected = {
|
|
|
city: 0,
|
|
|
industry: 0,
|
|
|
@@ -62,10 +61,8 @@ export default class DealSeoData {
|
|
|
})
|
|
|
console.log("***urlCheck", urlCheck)
|
|
|
console.log("***list", list.join(""))
|
|
|
- console.log("***other", Object.keys(this.other))
|
|
|
if (urlCheck !== list.join("")) {
|
|
|
this.error(404)
|
|
|
-
|
|
|
return
|
|
|
}
|
|
|
|