getPk(); $row->getQuery()->where($pk, $row[$pk])->update(['weigh' => $row[$pk]]); } }); } public function getStatusList() { return ['1' => __('Status 1'), '2' => __('Status 2')]; } public function getWechatWapList() { return ['1' => __('Wechat_wap 1'), '2' => __('Wechat_wap 2')]; } public function getMessageList() { return ['1' => __('Message 1'), '2' => __('Message 2')]; } public function getSelfmailList() { return ['1' => __('Selfmail 1'), '2' => __('Selfmail 2')]; } public function getStatusTextAttr($value, $data) { $value = $value ? $value : (isset($data['status']) ? $data['status'] : ''); $list = $this->getStatusList(); return isset($list[$value]) ? $list[$value] : ''; } public function getWechatWapTextAttr($value, $data) { $value = $value ? $value : (isset($data['wechat_wap']) ? $data['wechat_wap'] : ''); $list = $this->getWechatWapList(); return isset($list[$value]) ? $list[$value] : ''; } public function getMessageTextAttr($value, $data) { $value = $value ? $value : (isset($data['message']) ? $data['message'] : ''); $list = $this->getMessageList(); return isset($list[$value]) ? $list[$value] : ''; } public function getSelfmailTextAttr($value, $data) { $value = $value ? $value : (isset($data['selfmail']) ? $data['selfmail'] : ''); $list = $this->getSelfmailList(); return isset($list[$value]) ? $list[$value] : ''; } public function getLogoImageAttr($value, $data) { if (!empty($value)) return cdnurl($value, true); } }