HTML上做表單頁面上的開啟和凍結切換以及功能實現

WBOY
發布: 2016-07-25 08:50:18
原創
1543 人瀏覽過
新手献上的
  1. 证照信息
  2. ?>
  3. 唯一標識
  4. 卡的類型
  5. 持卡人姓名
  6. 卡片的餘額
  7. 銀行卡號
  8. 銀行卡號
  9. 電話
  10. 卡片的狀態
  11. 操作
  12. 啟動設定
  13. {$c.id}
  14. if($c['type']==1)
  15. {
  16. echo '企業卡';
  17. }
  18. ?>
  19. {$c.name}

  20. {$c.account}
  21. {$c.idcard}
  22. {$c.phone}
  23. if($c['status']==0)
  24. echo '凍結';
  25. if($c['status']==1)
  26. echo '啟用';
  27. ?>
  28. 修改 刪除
  29. 啟用/凍結
  • 複製程式碼
    1. /**
    2. * 聯名卡管理
    3. * @author shendoudou
    4. *
    5. */
    6. import ('@.Model.Platform.CommonModel');
    7. class IcbccardModel 擴充 Common Commonl {
    8. public function findAllCard(){
    9. $result = $this->select();
    10. if ($result === false)
    11. throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
    12. return $result;
    13. }
    14. public function findOneCard($id){
    15. $map['id']=$id;
    16. $result = $this->where ($map)-> ; find();
    17. if ($result === false)
    18. throw new DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
    19. return $result;
    20. }
    21. public function updateCard($id,$data){
    22. $map['id']=$id;
    23. $result = $this-> where($map)->save($data);
    24. if ($result === false)
    25. throw new DBException ( $this->getModelName (), $this->getDbError (), $this ->getLastSql () );
    26. return $result;
    27. }
    28. public function deleteCard($id){
    29. $map['id' ]=$id;
    30. $ result = $this->where($map)->delete();
    31. if ($result === false)
    32. throw new DBException ( $this->getModelName (), $this->getDbError ( ), $this->getLastSql () );
    33. return $result;
    34. }
    35. public function findStatusId($status){
    36. $map['status']=$status;
    37. $result = $this->where($map)-> ; field('id')->select();
    38. if ($result === false)
    39. throw new DBException ( $this->getModelName (), $this->getDbError () , $this- >getLastSql () );
    40. return $result;
    41. }
    42. public function changeCardStatus($id,$status){
    43. $map['id ']=$id ;
    44. $map['status']=$status;
    45. $result = $this->save($map);
    46. if ($result === false)
    47. 提交新的DBException ( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
    48. return $result;
    49. }
    50. }
    51. ?>
    複製程式碼


    來源:php.cn
    本網站聲明
    本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
    熱門教學
    更多>
    最新下載
    更多>
    網站特效
    網站源碼
    網站素材
    前端模板