|
@@ -0,0 +1,131 @@
|
|
|
|
+<!DOCTYPE HTML>
|
|
|
|
+<html>
|
|
|
|
+<head>
|
|
|
|
+ <meta charset="utf-8">
|
|
|
|
+ <meta name="renderer" content="webkit|ie-comp|ie-stand">
|
|
|
|
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
|
|
+ <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no" />
|
|
|
|
+ <meta http-equiv="Cache-Control" content="no-siteapp" />
|
|
|
|
+ <link rel="Bookmark" href="/favicon.ico" >
|
|
|
|
+ <link rel="Shortcut Icon" href="/favicon.ico" />
|
|
|
|
+ <#include "/base/list_base.ftl">
|
|
|
|
+ <title>生产产品列表</title>
|
|
|
|
+ <style>
|
|
|
|
+ .chanpin-list{margin: 0;padding: 10px;list-style-type: none;}
|
|
|
|
+ .chanpin-list>li{float: left;width: 230px;border: 1px solid rgba(0,0,0,.1);background-color: #fff;margin-right: 30px;}
|
|
|
|
+ .chanpin-list>li .title{background-color: #32a3d8;text-align: center;color: #fff;padding: 12px 0;}
|
|
|
|
+ .chanpin-list>li .title>span{padding:3px 3px 3px 28px;background: url(${path}/common/images/jiqi-1.png) left center no-repeat;background-size:auto 80%;}
|
|
|
|
+ .items-list{margin: 0;padding: 20px 25px;list-style: none;}
|
|
|
|
+ .items-list>li{margin: 12px 0;font-size: 13px;position: relative;padding-left: 13px;color: #666;}
|
|
|
|
+ .items-list>li:after{content: '';position: absolute;left: 0;top: 5px;width: 5px;height: 5px;border-radius: 50%;border: 1px solid #32a3d8;}
|
|
|
|
+ .items-list>li:last-child{text-align: center;margin-top: 50px;padding-left: 0;}
|
|
|
|
+ .items-list>li:last-child:after{display: none;}
|
|
|
|
+ .my-btn-edit{padding: 6px 20px;background-color: #fff;color: #32a3d8;border: 1px solid #32a3d8;cursor:pointer;}
|
|
|
|
+ .chanpin-list>.li-add{width: 230px;height: 280px;text-align: center;display: table;padding-top: 55px;position: relative;cursor:pointer;}
|
|
|
|
+ .chanpin-list>.li-add:before{content: '';width: 5px;height: 80px; position: absolute;left: 50%;top: 90px;background-color: #32a3d8;border-radius: 50px;}
|
|
|
|
+ .chanpin-list>.li-add:after{content: '';height: 5px;width: 80px;position: absolute;left: 75px;top: 128px;background-color: #32a3d8;border-radius: 50px;}
|
|
|
|
+ .chanpin-list>.li-add>div{display: table-cell;vertical-align: middle;height: 100%;width: 100%;text-align: center;color: #32a3d8;}
|
|
|
|
+ </style>
|
|
|
|
+</head>
|
|
|
|
+<body>
|
|
|
|
+<nav class="breadcrumb"><i class="Hui-iconfont"></i> 首页
|
|
|
|
+ <span class="c-gray en">></span> 生产产品管理
|
|
|
|
+ <span class="c-gray en">></span> 生产产品列表
|
|
|
|
+ <a class="btn radius r" style="line-height:1.6em;margin-top:3px;background: #32a3d8;color: #fff;" href="javascript:location.replace(location.href);" title="刷新" ><i class="Hui-iconfont"></i></a>
|
|
|
|
+</nav>
|
|
|
|
+<div class="page-container">
|
|
|
|
+ <#--<div class="text-c">
|
|
|
|
+ <form action="${path}/admin/order/select_list" method="post">
|
|
|
|
+ <input type="text" onfocus="WdatePicker({ minDate:'#F{$dp.$D(\'datemin\')}',maxDate:'%y-%M-%d' })" id="datemax" class="input-text Wdate" style="width:120px;">–>
|
|
|
|
+ <input type="text" class="input-text" style="width:100px" value="${orderAddressName!}" placeholder="请输入姓名" id="orderAddressName" name="orderAddressName">
|
|
|
|
+ <input type="text" class="input-text" style="width:120px" value="${orderAddressTel!}" placeholder="请输入电话号码" id="orderAddressTel" name="orderAddressTel">
|
|
|
|
+ <input type="text" class="input-text" style="width:180px" value="${orderOpenId!}" placeholder="请输入身份证号" id="orderOpenId" name="orderOpenId">
|
|
|
|
+ <select class="select" name="orderRentType" style="height: 30px;width: 150px">
|
|
|
|
+ <option value="">--选择租赁类型--</option>
|
|
|
|
+ <#list rentTypeList as rentType>
|
|
|
|
+ <option <#if orderRentType??><#if orderRentType == rentType.typeId>selected="selected"</#if></#if> value="${rentType.typeId!}">${rentType.typeName!}</option>
|
|
|
|
+ </#list>
|
|
|
|
+ </select>
|
|
|
|
+ <select class="select" name="orderPayType" style="height: 30px;width: 150px">
|
|
|
|
+ <option value="">--选择付款方式--</option>
|
|
|
|
+ <option <#if orderPayType??><#if orderPayType == 1>selected="selected"</#if></#if> value="1">微信支付</option>
|
|
|
|
+ <option <#if orderPayType??><#if orderPayType == 2>selected="selected"</#if></#if> value="2">现金支付</option>
|
|
|
|
+ <option <#if orderPayType??><#if orderPayType == 3>selected="selected"</#if></#if> value="3">定金支付</option>
|
|
|
|
+ <option <#if orderPayType??><#if orderPayType == 4>selected="selected"</#if></#if> value="4">刷卡支付</option>
|
|
|
|
+ <option <#if orderPayType??><#if orderPayType == 5>selected="selected"</#if></#if> value="5">支付宝支付</option>
|
|
|
|
+ </select>
|
|
|
|
+ <select class="select" name="orderStatus" style="height: 30px;width: 150px">
|
|
|
|
+ <option value="">--选择订单状态--</option>
|
|
|
|
+ <option <#if orderStatus??><#if orderStatus == 13>selected="selected"</#if></#if> value="13">已支付</option>
|
|
|
|
+ <option <#if orderStatus??><#if orderStatus == 14>selected="selected"</#if></#if> value="14">待支付定金全款</option>
|
|
|
|
+ <option <#if orderStatus??><#if orderStatus == 12>selected="selected"</#if></#if> value="12">已完成</option>
|
|
|
|
+ </select>
|
|
|
|
+ <button type="submit" class="btn" style="background: #32a3d8;color: #fff;-webkit-transform:translateY(-5%);" id="" name=""><i class="Hui-iconfont"></i> 搜订单</button>
|
|
|
|
+ </form>
|
|
|
|
+ </div>-->
|
|
|
|
+
|
|
|
|
+ <ul class="chanpin-list">
|
|
|
|
+ <li>
|
|
|
|
+ <div class="title">
|
|
|
|
+ <span>净水机</span>
|
|
|
|
+ </div>
|
|
|
|
+ <ul class="items-list">
|
|
|
|
+ <li>净水机需求清洗物料</li>
|
|
|
|
+ <li>t1滤芯组装</li>
|
|
|
|
+ <li>t2滤芯组装</li>
|
|
|
|
+ <li>t3滤芯组装</li>
|
|
|
|
+ <li>前置、后置,滤瓶接头加工</li>
|
|
|
|
+ <li>
|
|
|
|
+ <button type="button" onclick="updateProduce(1)" class="my-btn-edit">编辑流程</button>
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+ </li>
|
|
|
|
+ <li>
|
|
|
|
+ <div class="title">
|
|
|
|
+ <span>净水机</span>
|
|
|
|
+ </div>
|
|
|
|
+ <ul class="items-list">
|
|
|
|
+ <li>净水机需求清洗物料</li>
|
|
|
|
+ <li>t1滤芯组装</li>
|
|
|
|
+ <li>t2滤芯组装</li>
|
|
|
|
+ <li>t3滤芯组装</li>
|
|
|
|
+ <li>前置、后置,滤瓶接头加工</li>
|
|
|
|
+ <li>
|
|
|
|
+ <button type="button" class="my-btn-edit">编辑流程</button>
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+ </li>
|
|
|
|
+ <li class="li-add">
|
|
|
|
+ <div>添加产品</div>
|
|
|
|
+ </li>
|
|
|
|
+ </ul>
|
|
|
|
+ <div>
|
|
|
|
+ <#--<#list page.dataList as produce>-->
|
|
|
|
+
|
|
|
|
+ <#--</#list>-->
|
|
|
|
+ </div>
|
|
|
|
+
|
|
|
|
+</div>
|
|
|
|
+<#--<#include "/base/page_util.ftl">-->
|
|
|
|
+<script type="text/javascript" src="${path}/common/lib/ueditor/1.4.3/ueditor.config.js"></script>
|
|
|
|
+<script type="text/javascript" src="${path}/common/lib/ueditor/1.4.3/ueditor.all.min.js"> </script>
|
|
|
|
+<script type="text/javascript" src="${path}/common/lib/ueditor/1.4.3/lang/zh-cn/zh-cn.js"></script>
|
|
|
|
+<script type="text/javascript">
|
|
|
|
+ $(function(){
|
|
|
|
+ $(".li-add").click(function () {
|
|
|
|
+ window.location.href= "${path}/admin/produce/to_save_produce";
|
|
|
|
+ })
|
|
|
|
+ })
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 跳转到修改页面
|
|
|
|
+ * @param produceId
|
|
|
|
+ */
|
|
|
|
+ function updateProduce(produceId){
|
|
|
|
+ window.location.href= "${path}/admin/produce/to_update_produce?produceId="+ produceId;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+</script>
|
|
|
|
+
|
|
|
|
+</body>
|
|
|
|
+</html>
|