attribute.inc.php 460 B

12345678910111213141516171819202122232425
  1. <?php
  2. global $_GPC, $_W;
  3. $GLOBALS['frames'] = $this->getMainMenu();
  4. $list = pdo_getall('zhtc_goods_spec',array('uniacid' => $_W['uniacid']),array(),'','sort ASC');
  5. if($_GPC['id']){
  6. $res=pdo_delete('zhtc_goods_spec',array('id'=>$_GPC['id']));
  7. if($res){
  8. message('删除成功',$this->createWebUrl('attribute',array()),'success');
  9. }else{
  10. message('删除失败','','error');
  11. }
  12. }
  13. include $this->template('web/attribute');