|
@@ -1,6 +1,6 @@
|
|
|
<template>
|
|
|
<div class="app-container">
|
|
|
- <search-form/>
|
|
|
+ <search-form @change="searchHandle2"/>
|
|
|
<table-list
|
|
|
:listLoading="listLoading"
|
|
|
:data="tableData2"
|
|
@@ -59,6 +59,7 @@ export default {
|
|
|
if (query.t == 2) {
|
|
|
this.listConfig = {
|
|
|
rows: [
|
|
|
+ { label: '签到时间', prop: 'sign_at' },
|
|
|
{ label: '公司/门店', prop: 'info1' },
|
|
|
{ label: '名字', prop: 'info2' },
|
|
|
{ label: '电话', prop: 'info3' },
|
|
@@ -69,6 +70,7 @@ export default {
|
|
|
} else {
|
|
|
this.listConfig = {
|
|
|
rows: [
|
|
|
+ { label: '签到时间', prop: 'sign_at' },
|
|
|
{ label: '抖音名', prop: 'info1' },
|
|
|
{ label: '抖音账号', prop: 'info2' },
|
|
|
{ label: '姓名', prop: 'info3' },
|
|
@@ -109,6 +111,11 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ searchHandle2 (params) {
|
|
|
+ // console.log(params)
|
|
|
+ this.searchForm = {...this.searchForm, ...params}
|
|
|
+ this.fetchData()
|
|
|
+ },
|
|
|
delHandle (row) {
|
|
|
const msgHtml = `确定要删除此字典吗?`
|
|
|
this.$msg(msgHtml, 'confirm', ()=> {
|