|
@@ -12,8 +12,8 @@
|
12
|
12
|
|
13
|
13
|
<div class="screenBox flex" style="padding: 15px;s" v-loading="authLoading">
|
14
|
14
|
<Input ref="InputRef_text" title="关键词" placeholderTxt="关键词" @changeEvent="init()" @clearEvent="init()" />
|
15
|
|
- <!-- <Select ref="ideaManRef" :clearFlag="true" title="所属人员" selectWidth="160px" :optObj="{ k: 'id', la: 'username', val: 'id' }"
|
16
|
|
- @changeEvent="init()" @clearEvent="init()" :options="pageInfo.createrList" /> -->
|
|
15
|
+ <Select ref="ideaManRef" :clearFlag="true" title="所属人员" selectWidth="160px" :optObj="{ k: 'id', la: 'username', val: 'id' }"
|
|
16
|
+ @changeEvent="init()" @clearEvent="init()" :options="pageInfo.createrList" />
|
17
|
17
|
<!-- <Select ref="ctypeRef" :clearFlag="true" title="类型" selectWidth="160px" @changeEvent="init()" @clearEvent="init()"
|
18
|
18
|
:options="pageInfo.getTypeList" /> -->
|
19
|
19
|
</div>
|
|
@@ -77,7 +77,7 @@ const descolParams = reactive([
|
77
|
77
|
{ name: '账号名称', column: 'advertiser_name', minWidth: '120px'},
|
78
|
78
|
{ name: '账号ID', column: 'advertiser_id', cancleForMat: true },
|
79
|
79
|
// { name: '授权状态', column: 'is_valid', },
|
80
|
|
- // { name: '所属人员', column: 'owner_name', },
|
|
80
|
+ { name: '投手', column: 'promoter', },
|
81
|
81
|
{ name: '创建时间', column: 'created_at', minWidth: '100px'},
|
82
|
82
|
// { name: '操作', column: 'operate', slotFlag: true },
|
83
|
83
|
])
|
|
@@ -102,6 +102,7 @@ const authEvent = async () => {
|
102
|
102
|
}
|
103
|
103
|
|
104
|
104
|
const InputRef_text = ref<{ value: string }>()
|
|
105
|
+const ideaManRef = ref<{ value: string | number }>()
|
105
|
106
|
|
106
|
107
|
//账号列表
|
107
|
108
|
const init = async (page?: any, pageSize?: any) => {
|
|
@@ -109,6 +110,7 @@ const init = async (page?: any, pageSize?: any) => {
|
109
|
110
|
const paramsModel = reactive({
|
110
|
111
|
type: typeList.typeAc,
|
111
|
112
|
keyword: InputRef_text.value!.value,
|
|
113
|
+ promoter_id: ideaManRef.value!.value,
|
112
|
114
|
page: page ? page : 1,
|
113
|
115
|
page_size: pageSize ? pageSize : 20,
|
114
|
116
|
})
|