#### 1. 修改人人商城核銷(xiāo)碼有效時(shí)間 --- 文件位置 ``` /addons/ewei_shopv2/core/mobile/verifygoods/index.php ``` 修改 codeinvalidtime 的值,默認(rèn)有效時(shí)間是 1800秒(30分鐘) ```php $data = array('verifycode' => $verifycode, 'codeinvalidtime' => time() + 1800); ``` #### 2. 核銷(xiāo)碼失效時(shí)的提示文字修改 --- 文件位置 ``` /addons/ewei_shopv2/core/mobile/verify/verifygoods.php ``` 修改提示文字 ```php $this->message('核銷(xiāo)碼已失效,請(qǐng)退出訂單重新進(jìn)入,重新生成核銷(xiāo)碼!', '', 'error'); ```