|
|
@@ -134,3 +134,27 @@ export function copyLive(data) {
|
|
|
params: data
|
|
|
})
|
|
|
}
|
|
|
+
|
|
|
+// 查询公司list
|
|
|
+export function getCompanyDropList() {
|
|
|
+ return request({
|
|
|
+ url: '/live/live/getCompanyDropList',
|
|
|
+ method: 'get'
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 根据公司查询主体list
|
|
|
+export function getQwCorpList(companyId) {
|
|
|
+ return request({
|
|
|
+ url: '/live/live/getQwCorpList/' + companyId,
|
|
|
+ method: 'get'
|
|
|
+ })
|
|
|
+}
|
|
|
+// 根据主体条件查询标签信息
|
|
|
+export function getTagsListByCorpId(qwTagGroup) {
|
|
|
+ return request({
|
|
|
+ url: '/live/live/getTagsListByCorpId',
|
|
|
+ method: 'get',
|
|
|
+ params:qwTagGroup
|
|
|
+ })
|
|
|
+}
|