$item){ $key = $item["key"]; $key = WechatAppTplMsg::getTplKey($key); $value = Option::getOption($key, $this->cx_mch_id); $item["value"] = $value; $list[$index] = $item; } return $list; } public function save() { if(!$this->validate()) return $this->getModelError(); foreach($this->template_ids as $key => $val){ $val = trim($val); $key = WechatAppTplMsg::getTplKey($key); Option::setOption($key, $val, $this->cx_mch_id); } return [ 'code' => 0, 'msg' => '保存成功' ]; } }