细节优化
parent
89345483cd
commit
9a129508d1
|
|
@ -50,7 +50,7 @@ class Service
|
|||
// 地区
|
||||
foreach($data['data'] as &$v)
|
||||
{
|
||||
$v['region_names'] = empty($v['region_show']) ? '' : implode('、', Db::name('Region')->where('id', 'in', explode('-', $v['region_show']))->column('name'));
|
||||
$v['region_names'] = (empty($v['region_show']) || $v['region_show'] == 'default') ? '' : implode('、', Db::name('Region')->where('id', 'in', explode('-', $v['region_show']))->column('name'));
|
||||
}
|
||||
|
||||
// 商品列表
|
||||
|
|
|
|||
|
|
@ -107,8 +107,10 @@
|
|||
top: -1px;
|
||||
left: -1px;
|
||||
}
|
||||
.my-content form.am-form .form-verify:hover a.form-verify-tips {
|
||||
display: block;
|
||||
@media only screen and (max-width:641px) {
|
||||
.my-content form.am-form .form-verify:hover a.form-verify-tips {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Reference in New Issue