|
@ -265,6 +265,12 @@ import PromptText from '@/components/PromptText.vue'; |
|
|
|
|
|
|
|
|
export default { |
|
|
export default { |
|
|
name: 'siteList', |
|
|
name: 'siteList', |
|
|
|
|
|
props: { |
|
|
|
|
|
list_type: { |
|
|
|
|
|
type: String, |
|
|
|
|
|
default: 'check' |
|
|
|
|
|
}, |
|
|
|
|
|
}, |
|
|
components: { |
|
|
components: { |
|
|
GuipTable, |
|
|
GuipTable, |
|
|
GuipSelect, |
|
|
GuipSelect, |
|
@ -323,7 +329,7 @@ export default { |
|
|
} |
|
|
} |
|
|
}, |
|
|
}, |
|
|
mounted() { |
|
|
mounted() { |
|
|
this.pageTab = this.$route.query.list |
|
|
this.pageTab = this.list_type |
|
|
this.getOrderList() |
|
|
this.getOrderList() |
|
|
this.getConfig() |
|
|
this.getConfig() |
|
|
this.startTimer(); |
|
|
this.startTimer(); |
|
@ -454,7 +460,6 @@ export default { |
|
|
pagetab: this.pageTab, |
|
|
pagetab: this.pageTab, |
|
|
...params |
|
|
...params |
|
|
} |
|
|
} |
|
|
console.log(requestParams, 'requestParams==='); |
|
|
|
|
|
this.$http('POST', '/agentnew/ajax_get_check_order_list', requestParams).then(response => { |
|
|
this.$http('POST', '/agentnew/ajax_get_check_order_list', requestParams).then(response => { |
|
|
this.tableLoading = false |
|
|
this.tableLoading = false |
|
|
this.$nextTick(() => { |
|
|
this.$nextTick(() => { |
|
@ -708,12 +713,9 @@ export default { |
|
|
computed: { |
|
|
computed: { |
|
|
}, |
|
|
}, |
|
|
watch: { |
|
|
watch: { |
|
|
|
|
|
'$route'() { |
|
|
'$route.query'(newVal) { |
|
|
|
|
|
|
|
|
|
|
|
console.log('参数变化:', newVal); |
|
|
|
|
|
// 执行数据更新逻辑 |
|
|
// 执行数据更新逻辑 |
|
|
this.pageTab = newVal.list |
|
|
this.pageTab = this.list_type |
|
|
if (this.pageTab === 'check') { |
|
|
if (this.pageTab === 'check') { |
|
|
this.pageTitle = '查重订单' |
|
|
this.pageTitle = '查重订单' |
|
|
} else if (this.pageTab === 'ai') { |
|
|
} else if (this.pageTab === 'ai') { |
|
|