细节优化

feat/task1-c-wallet
gongfuxiang 2019-05-18 00:04:55 +08:00
parent 89345483cd
commit 9a129508d1
2 changed files with 5 additions and 3 deletions

View File

@ -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'));
}
// 商品列表

View File

@ -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;
}
}
/**