feat/task1-c-wallet
devil_gong 2018-12-25 13:47:39 +08:00
parent fb29c5cc4c
commit 17e19b2d5d
2 changed files with 4 additions and 4 deletions

View File

@ -48,9 +48,9 @@ class Email extends Common
$this->assign('nav_type', $type);
if($type == 'email')
{
return $this->fetch('Index');
return $this->fetch('index');
} else {
return $this->fetch('Message');
return $this->fetch('message');
}
}

View File

@ -48,9 +48,9 @@ class Sms extends Common
$this->assign('nav_type', $type);
if($type == 'sms')
{
return $this->fetch('Index');
return $this->fetch('index');
} else {
return $this->fetch('Message');
return $this->fetch('message');
}
}