|
@@ -117,6 +117,8 @@ function createSearchBidBaseSchema(conf = {}) {
|
|
|
const showVip = conf.showVip || false
|
|
|
const infoType = conf.infoType
|
|
|
const inInjectBI = conf.inInjectBI || false
|
|
|
+ const isInApp = conf.isInApp || false
|
|
|
+ const isVip = conf.isVip || false
|
|
|
|
|
|
// 发布时间
|
|
|
const publishTimeExpandFree = {
|
|
@@ -190,11 +192,11 @@ function createSearchBidBaseSchema(conf = {}) {
|
|
|
},
|
|
|
hooks: {}
|
|
|
}
|
|
|
-
|
|
|
const SearchBidBaseSchema = [
|
|
|
{
|
|
|
key: 'publishTime',
|
|
|
label: '发布时间:',
|
|
|
+ labelHeight: isVip || !isInApp ? '22px': '32px',
|
|
|
defaultVal: 'thisyear',
|
|
|
_name: 'time',
|
|
|
_type: 'component',
|
|
@@ -203,6 +205,7 @@ function createSearchBidBaseSchema(conf = {}) {
|
|
|
{
|
|
|
key: 'selectType',
|
|
|
label: '搜索范围:',
|
|
|
+ labelHeight: !isVip || !isInApp ? '22px' : '32px',
|
|
|
defaultVal: ['content', 'title'],
|
|
|
_name: 'type',
|
|
|
_type: 'component',
|