HTML의 양식 페이지에서 전환 및 기능 구현 열기 및 고정

WBOY
풀어 주다: 2016-07-25 08:50:18
원래의
1535명이 탐색했습니다.
新手献上的
  1. 证照信息
  2. < ;th width= "10%">
  3. 은행 카드 번호
  4. ?>
  5. 고유 식별자
  6. 카드 유형
  7. 카드 소유자 이름
  8. 카드 잔액
  9. 전화번호
  10. 카드 상태
  11. 작업
  12. 시작 설정
  13. {$c.id}
  14. < /td>
  15. if($c['type']==1)
  16. {
  17. echo '법인 카드';
  18. }
  19. ?>
  20. {$c.name}

  21. <
  22. {$c.account}
  23. {$c.idcard}
  24. {$c.phone}
  25. if($c['status' ]== 0)
  26. echo '동결';
  27. if($c['status']==1)
  28. echo 'enable';
  29. ?>
  30. < ;/td> ;
  31. 삭제
  32. 고정>
  • 코드 복사
    1. /**
    2. * 공동 브랜드 카드 관리
    3. * @author shendoudou
    4. *
    5. */
    6. import ( '@.Model.Platform.CommonModel' );
    7. class IcbccardModel은 CommonModel을 확장합니다. {
    8. 공용 함수 findAllCard(){
    9. $result = $this->select();
    10. if ($result === false)
    11. throw new DBException( $this->getModelName (), $this->getDbError (), $this->getLastSql () );
    12. return $result;
    13. }
    14. 공개 함수 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. $result 반환;
    20. }
    21. 공개 함수 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. 공용 함수 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. 공개 함수 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. 공개 함수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으로 문의하세요.
    인기 튜토리얼
    더>
    최신 다운로드
    더>
    웹 효과
    웹사이트 소스 코드
    웹사이트 자료
    프론트엔드 템플릿