点点淘吧 关注:8贴子:115
  • 6回复贴,共1

淘宝电商交流

只看楼主收藏回复

欢迎进吧交流哈


IP属地:上海1楼2013-07-24 14:46回复
    - -难道只有我吗


    来自iPhone客户端2楼2013-08-01 23:39
    收起回复
      深圳国际快递 求合作


      IP属地:江西3楼2015-04-23 14:05
      回复
        <!DOCTYPE html>
        <html lang="cn">
        <head>
        <meta charset="UTF-8">
        <title><{$title}></title>
        </head>
        <body>
        <h1><{$title}></h1>
        <form action="__URL__/insert" method="post">
        标题: <input type="text" name='notice_title'><br>
        内容: <input type="text" name='notice_content'><br>
        作者: <input type="text" name="notice_uid" value="session[uid][uname]"><br>
        <input type="hidden" name="notice_trgtime" value="<{:time()}>">
        <input type="submit" value="新建公告">
        </form>
        </body>
        </html>


        4楼2016-09-29 19:12
        回复
          <!DOCTYPE html>
          <html lang="cn">
          <head>
          <meta charset="UTF-8">
          <title><{$title}></title>
          </head>
          <body>
          <h1><{$title}></h1>
          <form action="__URL__/insert" method="post">
          标题: <input type="text" name='notice_title'><br>
          内容: <input type="text" name='notice_content'><br>
          作者: <input type="text" name="notice_uid" value="session[uid][uname]"><br>
          <input type="hidden" name="notice_trgtime" value="<{:time()}>">
          <input type="submit" value="新建公告">
          </form>
          </body>
          </html>


          5楼2016-09-29 19:12
          回复
            <!DOCTYPE html>
            <html lang="cn">
            <head>
            <meta charset="UTF-8">
            <title><{$title}></title>
            <link rel="stylesheet" href="__PUBLIC__/css/bootstrap.min.css">
            <link rel="stylesheet" href="__PUBLIC__/my.css">
            </head>
            <body>
            <div class="container">
            <h1><{$title}></h1>
            <a href="<{:U('index')}>" class='btn btn-info btn-sm'>用户首页</a>
            <a href="<{:U('add')}>" class='btn btn-info btn-sm'>添加用户</a>
            </div><!--end of head container-->
            <div class="container">
            <block name='main'>
            <table class='table table-hover mt50 table-striped h4'>
            <tr>
            <th class='text-center'>ID</th>
            <th class='text-center'>姓名</th>
            <th class='text-center'>性别</th>
            <th class='text-center'>操作</th>
            </tr>
            <volist name='list' id='v'>
            <tr class='text-center'>
            <td><{$v.id}></td>
            <td><{$v.name}></td>
            <td>
            <if condition="$v.sex eq w" >女
            <elseif condition="$v.sex eq m" />男
            </if>
            </td>
            <td class='col-md-2'>
            <a href="<{:U('edit',array('id'=>$v['id']))}>" class='btn btn-sm btn-warning'>编辑</a>
            <a href="<{:U('del',array('id'=>$v['id']))}>" class='btn btn-sm btn-danger'>删除</a>
            </td>
            </tr>
            </volist>
            </table>
            </block>
            </div>
            <script src='__PUBLIC__/js/jquery.min.js'></script>
            <script src='__PUBLIC__/js/bootstrap.min.js'></script>
            </body>
            </html>


            6楼2016-09-29 19:13
            回复