This commit is contained in:
2020-08-15 21:50:59 +08:00
parent 2184b686f5
commit 27da9c50ca
8 changed files with 27 additions and 203 deletions
+4 -9
View File
@@ -150,20 +150,15 @@ class Form extends Base {
public function outxls($form_id = '') {
$form = $this->model->where('id', $form_id)->find();
$attr = $this->Fattr->where('form_id', $form_id)->where('is_show', 1)->select();
$attr = FormAttr::where('form_id', $form_id)->where('is_show', 1)->select();
foreach ($attr as $key => $value) {
$title[$value['name']] = $value['title'];
}
$data[] = $title;
$res = M($form['name'], 'form')->order('id desc')->select();
$data = $list = $this->model->order('id desc')->select();
foreach ($res as $key => $value) {
$data[] = $value;
}
$out = new \com\Outxls($data, date('Y-m-d'));
$out->out();
$this->data['data'] = $data;
return $this->data;
}
/**