问:

没有3c认证的瓷砖买了怎么办

答:
如果买了没有3C认证的瓷砖,可以从以下几个方面进行处理:
1. 保留购买凭证,向卖家询问该批瓷砖的质量报告、检测报告等资料,确认质量安全性。
2. 联系第三方检测机构,进行抽样检测,测试瓷砖的指标是否达到国家和行业标准。关键指标包括水吸收率、抗弯强度、耐酸碱度等。
3. 如果检测不达标,可以要求卖家更换货物,或商谈退货退款事宜。记得保留书面证据。
4. 如果已经使用,可以请专业检测机构进行本胎检测,看看瓷砖表面和内部结构是否存在安全隐患。
5. 使用期间,注意观察瓷砖的质量问题,如开裂、脱落、颜色落差等。一旦发现问题,停止使用并向卖家反馈。
6. 可以咨询业主委员会,看是否可以接受使用无认证瓷砖,或者必须更换。
7. 如果影响使用,可以换用其他eturn  false;
        }
        $this->session->unset_userdata('edit_id_cost_center');
        $this->data['cost_center'] = $this->costcenter_model->getById($id_cost_center);
        if (!$this->data['cost_center']) {
            $this->data['errors'][] = 'Cost Center tidak ditemukan';
            $this->session->set_flashdata('errors', $this->data['errors']);
            redirect('costcenter');
        }
        $this->data['page_title'] = 'Cost Center';
        $this->data['action']     = 'edit';
        $this->data['main_view']   = 'costcenter/form';
    $this->data['csv'] = TRUE;
        $this->load->view('main', $this->data);
    }
    public function validasi()
    {
        if (!$this->input->post('id')) {
            $this->session->set_flashdata('errors', ['Data Cost Center tidak ditemukan']);
            redirect('costcenter');
        }
        $this->form_validation->set_rules('id_cost_center_category', 'Cost Center Category', 'required');
        $this->form_validation->set_error_delimiters('<div>&sdot; ', '</div>');
        if ($this->form_validation->run() === FALSE) {
            $this->edit($this->input->post('id'));
        } else {
            $data = [
                'id_cost_center_category' => $this->input->post('id_cost_center_category'),
            ];
            $id = $this->input->post('id');
            $cost_center = $this->costcenter_model->getById($id);
            if ($cost_center->nama != $this->input->post('nama')) {
                $data['nama'] = $this->input->post('nama');
            }
            if ($this->costcenter_model->update($id, $data) === false) {
                $this->session->set_flashdata('errors', $this->costcenter_model->errors());
                redirect('costcenter/edit/' . $id);
            }  else {
                $this->session->set_flashdata('success', 'Data Cost Center berhasil disimpan');
                redirect('costcenter'); 
            }
        }
    }
     public function delete($id)
    {
        if (!$this->permission->hasPermission('delete_cost_center')) {
            $this->session->set_flashdata('error', 'You dont have permission');
            redirect('dashboard');
        }
        if (!$this->input->is_ajax_request()) {
            exit('No direct script access allowed');
        }
        if ($this->costcenter_model->delete($id)) {
            $this->session->set_flashdata('success', 'Data Cost Center berhasil dihapus');
        } else {
            $this->session->set_flashdata('errors', $this->category_model->errors());
        }
        echo json_encode(['status' => true]);
    }