|
@ -203,6 +203,7 @@ import { requestPost } from "@/js/dai/request"; |
|
|
import { Toast } from "mint-ui"; |
|
|
import { Toast } from "mint-ui"; |
|
|
import { MessageBox } from 'mint-ui'; |
|
|
import { MessageBox } from 'mint-ui'; |
|
|
import { Loading } from 'element-ui' // 引入Loading服务 |
|
|
import { Loading } from 'element-ui' // 引入Loading服务 |
|
|
|
|
|
import { messages } from '@/i18n' |
|
|
|
|
|
|
|
|
let loading // 加载动画 |
|
|
let loading // 加载动画 |
|
|
export default { |
|
|
export default { |
|
@ -308,19 +309,23 @@ export default { |
|
|
computed: { |
|
|
computed: { |
|
|
|
|
|
|
|
|
}, |
|
|
}, |
|
|
created () { }, |
|
|
|
|
|
mounted () { |
|
|
created () { |
|
|
console.log(this.$route) |
|
|
console.log(this.$route) |
|
|
|
|
|
|
|
|
this.shequId = this.$route.params.id |
|
|
this.shequId = this.$route.params.id |
|
|
this.customerId = this.$route.query.customerId |
|
|
this.customerId = this.$route.query.customerId |
|
|
this.shequName = this.$route.query.name |
|
|
this.shequName = this.$route.query.name |
|
|
|
|
|
document.title = this.shequName |
|
|
|
|
|
}, |
|
|
|
|
|
mounted () { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
let envShow = process.env.VUE_APP_NODE_ENV |
|
|
let envShow = process.env.VUE_APP_NODE_ENV |
|
|
console.log('环境', envShow) |
|
|
console.log('环境', envShow) |
|
|
|
|
|
|
|
|
// let internalShequId = ['1202807601961984002', '6e511da6816e53af4cda952365a26eb9',] |
|
|
let internalShequId = ['1202807601961984002', '6e511da6816e53af4cda952365a26eb9',] |
|
|
let internalShequId = ['1202807601961984002',] |
|
|
// let internalShequId = ['1202807601961984002',] |
|
|
// if (envShow === 'dev' || envShow === 'prod:sit') { // 开发环境 |
|
|
// if (envShow === 'dev' || envShow === 'prod:sit') { // 开发环境 |
|
|
// internalShequId = null |
|
|
// internalShequId = null |
|
|
// } else if (envShow === 'prod:uat') { // 体验 |
|
|
// } else if (envShow === 'prod:uat') { // 体验 |
|
@ -855,7 +860,10 @@ export default { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
}, |
|
|
|
|
|
beforeDestroy () { |
|
|
|
|
|
document.title = messages[val].brand.lg |
|
|
|
|
|
}, |
|
|
} |
|
|
} |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|