作者 Kevin

隐藏发货人,收货人名字,隐藏主单和分单的预配件数和重量字段

正在显示 100 个修改的文件 包含 1039 行增加471 行删除

要显示太多修改。

为保证性能只显示 100 of 100+ 个文件。

@@ -74,6 +74,7 @@ public class ConsigneeController extends BasicController{ @@ -74,6 +74,7 @@ public class ConsigneeController extends BasicController{
74 System.out.println("hello world"); 74 System.out.println("hello world");
75 return "consignee/list"; 75 return "consignee/list";
76 } 76 }
  77 +
77 @RequestMapping(value="consignee/save") 78 @RequestMapping(value="consignee/save")
78 @ResponseBody 79 @ResponseBody
79 public ResponseModel consignee_save(HttpServletRequest request, ConsigneeEntity consignee){ 80 public ResponseModel consignee_save(HttpServletRequest request, ConsigneeEntity consignee){
@@ -82,32 +83,5 @@ public class ConsigneeController extends BasicController{ @@ -82,32 +83,5 @@ public class ConsigneeController extends BasicController{
82 83
83 return model; 84 return model;
84 } 85 }
85 -// @RequestMapping(value="consignee/save")  
86 -// public ResponseModel consignee_save(HttpServletRequest request, ConsigneeInfo consigneeInfo){  
87 -// ResponseModel model = new ResponseModel(200, "保存成功!", null);  
88 -// if(consigneeInfo != null)  
89 -// {  
90 -// //添加  
91 -// if(consigneeInfo.getId() == null)  
92 -// {  
93 -// consigneeService.save(consigneeInfo);  
94 -// }  
95 -// //更新  
96 -// else  
97 -// {  
98 -// //查找是否存在该info  
99 -// List<ConsigneeInfo> infoList = consigneeService.queryById(consigneeInfo.getId());  
100 -// //该收货人信息不存在,添加  
101 -// if(infoList == null || infoList.size() == 0)  
102 -// {  
103 -// consigneeService.save(consigneeInfo);  
104 -// }  
105 -// else  
106 -// {  
107 -// consigneeService.update(consigneeInfo);  
108 -// }  
109 -// }  
110 -// }  
111 -// return model;  
112 -// } 86 +
113 } 87 }
@@ -5,7 +5,9 @@ import java.util.List; @@ -5,7 +5,9 @@ import java.util.List;
5 import javax.annotation.Resource; 5 import javax.annotation.Resource;
6 import javax.servlet.http.HttpServletRequest; 6 import javax.servlet.http.HttpServletRequest;
7 7
  8 +import org.apache.commons.lang.StringUtils;
8 import org.springframework.stereotype.Controller; 9 import org.springframework.stereotype.Controller;
  10 +import org.springframework.ui.Model;
9 import org.springframework.web.bind.annotation.RequestMapping; 11 import org.springframework.web.bind.annotation.RequestMapping;
10 import org.springframework.web.bind.annotation.ResponseBody; 12 import org.springframework.web.bind.annotation.ResponseBody;
11 13
@@ -47,4 +49,84 @@ public class ConsignorController extends BasicController { @@ -47,4 +49,84 @@ public class ConsignorController extends BasicController {
47 model.setData(dataList); 49 model.setData(dataList);
48 return model; 50 return model;
49 } 51 }
  52 +
  53 + @RequestMapping(value = "/list")
  54 + public String list(HttpServletRequest request) {
  55 + return "consignor/list";
  56 + }
  57 +
  58 + @RequestMapping(value = "/search")
  59 + @ResponseBody
  60 + public ResponseModel search(HttpServletRequest request, Integer page, Integer limit) {
  61 + if (page == null) {
  62 + page = 1;
  63 + }
  64 +
  65 + if (limit == null) {
  66 + limit = 10;
  67 + }
  68 +
  69 + ResponseModel model = new ResponseModel(200, "", null);
  70 + page = page < 1 ? 1 : page;
  71 + limit = limit < 1 ? 10 : limit;
  72 + List<ConsignorEntity> dataList = service.list(page, limit);
  73 + if (dataList == null || dataList.size() == 0) {
  74 + model = new ResponseModel(404, "", null);
  75 + } else {
  76 + model = new ResponseModel(200, "", null);
  77 + }
  78 + model.setCount(service.count());
  79 + model.setData(dataList);
  80 + return model;
  81 + }
  82 +
  83 + @RequestMapping(value = "/delete")
  84 + @ResponseBody
  85 + public ResponseModel delete(String ids) {
  86 + ResponseModel model = new ResponseModel(404, "", null);
  87 + if (!StringUtils.isBlank(ids)) {
  88 + model = new ResponseModel(200, "", null);
  89 + if (ids.indexOf(",") > 1) {
  90 + try {
  91 + service.deleteAll(ids);
  92 + model = new ResponseModel(200, "", null);
  93 + } catch (Exception e) {
  94 + model = new ResponseModel(500, "删除失败", null);
  95 + }
  96 + } else {
  97 + model = new ResponseModel(404, "ID不能为空", null);
  98 + }
  99 + }
  100 + return model;
  101 + }
  102 +
  103 + @RequestMapping(value = "/edit")
  104 + public String edit(HttpServletRequest request, String id, Model model) {
  105 +
  106 + if (StringUtils.isNotBlank(id)) {
  107 + ConsignorEntity consignor = service.findById(id);
  108 + model.addAttribute("consignor", consignor);
  109 + }
  110 + return "consignor/edit";
  111 + }
  112 +
  113 + @RequestMapping(value = "/save")
  114 + @ResponseBody
  115 + public ResponseModel save(ConsignorEntity consignor) {
  116 + ResponseModel model = new ResponseModel(404, "", null);
  117 + if (consignor != null) {
  118 + ConsignorEntity old = service.findByCompanyAndUserId(consignor.getCo_company(),Tools.getUserId());
  119 + if (old == null) {
  120 + service.save(consignor);
  121 + model = new ResponseModel(200, "操作成功", null);
  122 + } else {
  123 + model = new ResponseModel(500, "不能重复添加", null);
  124 + }
  125 + } else {
  126 + model = new ResponseModel(500, "参数为空", null);
  127 + }
  128 +
  129 + return model;
  130 + }
  131 +
50 } 132 }
@@ -751,7 +751,7 @@ public class ManifestController extends BasicController { @@ -751,7 +751,7 @@ public class ManifestController extends BasicController {
751 @RequestMapping(value = "/save", method = { RequestMethod.POST }) 751 @RequestMapping(value = "/save", method = { RequestMethod.POST })
752 @ResponseBody 752 @ResponseBody
753 public ResponseModel save(ManifestEntity manifest, HttpServletRequest reuqest) { 753 public ResponseModel save(ManifestEntity manifest, HttpServletRequest reuqest) {
754 - consignorService.saveFromManifest(manifest); 754 + consignorService.saveFromManifest(manifest,Tools.getUserId());
755 755
756 ResponseModel model = new ResponseModel(); 756 ResponseModel model = new ResponseModel();
757 try { 757 try {
@@ -835,7 +835,7 @@ public class ManifestController extends BasicController { @@ -835,7 +835,7 @@ public class ManifestController extends BasicController {
835 @RequestMapping(value = "/savesend", method = { RequestMethod.POST }) 835 @RequestMapping(value = "/savesend", method = { RequestMethod.POST })
836 @ResponseBody 836 @ResponseBody
837 public ResponseModel savesend(ManifestEntity manifest, HttpServletRequest request, HttpServletResponse response) { 837 public ResponseModel savesend(ManifestEntity manifest, HttpServletRequest request, HttpServletResponse response) {
838 - consignorService.saveFromManifest(manifest); 838 + consignorService.saveFromManifest(manifest,Tools.getUserId());
839 839
840 ResponseModel model = new ResponseModel(); 840 ResponseModel model = new ResponseModel();
841 try { 841 try {
@@ -967,7 +967,7 @@ public class ManifestController extends BasicController { @@ -967,7 +967,7 @@ public class ManifestController extends BasicController {
967 @RequestMapping(value = "/sub_save", method = { RequestMethod.POST }) 967 @RequestMapping(value = "/sub_save", method = { RequestMethod.POST })
968 @ResponseBody 968 @ResponseBody
969 public ResponseModel sub_save(PreparesecondaryEntity preparesecondary) { 969 public ResponseModel sub_save(PreparesecondaryEntity preparesecondary) {
970 - consignorService.saveFromPreparesecondary(preparesecondary); 970 + consignorService.saveFromPreparesecondary(preparesecondary,Tools.getUserId());
971 971
972 ResponseModel model = new ResponseModel(); 972 ResponseModel model = new ResponseModel();
973 try { 973 try {
@@ -1035,7 +1035,7 @@ public class ManifestController extends BasicController { @@ -1035,7 +1035,7 @@ public class ManifestController extends BasicController {
1035 @RequestMapping(value = "/presavesend", method = { RequestMethod.POST }) 1035 @RequestMapping(value = "/presavesend", method = { RequestMethod.POST })
1036 @ResponseBody 1036 @ResponseBody
1037 public ResponseModel presavesend(PreparesecondaryEntity preparesecondary, HttpServletRequest request) { 1037 public ResponseModel presavesend(PreparesecondaryEntity preparesecondary, HttpServletRequest request) {
1038 - consignorService.saveFromPreparesecondary(preparesecondary); 1038 + consignorService.saveFromPreparesecondary(preparesecondary,Tools.getUserId());
1039 1039
1040 ResponseModel model = new ResponseModel(); 1040 ResponseModel model = new ResponseModel();
1041 try { 1041 try {
@@ -170,4 +170,13 @@ public class ConsignorEntity extends BasicEntity { @@ -170,4 +170,13 @@ public class ConsignorEntity extends BasicEntity {
170 170
171 return false; 171 return false;
172 } 172 }
  173 +
  174 + @Override
  175 + public String toString() {
  176 + return "ConsignorEntity [shpcusid=" + shpcusid + ", shpaeo=" + shpaeo + ", co_company=" + co_company
  177 + + ", co_address=" + co_address + ", co_zipcode=" + co_zipcode + ", co_city=" + co_city
  178 + + ", co_deltaname=" + co_deltaname + ", co_country=" + co_country + ", co_telephone=" + co_telephone
  179 + + ", co_fax=" + co_fax + ", co_name=" + co_name + ", co_provincecode=" + co_provincecode + "]";
  180 + }
  181 +
173 } 182 }
1 package com.agent.entity.agent; 1 package com.agent.entity.agent;
2 2
3 -import java.text.SimpleDateFormat; 3 +import java.util.Calendar;
4 import java.util.Date; 4 import java.util.Date;
5 5
6 import javax.persistence.Column; 6 import javax.persistence.Column;
7 import javax.persistence.Entity; 7 import javax.persistence.Entity;
8 import javax.persistence.Table; 8 import javax.persistence.Table;
9 9
  10 +import org.apache.commons.lang.StringUtils;
  11 +
10 import com.agent.entity.BasicEntity; 12 import com.agent.entity.BasicEntity;
  13 +
11 /** 14 /**
12 * Created by cohesion on 2017/8/9. 15 * Created by cohesion on 2017/8/9.
13 * <p/> 16 * <p/>
@@ -15,7 +18,7 @@ import com.agent.entity.BasicEntity; @@ -15,7 +18,7 @@ import com.agent.entity.BasicEntity;
15 */ 18 */
16 @Entity 19 @Entity
17 @Table(name = "preparesecondary") 20 @Table(name = "preparesecondary")
18 -public class PreparesecondaryEntity extends BasicEntity{ 21 +public class PreparesecondaryEntity extends BasicEntity {
19 private String unlodingcode;// 卸货地代码 22 private String unlodingcode;// 卸货地代码
20 private String cnecusid;// 收货人代码 23 private String cnecusid;// 收货人代码
21 private String shpcusid;// 发货人代码 24 private String shpcusid;// 发货人代码
@@ -27,867 +30,965 @@ public class PreparesecondaryEntity extends BasicEntity{ @@ -27,867 +30,965 @@ public class PreparesecondaryEntity extends BasicEntity{
27 * 收货人aeo 30 * 收货人aeo
28 */ 31 */
29 private String cneaeo; 32 private String cneaeo;
30 - 33 +
31 /** 34 /**
32 - *  
33 - */  
34 - private String autoid; 35 + *
  36 + */
  37 + private String autoid;
35 /** 38 /**
36 - * 主单号  
37 - */  
38 - private String waybillnomaster; 39 + * 主单号
  40 + */
  41 + private String waybillnomaster;
39 /** 42 /**
40 - * 分单号  
41 - */  
42 - private String waybillnosecondary; 43 + * 分单号
  44 + */
  45 + private String waybillnosecondary;
43 /** 46 /**
44 - * 总重量  
45 - */  
46 - private String totalweight; 47 + * 总重量
  48 + */
  49 + private String totalweight;
47 /** 50 /**
48 - * 总件数  
49 - */  
50 - private String totalpiece; 51 + * 总件数
  52 + */
  53 + private String totalpiece;
51 /** 54 /**
52 - * 舱单件数  
53 - */  
54 - private String preparepiece; 55 + * 舱单件数
  56 + */
  57 + private String preparepiece;
55 /** 58 /**
56 - * 舱单重量  
57 - */  
58 - private String prepareweight; 59 + * 舱单重量
  60 + */
  61 + private String prepareweight;
59 /** 62 /**
60 - * 货物描述  
61 - */  
62 - private String productname; 63 + * 货物描述
  64 + */
  65 + private String productname;
63 /** 66 /**
64 - * 装载日期  
65 - */  
66 - private Date stowagedate; 67 + * 装载日期
  68 + */
  69 + private Date stowagedate;
67 /** 70 /**
68 - * 创建日期  
69 - */  
70 - private Date createdate; 71 + * 创建日期
  72 + */
  73 + private Date createdate;
71 /** 74 /**
72 - * 预配主单表主键  
73 - */  
74 - private Long preparemasterid; 75 + * 预配主单表主键
  76 + */
  77 + private Long preparemasterid;
75 /** 78 /**
76 - *航班日期  
77 - */ 79 + * 航班日期
  80 + */
78 private Date flightdate; 81 private Date flightdate;
79 /** 82 /**
80 - * 起始地  
81 - */ 83 + * 起始地
  84 + */
82 private String originatingstation; 85 private String originatingstation;
83 /** 86 /**
84 - * 目的地  
85 - */ 87 + * 目的地
  88 + */
86 private String destinationstation; 89 private String destinationstation;
87 /** 90 /**
88 - * 代理人代码  
89 - */ 91 + * 代理人代码
  92 + */
90 private String agentcompanycode; 93 private String agentcompanycode;
91 /** 94 /**
92 - * 状态  
93 - */ 95 + * 状态
  96 + */
94 private String status; 97 private String status;
95 /** 98 /**
96 - * 承运人  
97 - */ 99 + * 承运人
  100 + */
98 private String carrier; 101 private String carrier;
99 /** 102 /**
100 - * 海关状态  
101 - */ 103 + * 海关状态
  104 + */
102 private String customsstatus; 105 private String customsstatus;
103 /** 106 /**
104 - * 付费方式  
105 - */ 107 + * 付费方式
  108 + */
106 private String paymode; 109 private String paymode;
107 /** 110 /**
108 - * 特货代码  
109 - */ 111 + * 特货代码
  112 + */
110 private String specialgoodscode; 113 private String specialgoodscode;
111 /** 114 /**
112 - * 海关关区  
113 - */ 115 + * 海关关区
  116 + */
114 private String customscode; 117 private String customscode;
115 /** 118 /**
116 - * 代理人  
117 - */ 119 + * 代理人
  120 + */
118 private String agentman; 121 private String agentman;
119 /** 122 /**
120 - * 代理人公司  
121 - */ 123 + * 代理人公司
  124 + */
122 private String agentcompany; 125 private String agentcompany;
123 /** 126 /**
124 - * 回执信息  
125 - */ 127 + * 回执信息
  128 + */
126 private String receiptinformation; 129 private String receiptinformation;
127 /** 130 /**
128 - * UN编号  
129 - */ 131 + * UN编号
  132 + */
130 private String unnumber; 133 private String unnumber;
131 /** 134 /**
132 - * 危险品类别  
133 - */ 135 + * 危险品类别
  136 + */
134 private String category; 137 private String category;
135 /** 138 /**
136 - * 航班号  
137 - */ 139 + * 航班号
  140 + */
138 private String flightno; 141 private String flightno;
139 /** 142 /**
140 - * 收货人公司  
141 - */ 143 + * 收货人公司
  144 + */
142 private String sh_company; 145 private String sh_company;
143 /** 146 /**
144 - * 收货人地址  
145 - */ 147 + * 收货人地址
  148 + */
146 private String sh_address; 149 private String sh_address;
147 /** 150 /**
148 - * 收货人邮编  
149 - */ 151 + * 收货人邮编
  152 + */
150 private String sh_zipcode; 153 private String sh_zipcode;
151 /** 154 /**
152 - * 收货人城市  
153 - */ 155 + * 收货人城市
  156 + */
154 private String sh_city; 157 private String sh_city;
155 /** 158 /**
156 - * 收货人洲名  
157 - */ 159 + * 收货人洲名
  160 + */
158 private String sh_deltaname; 161 private String sh_deltaname;
159 /** 162 /**
160 - * 收货人国家名字  
161 - */ 163 + * 收货人国家名字
  164 + */
162 private String sh_country; 165 private String sh_country;
163 /** 166 /**
164 - * 收货人电话  
165 - */ 167 + * 收货人电话
  168 + */
166 private String sh_telephone; 169 private String sh_telephone;
167 /** 170 /**
168 - * 收货人传真  
169 - */ 171 + * 收货人传真
  172 + */
170 private String sh_fax; 173 private String sh_fax;
171 /** 174 /**
172 - * 收货人名字  
173 - */ 175 + * 收货人名字
  176 + */
174 private String sh_name; 177 private String sh_name;
175 /** 178 /**
176 - * 发货人公司  
177 - */ 179 + * 发货人公司
  180 + */
178 private String co_company; 181 private String co_company;
179 /** 182 /**
180 - * 发货人地址  
181 - */ 183 + * 发货人地址
  184 + */
182 private String co_address; 185 private String co_address;
183 /** 186 /**
184 - * 发货人邮编  
185 - */ 187 + * 发货人邮编
  188 + */
186 private String co_zipcode; 189 private String co_zipcode;
187 /** 190 /**
188 - * 发货人城市  
189 - */ 191 + * 发货人城市
  192 + */
190 private String co_city; 193 private String co_city;
191 /** 194 /**
192 - * 发货人洲名  
193 - */ 195 + * 发货人洲名
  196 + */
194 private String co_deltaname; 197 private String co_deltaname;
195 /** 198 /**
196 - * 发货人国家名字  
197 - */ 199 + * 发货人国家名字
  200 + */
198 private String co_country; 201 private String co_country;
199 /** 202 /**
200 - * 发货人电话  
201 - */ 203 + * 发货人电话
  204 + */
202 private String co_telephone; 205 private String co_telephone;
203 /** 206 /**
204 - * 发货人传真  
205 - */ 207 + * 发货人传真
  208 + */
206 private String co_fax; 209 private String co_fax;
207 /** 210 /**
208 - * 发货人名字  
209 - */ 211 + * 发货人名字
  212 + */
210 private String co_name; 213 private String co_name;
211 /** 214 /**
212 - * 到达站  
213 - */ 215 + * 到达站
  216 + */
214 private String reach_station; 217 private String reach_station;
215 /** 218 /**
216 - * 承运人  
217 - */ 219 + * 承运人
  220 + */
218 private String carrier1; 221 private String carrier1;
219 /** 222 /**
220 - * 到达站  
221 - */ 223 + * 到达站
  224 + */
222 private String reach_station1; 225 private String reach_station1;
223 /** 226 /**
224 - * 承运人  
225 - */ 227 + * 承运人
  228 + */
226 private String carrier2; 229 private String carrier2;
227 /** 230 /**
228 - * 到达站  
229 - */ 231 + * 到达站
  232 + */
230 private String reach_station2; 233 private String reach_station2;
231 /** 234 /**
232 - * 货物品名  
233 - */ 235 + * 货物品名
  236 + */
234 private String name_ofgoods; 237 private String name_ofgoods;
235 /** 238 /**
236 - * 交运货站  
237 - */ 239 + * 交运货站
  240 + */
238 private String delivery_station; 241 private String delivery_station;
239 - 242 +
240 /** 243 /**
241 - * 收货人省份代码  
242 - */ 244 + * 收货人省份代码
  245 + */
243 private String sh_provincecode; 246 private String sh_provincecode;
244 /** 247 /**
245 - * 收货人省份  
246 - */ 248 + * 收货人省份
  249 + */
247 private String sh_provincename; 250 private String sh_provincename;
248 /** 251 /**
249 - * 交运件数  
250 - */ 252 + * 交运件数
  253 + */
251 private String de_number; 254 private String de_number;
252 /** 255 /**
253 - * 交运重量  
254 - */ 256 + * 交运重量
  257 + */
255 private String de_weight; 258 private String de_weight;
256 /** 259 /**
257 - * 交运计费重量  
258 - */ 260 + * 交运计费重量
  261 + */
259 private String de_chweight; 262 private String de_chweight;
260 /** 263 /**
261 - * 交运体尺寸  
262 - */ 264 + * 交运体尺寸
  265 + */
263 private String de_size; 266 private String de_size;
264 /** 267 /**
265 - * 交运体积  
266 - */ 268 + * 交运体积
  269 + */
267 private String de_volume; 270 private String de_volume;
268 /** 271 /**
269 - * 交运类型  
270 - */ 272 + * 交运类型
  273 + */
271 private String de_type; 274 private String de_type;
272 /** 275 /**
273 - * 交运中转站  
274 - */ 276 + * 交运中转站
  277 + */
275 private String de_trstation; 278 private String de_trstation;
276 /** 279 /**
277 - * 交运包装信息  
278 - */ 280 + * 交运包装信息
  281 + */
279 private String de_packing; 282 private String de_packing;
280 /** 283 /**
281 - * 交运备注  
282 - */ 284 + * 交运备注
  285 + */
283 private String de_remarks; 286 private String de_remarks;
284 - 287 +
285 /** 288 /**
286 - * 交运发送状态 1发送  
287 - */ 289 + * 交运发送状态 1发送
  290 + */
288 private Integer de_ids; 291 private Integer de_ids;
289 - //回执代码 292 + // 回执代码
290 private String response_code; 293 private String response_code;
291 - //回执文本 294 + // 回执文本
292 private String response_text; 295 private String response_text;
293 - 296 +
294 private Long save_time; 297 private Long save_time;
295 - 298 +
296 private Long USER_ID; 299 private Long USER_ID;
297 - 300 +
298 public String getUnlodingcode() { 301 public String getUnlodingcode() {
299 return unlodingcode; 302 return unlodingcode;
300 } 303 }
  304 +
301 public void setUnlodingcode(String unlodingcode) { 305 public void setUnlodingcode(String unlodingcode) {
302 this.unlodingcode = unlodingcode; 306 this.unlodingcode = unlodingcode;
303 } 307 }
  308 +
304 public String getCnecusid() { 309 public String getCnecusid() {
305 return cnecusid; 310 return cnecusid;
306 } 311 }
  312 +
307 public void setCnecusid(String cnecusid) { 313 public void setCnecusid(String cnecusid) {
308 this.cnecusid = cnecusid; 314 this.cnecusid = cnecusid;
309 } 315 }
  316 +
310 public String getShpcusid() { 317 public String getShpcusid() {
311 return shpcusid; 318 return shpcusid;
312 } 319 }
  320 +
313 public void setShpcusid(String shpcusid) { 321 public void setShpcusid(String shpcusid) {
314 this.shpcusid = shpcusid; 322 this.shpcusid = shpcusid;
315 } 323 }
  324 +
316 public String getShpaeo() { 325 public String getShpaeo() {
317 return shpaeo; 326 return shpaeo;
318 } 327 }
  328 +
319 public void setShpaeo(String shpaeo) { 329 public void setShpaeo(String shpaeo) {
320 this.shpaeo = shpaeo; 330 this.shpaeo = shpaeo;
321 } 331 }
  332 +
322 public String getCneaeo() { 333 public String getCneaeo() {
323 return cneaeo; 334 return cneaeo;
324 } 335 }
  336 +
325 public void setCneaeo(String cneaeo) { 337 public void setCneaeo(String cneaeo) {
326 this.cneaeo = cneaeo; 338 this.cneaeo = cneaeo;
327 } 339 }
  340 +
328 @Column(name = "USER_ID") 341 @Column(name = "USER_ID")
329 public Long getUSER_ID() { 342 public Long getUSER_ID() {
330 return USER_ID; 343 return USER_ID;
331 } 344 }
  345 +
332 public void setUSER_ID(Long uSER_ID) { 346 public void setUSER_ID(Long uSER_ID) {
333 USER_ID = uSER_ID; 347 USER_ID = uSER_ID;
334 } 348 }
  349 +
335 @Column(name = "SAVE_TIME") 350 @Column(name = "SAVE_TIME")
336 public Long getSave_time() { 351 public Long getSave_time() {
337 return save_time; 352 return save_time;
338 } 353 }
  354 +
339 public void setSave_time(Long save_time) { 355 public void setSave_time(Long save_time) {
340 this.save_time = save_time; 356 this.save_time = save_time;
341 } 357 }
342 - 358 +
343 @Column(name = "RESPONSE_CODE") 359 @Column(name = "RESPONSE_CODE")
344 public String getResponse_code() { 360 public String getResponse_code() {
345 return response_code; 361 return response_code;
346 } 362 }
  363 +
347 public void setResponse_code(String response_code) { 364 public void setResponse_code(String response_code) {
348 this.response_code = response_code; 365 this.response_code = response_code;
349 } 366 }
  367 +
350 @Column(name = "RESPONSE_TEXT") 368 @Column(name = "RESPONSE_TEXT")
351 public String getResponse_text() { 369 public String getResponse_text() {
352 return response_text; 370 return response_text;
353 } 371 }
  372 +
354 public void setResponse_text(String response_text) { 373 public void setResponse_text(String response_text) {
355 this.response_text = response_text; 374 this.response_text = response_text;
356 } 375 }
  376 +
357 @Column(name = "DE_IDS") 377 @Column(name = "DE_IDS")
358 public Integer getDe_ids() { 378 public Integer getDe_ids() {
359 return de_ids; 379 return de_ids;
360 } 380 }
  381 +
361 public void setDe_ids(Integer de_ids) { 382 public void setDe_ids(Integer de_ids) {
362 this.de_ids = de_ids; 383 this.de_ids = de_ids;
363 } 384 }
  385 +
364 @Column(name = "DE_NUMBER") 386 @Column(name = "DE_NUMBER")
365 public String getDe_number() { 387 public String getDe_number() {
366 return de_number; 388 return de_number;
367 } 389 }
  390 +
368 public void setDe_number(String de_number) { 391 public void setDe_number(String de_number) {
369 this.de_number = de_number; 392 this.de_number = de_number;
370 } 393 }
371 - 394 +
372 @Column(name = "DE_WEIGHT") 395 @Column(name = "DE_WEIGHT")
373 public String getDe_weight() { 396 public String getDe_weight() {
374 return de_weight; 397 return de_weight;
375 } 398 }
  399 +
376 public void setDe_weight(String de_weight) { 400 public void setDe_weight(String de_weight) {
377 this.de_weight = de_weight; 401 this.de_weight = de_weight;
378 } 402 }
379 - 403 +
380 @Column(name = "DE_CHWEIGHT") 404 @Column(name = "DE_CHWEIGHT")
381 public String getDe_chweight() { 405 public String getDe_chweight() {
382 return de_chweight; 406 return de_chweight;
383 } 407 }
  408 +
384 public void setDe_chweight(String de_chweight) { 409 public void setDe_chweight(String de_chweight) {
385 this.de_chweight = de_chweight; 410 this.de_chweight = de_chweight;
386 } 411 }
387 - 412 +
388 @Column(name = "DE_SIZE") 413 @Column(name = "DE_SIZE")
389 public String getDe_size() { 414 public String getDe_size() {
390 return de_size; 415 return de_size;
391 } 416 }
  417 +
392 public void setDe_size(String de_size) { 418 public void setDe_size(String de_size) {
393 this.de_size = de_size; 419 this.de_size = de_size;
394 } 420 }
395 - 421 +
396 @Column(name = "DE_VOLUME") 422 @Column(name = "DE_VOLUME")
397 public String getDe_volume() { 423 public String getDe_volume() {
398 return de_volume; 424 return de_volume;
399 } 425 }
  426 +
400 public void setDe_volume(String de_volume) { 427 public void setDe_volume(String de_volume) {
401 this.de_volume = de_volume; 428 this.de_volume = de_volume;
402 } 429 }
403 - 430 +
404 @Column(name = "DE_TYPE") 431 @Column(name = "DE_TYPE")
405 public String getDe_type() { 432 public String getDe_type() {
406 return de_type; 433 return de_type;
407 } 434 }
  435 +
408 public void setDe_type(String de_type) { 436 public void setDe_type(String de_type) {
409 this.de_type = de_type; 437 this.de_type = de_type;
410 } 438 }
411 - 439 +
412 @Column(name = "DE_TRSTATION") 440 @Column(name = "DE_TRSTATION")
413 public String getDe_trstation() { 441 public String getDe_trstation() {
414 return de_trstation; 442 return de_trstation;
415 } 443 }
  444 +
416 public void setDe_trstation(String de_trstation) { 445 public void setDe_trstation(String de_trstation) {
417 this.de_trstation = de_trstation; 446 this.de_trstation = de_trstation;
418 } 447 }
419 - 448 +
420 @Column(name = "DE_PACKING") 449 @Column(name = "DE_PACKING")
421 public String getDe_packing() { 450 public String getDe_packing() {
422 return de_packing; 451 return de_packing;
423 } 452 }
  453 +
424 public void setDe_packing(String de_packing) { 454 public void setDe_packing(String de_packing) {
425 this.de_packing = de_packing; 455 this.de_packing = de_packing;
426 } 456 }
427 - 457 +
428 @Column(name = "DE_REMARKS") 458 @Column(name = "DE_REMARKS")
429 public String getDe_remarks() { 459 public String getDe_remarks() {
430 return de_remarks; 460 return de_remarks;
431 } 461 }
  462 +
432 public void setDe_remarks(String de_remarks) { 463 public void setDe_remarks(String de_remarks) {
433 this.de_remarks = de_remarks; 464 this.de_remarks = de_remarks;
434 } 465 }
435 - 466 +
436 @Column(name = "SH_PROVINCECODE") 467 @Column(name = "SH_PROVINCECODE")
437 public String getSh_provincecode() { 468 public String getSh_provincecode() {
438 return sh_provincecode; 469 return sh_provincecode;
439 } 470 }
  471 +
440 public void setSh_provincecode(String sh_provincecode) { 472 public void setSh_provincecode(String sh_provincecode) {
441 this.sh_provincecode = sh_provincecode; 473 this.sh_provincecode = sh_provincecode;
442 } 474 }
  475 +
443 @Column(name = "SH_PROVINCENAME") 476 @Column(name = "SH_PROVINCENAME")
444 public String getSh_provincename() { 477 public String getSh_provincename() {
445 return sh_provincename; 478 return sh_provincename;
446 } 479 }
  480 +
447 public void setSh_provincename(String sh_provincename) { 481 public void setSh_provincename(String sh_provincename) {
448 this.sh_provincename = sh_provincename; 482 this.sh_provincename = sh_provincename;
449 } 483 }
450 - 484 +
451 @Column(name = "FLIGHTNO") 485 @Column(name = "FLIGHTNO")
452 public String getFlightno() { 486 public String getFlightno() {
453 return flightno; 487 return flightno;
454 } 488 }
  489 +
455 public void setFlightno(String flightno) { 490 public void setFlightno(String flightno) {
456 this.flightno = flightno; 491 this.flightno = flightno;
457 } 492 }
  493 +
458 @Column(name = "AUTOID") 494 @Column(name = "AUTOID")
459 public String getAutoid() { 495 public String getAutoid() {
460 return autoid; 496 return autoid;
461 } 497 }
  498 +
462 public void setAutoid(String autoid) { 499 public void setAutoid(String autoid) {
463 this.autoid = autoid; 500 this.autoid = autoid;
464 } 501 }
465 - 502 +
466 @Column(name = "WAYBILLNOMASTER") 503 @Column(name = "WAYBILLNOMASTER")
467 public String getWaybillnomaster() { 504 public String getWaybillnomaster() {
468 return waybillnomaster; 505 return waybillnomaster;
469 } 506 }
  507 +
470 public void setWaybillnomaster(String waybillnomaster) { 508 public void setWaybillnomaster(String waybillnomaster) {
471 this.waybillnomaster = waybillnomaster; 509 this.waybillnomaster = waybillnomaster;
472 } 510 }
473 - 511 +
474 @Column(name = "WAYBILLNOSECONDARY") 512 @Column(name = "WAYBILLNOSECONDARY")
475 public String getWaybillnosecondary() { 513 public String getWaybillnosecondary() {
476 return waybillnosecondary; 514 return waybillnosecondary;
477 } 515 }
  516 +
478 public void setWaybillnosecondary(String waybillnosecondary) { 517 public void setWaybillnosecondary(String waybillnosecondary) {
479 this.waybillnosecondary = waybillnosecondary; 518 this.waybillnosecondary = waybillnosecondary;
480 } 519 }
481 - 520 +
482 @Column(name = "TOTALWEIGHT") 521 @Column(name = "TOTALWEIGHT")
483 public String getTotalweight() { 522 public String getTotalweight() {
484 return totalweight; 523 return totalweight;
485 } 524 }
  525 +
486 public void setTotalweight(String totalweight) { 526 public void setTotalweight(String totalweight) {
487 this.totalweight = totalweight; 527 this.totalweight = totalweight;
488 } 528 }
489 - 529 +
490 @Column(name = "TOTALPIECE") 530 @Column(name = "TOTALPIECE")
491 public String getTotalpiece() { 531 public String getTotalpiece() {
492 return totalpiece; 532 return totalpiece;
493 } 533 }
  534 +
494 public void setTotalpiece(String totalpiece) { 535 public void setTotalpiece(String totalpiece) {
495 this.totalpiece = totalpiece; 536 this.totalpiece = totalpiece;
496 } 537 }
497 - 538 +
498 @Column(name = "PREPAREPIECE") 539 @Column(name = "PREPAREPIECE")
499 public String getPreparepiece() { 540 public String getPreparepiece() {
500 return preparepiece; 541 return preparepiece;
501 } 542 }
  543 +
502 public void setPreparepiece(String preparepiece) { 544 public void setPreparepiece(String preparepiece) {
503 this.preparepiece = preparepiece; 545 this.preparepiece = preparepiece;
504 } 546 }
505 - 547 +
506 @Column(name = "PREPAREWEIGHT") 548 @Column(name = "PREPAREWEIGHT")
507 public String getPrepareweight() { 549 public String getPrepareweight() {
508 return prepareweight; 550 return prepareweight;
509 } 551 }
  552 +
510 public void setPrepareweight(String prepareweight) { 553 public void setPrepareweight(String prepareweight) {
511 this.prepareweight = prepareweight; 554 this.prepareweight = prepareweight;
512 } 555 }
513 - 556 +
514 @Column(name = "PRODUCTNAME") 557 @Column(name = "PRODUCTNAME")
515 public String getProductname() { 558 public String getProductname() {
516 return productname; 559 return productname;
517 } 560 }
  561 +
518 public void setProductname(String productname) { 562 public void setProductname(String productname) {
519 this.productname = productname; 563 this.productname = productname;
520 } 564 }
521 -  
522 - public Date getStowagedate(String date){  
523 - if(date == null) 565 +
  566 + public Date getStowagedate(String datestr) {
  567 + if (datestr == null)
524 return null; 568 return null;
525 - SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");  
526 - try {  
527 - return sdf.parse(date);  
528 - } catch (java.text.ParseException e) {  
529 - // TODO Auto-generated catch block  
530 - e.printStackTrace(); 569 +
  570 + Calendar calendar = Calendar.getInstance();
  571 + String year = null;
  572 + String time = null;
  573 + if (datestr.indexOf(":") < 0) {
  574 + // 只有日期,没有时分秒等时间
  575 + year = datestr.split(" ")[0];
  576 +
  577 + } else {
  578 + year = datestr.split(" ")[0];
  579 + time = datestr.split(" ")[1];
  580 + }
  581 +
  582 + String[] years = year.split("-");
  583 + calendar.set(Integer.parseInt(years[0]), Integer.parseInt(years[1]) - 1, Integer.parseInt(years[2]));
  584 + if (StringUtils.isNotBlank(time)) {
  585 + String[] times = time.split(":");
  586 + calendar.set(Integer.parseInt(years[0]), Integer.parseInt(years[1]) - 1, Integer.parseInt(years[2]),
  587 + Integer.parseInt(times[0]), Integer.parseInt(times[1]), Integer.parseInt(times[2]));
531 } 588 }
532 - return null; 589 + return calendar.getTime();
533 } 590 }
  591 +
534 @Column(name = "STOWAGEDATE") 592 @Column(name = "STOWAGEDATE")
535 public Date getStowagedate() { 593 public Date getStowagedate() {
536 return stowagedate; 594 return stowagedate;
537 } 595 }
  596 +
538 public void setStowagedate(Date stowagedate) { 597 public void setStowagedate(Date stowagedate) {
539 this.stowagedate = stowagedate; 598 this.stowagedate = stowagedate;
540 } 599 }
541 - 600 +
542 @Column(name = "CREATEDATE") 601 @Column(name = "CREATEDATE")
543 public Date getCreatedate() { 602 public Date getCreatedate() {
544 return createdate; 603 return createdate;
545 } 604 }
  605 +
546 public void setCreatedate(Date createdate) { 606 public void setCreatedate(Date createdate) {
547 this.createdate = createdate; 607 this.createdate = createdate;
548 } 608 }
549 - 609 +
550 @Column(name = "PREPAREMASTERID") 610 @Column(name = "PREPAREMASTERID")
551 public Long getPreparemasterid() { 611 public Long getPreparemasterid() {
552 return preparemasterid; 612 return preparemasterid;
553 } 613 }
  614 +
554 public void setPreparemasterid(Long preparemasterid) { 615 public void setPreparemasterid(Long preparemasterid) {
555 this.preparemasterid = preparemasterid; 616 this.preparemasterid = preparemasterid;
556 } 617 }
557 - 618 +
558 @Column(name = "FLIGHTDATE") 619 @Column(name = "FLIGHTDATE")
559 public Date getFlightdate() { 620 public Date getFlightdate() {
560 return flightdate; 621 return flightdate;
561 } 622 }
  623 +
562 public void setFlightdate(Date flightdate) { 624 public void setFlightdate(Date flightdate) {
563 this.flightdate = flightdate; 625 this.flightdate = flightdate;
564 } 626 }
565 - 627 +
566 @Column(name = "ORIGINATINGSTATION") 628 @Column(name = "ORIGINATINGSTATION")
567 public String getOriginatingstation() { 629 public String getOriginatingstation() {
568 return originatingstation; 630 return originatingstation;
569 } 631 }
  632 +
570 public void setOriginatingstation(String originatingstation) { 633 public void setOriginatingstation(String originatingstation) {
571 this.originatingstation = originatingstation; 634 this.originatingstation = originatingstation;
572 } 635 }
573 - 636 +
574 @Column(name = "DESTINATIONSTATION") 637 @Column(name = "DESTINATIONSTATION")
575 public String getDestinationstation() { 638 public String getDestinationstation() {
576 return destinationstation; 639 return destinationstation;
577 } 640 }
  641 +
578 public void setDestinationstation(String destinationstation) { 642 public void setDestinationstation(String destinationstation) {
579 this.destinationstation = destinationstation; 643 this.destinationstation = destinationstation;
580 } 644 }
581 - 645 +
582 @Column(name = "AGENTCOMPANYCODE") 646 @Column(name = "AGENTCOMPANYCODE")
583 public String getAgentcompanycode() { 647 public String getAgentcompanycode() {
584 return agentcompanycode; 648 return agentcompanycode;
585 } 649 }
  650 +
586 public void setAgentcompanycode(String agentcompanycode) { 651 public void setAgentcompanycode(String agentcompanycode) {
587 this.agentcompanycode = agentcompanycode; 652 this.agentcompanycode = agentcompanycode;
588 } 653 }
589 - 654 +
590 @Column(name = "STATUS") 655 @Column(name = "STATUS")
591 public String getStatus() { 656 public String getStatus() {
592 return status; 657 return status;
593 } 658 }
  659 +
594 public void setStatus(String status) { 660 public void setStatus(String status) {
595 this.status = status; 661 this.status = status;
596 } 662 }
597 - 663 +
598 @Column(name = "CARRIER") 664 @Column(name = "CARRIER")
599 public String getCarrier() { 665 public String getCarrier() {
600 return carrier; 666 return carrier;
601 } 667 }
  668 +
602 public void setCarrier(String carrier) { 669 public void setCarrier(String carrier) {
603 this.carrier = carrier; 670 this.carrier = carrier;
604 } 671 }
605 - 672 +
606 @Column(name = "CUSTOMSSTATUS") 673 @Column(name = "CUSTOMSSTATUS")
607 public String getCustomsstatus() { 674 public String getCustomsstatus() {
608 return customsstatus; 675 return customsstatus;
609 } 676 }
  677 +
610 public void setCustomsstatus(String customsstatus) { 678 public void setCustomsstatus(String customsstatus) {
611 this.customsstatus = customsstatus; 679 this.customsstatus = customsstatus;
612 } 680 }
613 - 681 +
614 @Column(name = "PAYMODE") 682 @Column(name = "PAYMODE")
615 public String getPaymode() { 683 public String getPaymode() {
616 return paymode; 684 return paymode;
617 } 685 }
  686 +
618 public void setPaymode(String paymode) { 687 public void setPaymode(String paymode) {
619 this.paymode = paymode; 688 this.paymode = paymode;
620 } 689 }
621 - 690 +
622 @Column(name = "SPECIALGOODSCODE") 691 @Column(name = "SPECIALGOODSCODE")
623 public String getSpecialgoodscode() { 692 public String getSpecialgoodscode() {
624 return specialgoodscode; 693 return specialgoodscode;
625 } 694 }
  695 +
626 public void setSpecialgoodscode(String specialgoodscode) { 696 public void setSpecialgoodscode(String specialgoodscode) {
627 this.specialgoodscode = specialgoodscode; 697 this.specialgoodscode = specialgoodscode;
628 } 698 }
629 - 699 +
630 @Column(name = "CUSTOMSCODE") 700 @Column(name = "CUSTOMSCODE")
631 public String getCustomscode() { 701 public String getCustomscode() {
632 return customscode; 702 return customscode;
633 } 703 }
  704 +
634 public void setCustomscode(String customscode) { 705 public void setCustomscode(String customscode) {
635 this.customscode = customscode; 706 this.customscode = customscode;
636 } 707 }
637 - 708 +
638 @Column(name = "AGENTMAN") 709 @Column(name = "AGENTMAN")
639 public String getAgentman() { 710 public String getAgentman() {
640 return agentman; 711 return agentman;
641 } 712 }
  713 +
642 public void setAgentman(String agentman) { 714 public void setAgentman(String agentman) {
643 this.agentman = agentman; 715 this.agentman = agentman;
644 } 716 }
645 - 717 +
646 @Column(name = "AGENTCOMPANY") 718 @Column(name = "AGENTCOMPANY")
647 public String getAgentcompany() { 719 public String getAgentcompany() {
648 return agentcompany; 720 return agentcompany;
649 } 721 }
  722 +
650 public void setAgentcompany(String agentcompany) { 723 public void setAgentcompany(String agentcompany) {
651 this.agentcompany = agentcompany; 724 this.agentcompany = agentcompany;
652 } 725 }
653 - 726 +
654 @Column(name = "RECEIPTINFORMATION") 727 @Column(name = "RECEIPTINFORMATION")
655 public String getReceiptinformation() { 728 public String getReceiptinformation() {
656 return receiptinformation; 729 return receiptinformation;
657 } 730 }
  731 +
658 public void setReceiptinformation(String receiptinformation) { 732 public void setReceiptinformation(String receiptinformation) {
659 this.receiptinformation = receiptinformation; 733 this.receiptinformation = receiptinformation;
660 } 734 }
661 - 735 +
662 @Column(name = "UNNUMBER") 736 @Column(name = "UNNUMBER")
663 public String getUnnumber() { 737 public String getUnnumber() {
664 return unnumber; 738 return unnumber;
665 } 739 }
  740 +
666 public void setUnnumber(String unnumber) { 741 public void setUnnumber(String unnumber) {
667 this.unnumber = unnumber; 742 this.unnumber = unnumber;
668 } 743 }
669 - 744 +
670 @Column(name = "CATEGORY") 745 @Column(name = "CATEGORY")
671 public String getCategory() { 746 public String getCategory() {
672 return category; 747 return category;
673 } 748 }
  749 +
674 public void setCategory(String category) { 750 public void setCategory(String category) {
675 this.category = category; 751 this.category = category;
676 } 752 }
677 - 753 +
678 @Column(name = "SH_COMPANY") 754 @Column(name = "SH_COMPANY")
679 public String getSh_company() { 755 public String getSh_company() {
680 return sh_company; 756 return sh_company;
681 } 757 }
  758 +
682 public void setSh_company(String sh_company) { 759 public void setSh_company(String sh_company) {
683 this.sh_company = sh_company; 760 this.sh_company = sh_company;
684 } 761 }
685 - 762 +
686 @Column(name = "SH_ADDRESS") 763 @Column(name = "SH_ADDRESS")
687 public String getSh_address() { 764 public String getSh_address() {
688 return sh_address; 765 return sh_address;
689 } 766 }
  767 +
690 public void setSh_address(String sh_address) { 768 public void setSh_address(String sh_address) {
691 this.sh_address = sh_address; 769 this.sh_address = sh_address;
692 } 770 }
693 - 771 +
694 @Column(name = "SH_ZIPCODE") 772 @Column(name = "SH_ZIPCODE")
695 public String getSh_zipcode() { 773 public String getSh_zipcode() {
696 return sh_zipcode; 774 return sh_zipcode;
697 } 775 }
  776 +
698 public void setSh_zipcode(String sh_zipcode) { 777 public void setSh_zipcode(String sh_zipcode) {
699 this.sh_zipcode = sh_zipcode; 778 this.sh_zipcode = sh_zipcode;
700 } 779 }
701 - 780 +
702 @Column(name = "SH_CITY") 781 @Column(name = "SH_CITY")
703 public String getSh_city() { 782 public String getSh_city() {
704 return sh_city; 783 return sh_city;
705 } 784 }
  785 +
706 public void setSh_city(String sh_city) { 786 public void setSh_city(String sh_city) {
707 this.sh_city = sh_city; 787 this.sh_city = sh_city;
708 } 788 }
709 - 789 +
710 @Column(name = "SH_DELTANAME") 790 @Column(name = "SH_DELTANAME")
711 public String getSh_deltaname() { 791 public String getSh_deltaname() {
712 return sh_deltaname; 792 return sh_deltaname;
713 } 793 }
  794 +
714 public void setSh_deltaname(String sh_deltaname) { 795 public void setSh_deltaname(String sh_deltaname) {
715 this.sh_deltaname = sh_deltaname; 796 this.sh_deltaname = sh_deltaname;
716 } 797 }
717 - 798 +
718 @Column(name = "SH_COUNTRY") 799 @Column(name = "SH_COUNTRY")
719 public String getSh_country() { 800 public String getSh_country() {
720 return sh_country; 801 return sh_country;
721 } 802 }
  803 +
722 public void setSh_country(String sh_country) { 804 public void setSh_country(String sh_country) {
723 this.sh_country = sh_country; 805 this.sh_country = sh_country;
724 } 806 }
725 - 807 +
726 @Column(name = "SH_TELEPHONE") 808 @Column(name = "SH_TELEPHONE")
727 public String getSh_telephone() { 809 public String getSh_telephone() {
728 return sh_telephone; 810 return sh_telephone;
729 } 811 }
  812 +
730 public void setSh_telephone(String sh_telephone) { 813 public void setSh_telephone(String sh_telephone) {
731 this.sh_telephone = sh_telephone; 814 this.sh_telephone = sh_telephone;
732 } 815 }
733 - 816 +
734 @Column(name = "SH_FAX") 817 @Column(name = "SH_FAX")
735 public String getSh_fax() { 818 public String getSh_fax() {
736 return sh_fax; 819 return sh_fax;
737 } 820 }
  821 +
738 public void setSh_fax(String sh_fax) { 822 public void setSh_fax(String sh_fax) {
739 this.sh_fax = sh_fax; 823 this.sh_fax = sh_fax;
740 } 824 }
741 - 825 +
742 @Column(name = "SH_NAME") 826 @Column(name = "SH_NAME")
743 public String getSh_name() { 827 public String getSh_name() {
744 return sh_name; 828 return sh_name;
745 } 829 }
  830 +
746 public void setSh_name(String sh_name) { 831 public void setSh_name(String sh_name) {
747 this.sh_name = sh_name; 832 this.sh_name = sh_name;
748 } 833 }
749 - 834 +
750 @Column(name = "CO_COMPANY") 835 @Column(name = "CO_COMPANY")
751 public String getCo_company() { 836 public String getCo_company() {
752 return co_company; 837 return co_company;
753 } 838 }
  839 +
754 public void setCo_company(String co_company) { 840 public void setCo_company(String co_company) {
755 this.co_company = co_company; 841 this.co_company = co_company;
756 } 842 }
757 - 843 +
758 @Column(name = "CO_ADDRESS") 844 @Column(name = "CO_ADDRESS")
759 public String getCo_address() { 845 public String getCo_address() {
760 return co_address; 846 return co_address;
761 } 847 }
  848 +
762 public void setCo_address(String co_address) { 849 public void setCo_address(String co_address) {
763 this.co_address = co_address; 850 this.co_address = co_address;
764 } 851 }
765 - 852 +
766 @Column(name = "CO_ZIPCODE") 853 @Column(name = "CO_ZIPCODE")
767 public String getCo_zipcode() { 854 public String getCo_zipcode() {
768 return co_zipcode; 855 return co_zipcode;
769 } 856 }
  857 +
770 public void setCo_zipcode(String co_zipcode) { 858 public void setCo_zipcode(String co_zipcode) {
771 this.co_zipcode = co_zipcode; 859 this.co_zipcode = co_zipcode;
772 } 860 }
773 - 861 +
774 @Column(name = "CO_CITY") 862 @Column(name = "CO_CITY")
775 public String getCo_city() { 863 public String getCo_city() {
776 return co_city; 864 return co_city;
777 } 865 }
  866 +
778 public void setCo_city(String co_city) { 867 public void setCo_city(String co_city) {
779 this.co_city = co_city; 868 this.co_city = co_city;
780 } 869 }
781 - 870 +
782 @Column(name = "CO_DELTANAME") 871 @Column(name = "CO_DELTANAME")
783 public String getCo_deltaname() { 872 public String getCo_deltaname() {
784 return co_deltaname; 873 return co_deltaname;
785 } 874 }
  875 +
786 public void setCo_deltaname(String co_deltaname) { 876 public void setCo_deltaname(String co_deltaname) {
787 this.co_deltaname = co_deltaname; 877 this.co_deltaname = co_deltaname;
788 } 878 }
789 - 879 +
790 @Column(name = "CO_COUNTRY") 880 @Column(name = "CO_COUNTRY")
791 public String getCo_country() { 881 public String getCo_country() {
792 return co_country; 882 return co_country;
793 } 883 }
  884 +
794 public void setCo_country(String co_country) { 885 public void setCo_country(String co_country) {
795 this.co_country = co_country; 886 this.co_country = co_country;
796 } 887 }
797 - 888 +
798 @Column(name = "CO_TELEPHONE") 889 @Column(name = "CO_TELEPHONE")
799 public String getCo_telephone() { 890 public String getCo_telephone() {
800 return co_telephone; 891 return co_telephone;
801 } 892 }
  893 +
802 public void setCo_telephone(String co_telephone) { 894 public void setCo_telephone(String co_telephone) {
803 this.co_telephone = co_telephone; 895 this.co_telephone = co_telephone;
804 } 896 }
805 - 897 +
806 @Column(name = "CO_FAX") 898 @Column(name = "CO_FAX")
807 public String getCo_fax() { 899 public String getCo_fax() {
808 return co_fax; 900 return co_fax;
809 } 901 }
  902 +
810 public void setCo_fax(String co_fax) { 903 public void setCo_fax(String co_fax) {
811 this.co_fax = co_fax; 904 this.co_fax = co_fax;
812 } 905 }
813 - 906 +
814 @Column(name = "CO_NAME") 907 @Column(name = "CO_NAME")
815 public String getCo_name() { 908 public String getCo_name() {
816 return co_name; 909 return co_name;
817 } 910 }
  911 +
818 public void setCo_name(String co_name) { 912 public void setCo_name(String co_name) {
819 this.co_name = co_name; 913 this.co_name = co_name;
820 } 914 }
821 - 915 +
822 @Column(name = "REACH_STATION") 916 @Column(name = "REACH_STATION")
823 public String getReach_station() { 917 public String getReach_station() {
824 return reach_station; 918 return reach_station;
825 } 919 }
  920 +
826 public void setReach_station(String reach_station) { 921 public void setReach_station(String reach_station) {
827 this.reach_station = reach_station; 922 this.reach_station = reach_station;
828 } 923 }
829 - 924 +
830 @Column(name = "CARRIER1") 925 @Column(name = "CARRIER1")
831 public String getCarrier1() { 926 public String getCarrier1() {
832 return carrier1; 927 return carrier1;
833 } 928 }
  929 +
834 public void setCarrier1(String carrier1) { 930 public void setCarrier1(String carrier1) {
835 this.carrier1 = carrier1; 931 this.carrier1 = carrier1;
836 } 932 }
837 - 933 +
838 @Column(name = "REACH_STATION1") 934 @Column(name = "REACH_STATION1")
839 public String getReach_station1() { 935 public String getReach_station1() {
840 return reach_station1; 936 return reach_station1;
841 } 937 }
  938 +
842 public void setReach_station1(String reach_station1) { 939 public void setReach_station1(String reach_station1) {
843 this.reach_station1 = reach_station1; 940 this.reach_station1 = reach_station1;
844 } 941 }
845 - 942 +
846 @Column(name = "CARRIER2") 943 @Column(name = "CARRIER2")
847 public String getCarrier2() { 944 public String getCarrier2() {
848 return carrier2; 945 return carrier2;
849 } 946 }
  947 +
850 public void setCarrier2(String carrier2) { 948 public void setCarrier2(String carrier2) {
851 this.carrier2 = carrier2; 949 this.carrier2 = carrier2;
852 } 950 }
853 - 951 +
854 @Column(name = "REACH_STATION2") 952 @Column(name = "REACH_STATION2")
855 public String getReach_station2() { 953 public String getReach_station2() {
856 return reach_station2; 954 return reach_station2;
857 } 955 }
  956 +
858 public void setReach_station2(String reach_station2) { 957 public void setReach_station2(String reach_station2) {
859 this.reach_station2 = reach_station2; 958 this.reach_station2 = reach_station2;
860 } 959 }
861 - 960 +
862 @Column(name = "NAME_OFGOODS") 961 @Column(name = "NAME_OFGOODS")
863 public String getName_ofgoods() { 962 public String getName_ofgoods() {
864 return name_ofgoods; 963 return name_ofgoods;
865 } 964 }
  965 +
866 public void setName_ofgoods(String name_ofgoods) { 966 public void setName_ofgoods(String name_ofgoods) {
867 this.name_ofgoods = name_ofgoods; 967 this.name_ofgoods = name_ofgoods;
868 } 968 }
869 - 969 +
870 @Column(name = "DELIVERY_STATION") 970 @Column(name = "DELIVERY_STATION")
871 public String getDelivery_station() { 971 public String getDelivery_station() {
872 return delivery_station; 972 return delivery_station;
873 } 973 }
  974 +
874 public void setDelivery_station(String delivery_station) { 975 public void setDelivery_station(String delivery_station) {
875 this.delivery_station = delivery_station; 976 this.delivery_station = delivery_station;
876 } 977 }
877 - //主要用于List的contains函数里  
878 - public boolean equals(Object mme){  
879 - if(mme == null) 978 +
  979 + // 主要用于List的contains函数里
  980 + public boolean equals(Object mme) {
  981 + if (mme == null)
880 return false; 982 return false;
881 - PreparesecondaryEntity pe = (PreparesecondaryEntity)mme;  
882 - if(pe.getCo_company() == null && this.getCo_company() == null) 983 + PreparesecondaryEntity pe = (PreparesecondaryEntity) mme;
  984 + if (pe.getCo_company() == null && this.getCo_company() == null)
883 return true; 985 return true;
884 - else if(this.getCo_company() != null){  
885 - //在值相等的情况下,判断时间的大小  
886 - if(this.getCo_company().equals(pe.getCo_company()))  
887 - {  
888 - if(this.getSave_time() == null) 986 + else if (this.getCo_company() != null) {
  987 + // 在值相等的情况下,判断时间的大小
  988 + if (this.getCo_company().equals(pe.getCo_company())) {
  989 + if (this.getSave_time() == null)
889 return true; 990 return true;
890 - else if(pe.getSave_time() == null) 991 + else if (pe.getSave_time() == null)
891 return false; 992 return false;
892 else 993 else
893 return this.getSave_time() > pe.getSave_time(); 994 return this.getSave_time() > pe.getSave_time();
@@ -13,20 +13,14 @@ import com.agent.entity.agent.ConsignorEntity; @@ -13,20 +13,14 @@ import com.agent.entity.agent.ConsignorEntity;
13 public interface ConsignorRepository 13 public interface ConsignorRepository
14 extends PagingAndSortingRepository<ConsignorEntity, Long>, JpaSpecificationExecutor<ConsignorEntity> { 14 extends PagingAndSortingRepository<ConsignorEntity, Long>, JpaSpecificationExecutor<ConsignorEntity> {
15 15
16 - @Query(value = "SELECT * FROM CONSIGNOR WHERE SHPCUSID = ?1 AND CO_COMPANY = ?2 ORDER BY ID DESC", nativeQuery = true)  
17 - public List<ConsignorEntity> findByCodeAndCompany(String shpcusid, String co_company);  
18 -  
19 - @Query(value = "SELECT * FROM CONSIGNOR WHERE SHPCUSID = ?1 ORDER BY ID DESC", nativeQuery = true)  
20 - public List<ConsignorEntity> findByCode(String code);  
21 -  
22 - @Query(value = "SELECT * FROM CONSIGNOR WHERE CO_COMPANY = ?1 ORDER BY ID DESC", nativeQuery = true)  
23 - public List<ConsignorEntity> findByCompany(String company); 16 + @Query(value = "SELECT * FROM CONSIGNOR WHERE CO_COMPANY = ?1 AND CREATOR = ?2 ORDER BY ID DESC", nativeQuery = true)
  17 + public List<ConsignorEntity> findByCompanyAndUserId(String company,long user_id);
24 18
25 @Query(value = "SELECT * FROM CONSIGNOR WHERE ID = ?1 ORDER BY ID DESC", nativeQuery = true) 19 @Query(value = "SELECT * FROM CONSIGNOR WHERE ID = ?1 ORDER BY ID DESC", nativeQuery = true)
26 public List<ConsignorEntity> findById(String id); 20 public List<ConsignorEntity> findById(String id);
27 21
28 - @Query(value = "SELECT * FROM CONSIGNOR ORDER BY ID DESC", nativeQuery = true)  
29 - public List<ConsignorEntity> getAll(); 22 + @Query(value = "SELECT * FROM(SELECT rownum rn,c.* from CONSIGNOR c) cr where cr.rn between ?1 and ?2", nativeQuery = true)
  23 + public List<ConsignorEntity> list(int start,int end);
30 24
31 @Query(value = "SELECT * FROM CONSIGNOR WHERE CREATOR = ?1 ORDER BY ID DESC", nativeQuery = true) 25 @Query(value = "SELECT * FROM CONSIGNOR WHERE CREATOR = ?1 ORDER BY ID DESC", nativeQuery = true)
32 public List<ConsignorEntity> getAllByUserId(long user_id); 26 public List<ConsignorEntity> getAllByUserId(long user_id);
@@ -43,25 +43,14 @@ public class ConsignorService extends BasicService<ConsignorEntity> { @@ -43,25 +43,14 @@ public class ConsignorService extends BasicService<ConsignorEntity> {
43 service.delete(Long.valueOf(id)); 43 service.delete(Long.valueOf(id));
44 } 44 }
45 } 45 }
46 -  
47 - public ConsignorEntity findByCodeAndName(String code, String company) {  
48 - List<ConsignorEntity> consigns = service.findByCodeAndCompany(code, company);  
49 - if (CollectionUtils.isNotEmpty(consigns)) {  
50 - return consigns.get(0);  
51 - }  
52 - return null;  
53 - }  
54 -  
55 - public ConsignorEntity findByCode(String code) {  
56 - List<ConsignorEntity> consigns = service.findByCode(code);  
57 - if (CollectionUtils.isNotEmpty(consigns)) {  
58 - return consigns.get(0);  
59 - }  
60 - return null; 46 +
  47 + public ConsignorEntity findById(String id) {
  48 + List<ConsignorEntity> list = service.findById(id);
  49 + return list!=null&&!list.isEmpty()?list.get(0):null;
61 } 50 }
62 51
63 - public ConsignorEntity findByCompany(String company) {  
64 - List<ConsignorEntity> consigns = service.findByCompany(company); 52 + public ConsignorEntity findByCompanyAndUserId(String company,long user_id) {
  53 + List<ConsignorEntity> consigns = service.findByCompanyAndUserId(company,user_id);
65 if (CollectionUtils.isNotEmpty(consigns)) { 54 if (CollectionUtils.isNotEmpty(consigns)) {
66 return consigns.get(0); 55 return consigns.get(0);
67 } 56 }
@@ -80,9 +69,15 @@ public class ConsignorService extends BasicService<ConsignorEntity> { @@ -80,9 +69,15 @@ public class ConsignorService extends BasicService<ConsignorEntity> {
80 service.save(c); 69 service.save(c);
81 } 70 }
82 } 71 }
  72 +
  73 + public long count() {
  74 + return service.count();
  75 + }
83 76
84 - public List<ConsignorEntity> findAll() {  
85 - return service.getAll(); 77 + public List<ConsignorEntity> list(int page,int limit) {
  78 + int start = (page-1)*limit+1;
  79 + int end = page*limit;
  80 + return service.list(start,end);
86 } 81 }
87 82
88 public List<ConsignorEntity> findAllByUserId(long user_id) { 83 public List<ConsignorEntity> findAllByUserId(long user_id) {
@@ -93,11 +88,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> { @@ -93,11 +88,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> {
93 service.save(c); 88 service.save(c);
94 } 89 }
95 90
96 - public List<ConsignorEntity> findById(String id) {  
97 - return service.findById(id);  
98 - }  
99 -  
100 - public void saveFromManifest(ManifestEntity manifest) { 91 + public void saveFromManifest(ManifestEntity manifest,long user_id) {
101 if (manifest != null && StringUtils.isNotBlank(manifest.getCo_company())) { 92 if (manifest != null && StringUtils.isNotBlank(manifest.getCo_company())) {
102 ConsignorEntity bean = new ConsignorEntity(); 93 ConsignorEntity bean = new ConsignorEntity();
103 bean.setCo_address(manifest.getCo_address()); 94 bean.setCo_address(manifest.getCo_address());
@@ -116,7 +107,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> { @@ -116,7 +107,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> {
116 bean.setCreator(Tools.getUserEntity()); 107 bean.setCreator(Tools.getUserEntity());
117 bean.setModifier(Tools.getUserEntity()); 108 bean.setModifier(Tools.getUserEntity());
118 109
119 - ConsignorEntity old = findByCompany(manifest.getCo_company()); 110 + ConsignorEntity old = findByCompanyAndUserId(manifest.getCo_company(), user_id);
120 if (old != null) { 111 if (old != null) {
121 service.delete(old.getId()); 112 service.delete(old.getId());
122 } 113 }
@@ -124,7 +115,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> { @@ -124,7 +115,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> {
124 } 115 }
125 } 116 }
126 117
127 - public void saveFromPreparesecondary(PreparesecondaryEntity prepare) { 118 + public void saveFromPreparesecondary(PreparesecondaryEntity prepare,long user_id) {
128 if (prepare != null && StringUtils.isNotBlank(prepare.getCo_company())) { 119 if (prepare != null && StringUtils.isNotBlank(prepare.getCo_company())) {
129 ConsignorEntity bean = new ConsignorEntity(); 120 ConsignorEntity bean = new ConsignorEntity();
130 bean.setCo_address(prepare.getCo_address()); 121 bean.setCo_address(prepare.getCo_address());
@@ -143,7 +134,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> { @@ -143,7 +134,7 @@ public class ConsignorService extends BasicService<ConsignorEntity> {
143 bean.setCreator(Tools.getUserEntity()); 134 bean.setCreator(Tools.getUserEntity());
144 bean.setModifier(Tools.getUserEntity()); 135 bean.setModifier(Tools.getUserEntity());
145 136
146 - ConsignorEntity old = findByCompany(prepare.getCo_company()); 137 + ConsignorEntity old = findByCompanyAndUserId(prepare.getCo_company(), user_id);
147 if (old != null) { 138 if (old != null) {
148 service.delete(old.getId()); 139 service.delete(old.getId());
149 } 140 }
@@ -152,10 +143,4 @@ public class ConsignorService extends BasicService<ConsignorEntity> { @@ -152,10 +143,4 @@ public class ConsignorService extends BasicService<ConsignorEntity> {
152 } 143 }
153 } 144 }
154 145
155 - // public Page<ConsignorEntity> getPage(EasyPage<ConsigneeEntity> pageForm) {  
156 - // PageRequest pageRequest = buildPageRequest(pageForm);  
157 - // Specification<ConsignorEntity> spec = buildSpecification(pageForm);  
158 - // Page<ConsignorEntity> page = service.findAll(spec, pageRequest);  
159 - // return page;  
160 - // }  
161 } 146 }
@@ -518,7 +518,7 @@ public class ManifestService extends BasicService<ManifestEntity> { @@ -518,7 +518,7 @@ public class ManifestService extends BasicService<ManifestEntity> {
518 mcs.setCategory(pre.getCategory() != null ? pre.getCategory() : ""); 518 mcs.setCategory(pre.getCategory() != null ? pre.getCategory() : "");
519 519
520 ManifestConsigneeXml mcons = new ManifestConsigneeXml(); 520 ManifestConsigneeXml mcons = new ManifestConsigneeXml();
521 - mcons.setName(pre.getCo_name()); 521 + mcons.setName(pre.getSh_name());
522 522
523 ManifestAddressXml madd = new ManifestAddressXml(); 523 ManifestAddressXml madd = new ManifestAddressXml();
524 madd.setLine(pre.getSh_address()); 524 madd.setLine(pre.getSh_address());
@@ -538,7 +538,7 @@ public class ManifestService extends BasicService<ManifestEntity> { @@ -538,7 +538,7 @@ public class ManifestService extends BasicService<ManifestEntity> {
538 mcs.setConsignee(mcons); 538 mcs.setConsignee(mcons);
539 539
540 ManifestConsignorXml maci = new ManifestConsignorXml(); 540 ManifestConsignorXml maci = new ManifestConsignorXml();
541 - maci.setName(pre.getSh_name()); 541 + maci.setName(pre.getCo_name());
542 542
543 ManifestsAddressXml msadd = new ManifestsAddressXml(); 543 ManifestsAddressXml msadd = new ManifestsAddressXml();
544 msadd.setLine(pre.getCo_address()); 544 msadd.setLine(pre.getCo_address());
@@ -2,39 +2,43 @@ package com.agent.vo; @@ -2,39 +2,43 @@ package com.agent.vo;
2 2
3 import java.io.Serializable; 3 import java.io.Serializable;
4 4
5 -public class ResponseModel implements Serializable{  
6 - 5 +public class ResponseModel implements Serializable {
  6 +
7 private static final long serialVersionUID = 5285476448351872035L; 7 private static final long serialVersionUID = 5285476448351872035L;
8 - 8 +
9 /** 9 /**
10 - * 状态码  
11 - * 200 成功  
12 - * 404 不存在  
13 - * 500 出现异常 10 + * 状态码 200 成功 404 不存在 500 出现异常
14 */ 11 */
15 private int status; 12 private int status;
16 - 13 +
  14 + /**
  15 + * 给layui的数据表格ajax请求结果做标识 0 成功;其它失败
  16 + */
  17 + private int code;
  18 +
17 /** 19 /**
18 * 提示信息 20 * 提示信息
19 */ 21 */
20 private String msg; 22 private String msg;
21 - 23 +
22 /** 24 /**
23 * 数据实体 25 * 数据实体
24 */ 26 */
25 private Object data; 27 private Object data;
26 private int page; 28 private int page;
27 - private int count;  
28 - public ResponseModel(){  
29 - 29 + private long count;
  30 +
  31 + public ResponseModel() {
  32 +
30 } 33 }
31 - 34 +
32 public ResponseModel(int status, String msg, Object data) { 35 public ResponseModel(int status, String msg, Object data) {
33 this.status = status; 36 this.status = status;
34 this.msg = msg; 37 this.msg = msg;
35 this.data = data; 38 this.data = data;
  39 + setCode(status==200?0:400);
36 } 40 }
37 - 41 +
38 public int getPage() { 42 public int getPage() {
39 return page; 43 return page;
40 } 44 }
@@ -43,11 +47,11 @@ public class ResponseModel implements Serializable{ @@ -43,11 +47,11 @@ public class ResponseModel implements Serializable{
43 this.page = page; 47 this.page = page;
44 } 48 }
45 49
46 - public int getCount() { 50 + public long getCount() {
47 return count; 51 return count;
48 } 52 }
49 53
50 - public void setCount(int count) { 54 + public void setCount(long count) {
51 this.count = count; 55 this.count = count;
52 } 56 }
53 57
@@ -75,4 +79,16 @@ public class ResponseModel implements Serializable{ @@ -75,4 +79,16 @@ public class ResponseModel implements Serializable{
75 this.data = data; 79 this.data = data;
76 } 80 }
77 81
  82 + public int getCode() {
  83 + return code;
  84 + }
  85 +
  86 + public void setCode(int code) {
  87 + this.code = code;
  88 + }
  89 +
  90 + public static long getSerialversionuid() {
  91 + return serialVersionUID;
  92 + }
  93 +
78 } 94 }
@@ -52,6 +52,22 @@ menu.track=Tracking @@ -52,6 +52,22 @@ menu.track=Tracking
52 menu.premanifest=Pre Manifest 52 menu.premanifest=Pre Manifest
53 menu.shunt=Shunt 53 menu.shunt=Shunt
54 menu.consignee_info_set=Consignee Info Set 54 menu.consignee_info_set=Consignee Info Set
  55 +menu.consignor_info_set=Consignor Info Set
  56 +
  57 +
  58 +###
  59 +consignee.code=Code
  60 +consignee.name=name
  61 +consignee.address=Address
  62 +consignee.tel=Tel
  63 +consignee.list=Consignee List
  64 +
  65 +###
  66 +consignor.code=Code
  67 +consignor.name=name
  68 +consignor.address=Address
  69 +consignor.tel=Tel
  70 +consignor.list=Consignor List
55 71
56 index.modifyPassword=Reset 72 index.modifyPassword=Reset
57 index.logout=Logout 73 index.logout=Logout
@@ -615,8 +631,4 @@ deliveryorder.state=State @@ -615,8 +631,4 @@ deliveryorder.state=State
615 deliveryorder.agent.company=Agent Company 631 deliveryorder.agent.company=Agent Company
616 deliveryorder.remarks=Remarks 632 deliveryorder.remarks=Remarks
617 deliveryorder.delivery.password=Delivery Password 633 deliveryorder.delivery.password=Delivery Password
618 -###  
619 -consignee.code=Code  
620 -consignee.name=name  
621 -consignee.address=Address  
622 -consignee.tel=Tel 634 +
@@ -52,7 +52,23 @@ menu.handlebill=\u529E\u5355 @@ -52,7 +52,23 @@ menu.handlebill=\u529E\u5355
52 menu.track=\u8D27\u51B5\u8FFD\u8E2A 52 menu.track=\u8D27\u51B5\u8FFD\u8E2A
53 menu.premanifest=\u9884\u914D\u8231\u5355 53 menu.premanifest=\u9884\u914D\u8231\u5355
54 menu.shunt=\u5206\u62E8\u5206\u6D41\u7533\u8BF7 54 menu.shunt=\u5206\u62E8\u5206\u6D41\u7533\u8BF7
55 -menu.consignee_info_set=\u6536\u8D27\u4EBA\u4FE1\u606F\u914D\u7F6E 55 +menu.consignee_info_set=\u6536\u8D27\u4EBA\u7BA1\u7406
  56 +menu.consignor_info_set=\u53D1\u8D27\u4EBA\u7BA1\u7406
  57 +
  58 +
  59 +###
  60 +consignee.code=\u7B80\u79F0
  61 +consignee.name=\u5168\u79F0
  62 +consignee.address=\u5730\u5740
  63 +consignee.tel=\u7535\u8BDD
  64 +consignee.list=\u6536\u8D27\u4EBA\u5217\u8868
  65 +
  66 +###
  67 +consignor.code=\u7B80\u79F0
  68 +consignor.name=\u5168\u79F0
  69 +consignor.address=\u5730\u5740
  70 +consignor.tel=\u7535\u8BDD
  71 +consignor.list=\u53D1\u8D27\u4EBA\u5217\u8868
56 72
57 73
58 index.modifyPassword=\u91CD\u7F6E\u5BC6\u7801 74 index.modifyPassword=\u91CD\u7F6E\u5BC6\u7801
@@ -613,9 +629,3 @@ deliveryorder.state=\u72B6\u6001 @@ -613,9 +629,3 @@ deliveryorder.state=\u72B6\u6001
613 deliveryorder.agent.company=\u4ee3\u7406\u4eba\u516c\u53f8 629 deliveryorder.agent.company=\u4ee3\u7406\u4eba\u516c\u53f8
614 deliveryorder.remarks=\u5907\u6ce8 630 deliveryorder.remarks=\u5907\u6ce8
615 deliveryorder.delivery.password=\u63d0\u8d27\u5bc6\u7801 631 deliveryorder.delivery.password=\u63d0\u8d27\u5bc6\u7801
616 -  
617 -###  
618 -consignee.code=\u7B80\u79F0  
619 -consignee.name=\u5168\u79F0  
620 -consignee.address=\u5730\u5740  
621 -consignee.tel=\u7535\u8BDD  
1 -<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>  
2 -<%@ taglib prefix="spring" uri="http://www.springframework.org/tags" %>  
3 -<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>  
4 -<%@ page language="java" contentType="text/html; charset=UTF-8"  
5 - pageEncoding="UTF-8"%> 1 +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  2 +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
  3 +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4 +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
6 <% 5 <%
7 - String path = request.getContextPath();  
8 - String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/"; 6 + String path = request.getContextPath();
  7 + String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
  8 + + path + "/";
9 %> 9 %>
10 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 10 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
11 <html> 11 <html>
12 <head> 12 <head>
13 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> 13 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
14 -<title><string:message="menu.consignee_info_set" /></title>  
15 - <meta name="viewport" content="width=device-width, initial-scale=1">  
16 - <link href="<%=basePath %>resource/css/base.css" rel="stylesheet">  
17 - <link href="<%=basePath %>resource/css/basic_info.css" rel="stylesheet">  
18 - <link rel="stylesheet" type="text/css" href="<%=basePath %>resource/easyui/uimaker/icon.css">  
19 - <link rel="stylesheet" href="<%=basePath %>resource/easyui/uimaker/easyui.css">  
20 - <link rel="stylesheet" href="<%=basePath %>resource/css/form.css">  
21 - <script type="text/javascript" src="<%=basePath %>resource/easyui/jquery.min.js"></script>  
22 - <script type="text/javascript" src="<%=basePath %>resource/validate/jquery.validate.js"></script>  
23 - <script type="text/javascript" src="<%=basePath %>resource/validate/validate-extends.js"></script>  
24 - <script type="text/javascript" src="<%=basePath %>resource/easyui/jquery.easyui.min.js"></script>  
25 - <script type="text/javascript" src="<%=basePath %>resource/easyui/easyui-lang-${pageContext.response.locale}.js"></script>  
26 - <script type="text/javascript" src="<%=basePath %>resource/js/tools.js"></script>  
27 - <!--弹出层引入的JS-->  
28 - <script type="text/javascript" src="<%=basePath %>resource/layer-v3.0.3/layer/layer.js"></script>  
29 -  
30 -  
31 - <style type="text/css">  
32 - .required_span{  
33 - color:red;  
34 - margin-left:10px;  
35 - font-size:20px;  
36 - }  
37 - </style>  
38 - <!-- validate 验证中英文 -->  
39 - <script type="text/javascript" src="<%=basePath %>resource/validate/jquery.validate-${pageContext.response.locale}.js"></script> 14 +<title><string:message code="menu.consignee_info_set" /></title>
  15 +<meta name="viewport" content="width=device-width, initial-scale=1">
  16 +<link href="<%=basePath%>resource/css/base.css" rel="stylesheet">
  17 +<link href="<%=basePath%>resource/css/basic_info.css" rel="stylesheet">
  18 +<link rel="stylesheet" type="text/css" href="<%=basePath%>resource/easyui/uimaker/icon.css">
  19 +<link rel="stylesheet" href="<%=basePath%>resource/easyui/uimaker/easyui.css">
  20 +<link rel="stylesheet" href="<%=basePath%>resource/css/form.css">
  21 +<script type="text/javascript" src="<%=basePath%>resource/easyui/jquery.min.js"></script>
  22 +<script type="text/javascript" src="<%=basePath%>resource/validate/jquery.validate.js"></script>
  23 +<script type="text/javascript" src="<%=basePath%>resource/validate/validate-extends.js"></script>
  24 +<script type="text/javascript" src="<%=basePath%>resource/easyui/jquery.easyui.min.js"></script>
  25 +<script type="text/javascript"
  26 + src="<%=basePath %>resource/easyui/easyui-lang-${pageContext.response.locale}.js"></script>
  27 +<script type="text/javascript" src="<%=basePath%>resource/js/tools.js"></script>
  28 +<!--弹出层引入的JS-->
  29 +<script type="text/javascript" src="<%=basePath%>resource/layer-v3.0.3/layer/layer.js"></script>
  30 +
  31 +
  32 +<style type="text/css">
  33 +.required_span {
  34 + color: red;
  35 + margin-left: 10px;
  36 + font-size: 20px;
  37 +}
  38 +</style>
  39 +<!-- validate 验证中英文 -->
  40 +<script type="text/javascript"
  41 + src="<%=basePath %>resource/validate/jquery.validate-${pageContext.response.locale}.js"></script>
40 </head> 42 </head>
41 <body> 43 <body>
42 <div class="container"> 44 <div class="container">
43 - <table id="dg" style="width:100%;" title='<spring:message code="role.list"/>'  
44 - data-options=" 45 + <table id="dg" style="width: 100%;" title='<spring:message code="consignee.list"/>'
  46 + data-options="
45 rownumbers:true, 47 rownumbers:true,
46 singleSelect:false, 48 singleSelect:false,
47 autoRowHeight:false, 49 autoRowHeight:false,
@@ -50,29 +52,36 @@ @@ -50,29 +52,36 @@
50 striped:true, 52 striped:true,
51 collapsible:true, 53 collapsible:true,
52 toolbar:'#tb', 54 toolbar:'#tb',
53 - pageSize:10" >  
54 - <thead>  
55 - <tr>  
56 - <th field="id" checkbox="true"></th>  
57 - <th field="." formatter="editFormat" width="40"><spring:message code="opt.edit" /></th>  
58 - <th field="code" width="100"><spring:message code="consignee.code"/></th>  
59 - <th field="name" width="100"><spring:message code="consignee.name"/></th>  
60 - <th field="address" width="100"><spring:message code="consignee.address"/></th>  
61 - <th field="tel" width="50"><spring:message code="consignee.tel"/></th>  
62 - </tr>  
63 - </thead>  
64 - </table>  
65 - <div id="tb" style="padding:0 30px;"> <input type="hidden" id="idcc">  
66 - <form id="searchForm">  
67 - <table class="search_form_table">  
68 - <a href="javascript:editRow()" class="easyui-linkbutton" style="background:#18A197;color:#FFF;border: 1px solid #18A197;" iconCls="icon-add"><spring:message code="opt.add" /></a>  
69 - <a href="javascript:doDelete()" class="easyui-linkbutton" style="background:red;color:#FFF;border: 1px solid red" iconCls="icon-no"><spring:message code="opt.delete" /></a>  
70 -  
71 - </table>  
72 - </form>  
73 - </div> 55 + pageSize:10">
  56 + <thead>
  57 + <tr>
  58 + <th field="id" checkbox="true"></th>
  59 + <th field="." formatter="editFormat" width="40"><spring:message code="opt.edit" /></th>
  60 + <th field="code" width="100"><spring:message code="consignee.code" /></th>
  61 + <th field="name" width="100"><spring:message code="consignee.name" /></th>
  62 + <th field="address" width="100"><spring:message code="consignee.address" /></th>
  63 + <th field="tel" width="50"><spring:message code="consignee.tel" /></th>
  64 + </tr>
  65 + </thead>
  66 + </table>
  67 + <div id="tb" style="padding: 0 30px;">
  68 + <input type="hidden" id="idcc">
  69 + <form id="searchForm">
  70 + <table class="search_form_table">
  71 + <a href="javascript:editRow()" class="easyui-linkbutton"
  72 + style="background: #18A197; color: #FFF; border: 1px solid #18A197;" iconCls="icon-add">
  73 + <spring:message code="opt.add" />
  74 + </a>
  75 + <a href="javascript:doDelete()" class="easyui-linkbutton"
  76 + style="background: red; color: #FFF; border: 1px solid red" iconCls="icon-no">
  77 + <spring:message code="opt.delete" />
  78 + </a>
  79 +
  80 + </table>
  81 + </form>
  82 + </div>
74 </div> 83 </div>
75 - 84 +
76 <script> 85 <script>
77 <%-- $.ajax({ 86 <%-- $.ajax({
78 url:"<%=basePath %>consignee/grid.json", 87 url:"<%=basePath %>consignee/grid.json",
@@ -82,7 +91,7 @@ @@ -82,7 +91,7 @@
82 }); --%> 91 }); --%>
83 $(function(){ 92 $(function(){
84 $("#dg").datagrid({ 93 $("#dg").datagrid({
85 - url:"<%=basePath %>consignee/grid.json", 94 + url:"<%=basePath%>consignee/grid.json",
86 /* queryParams:$("#searchForm").serializeJson(), */ 95 /* queryParams:$("#searchForm").serializeJson(), */
87 onLoadSuccess:function(data){ 96 onLoadSuccess:function(data){
88 console.log("load data success!"); 97 console.log("load data success!");
@@ -96,9 +105,9 @@ @@ -96,9 +105,9 @@
96 } 105 }
97 function editRow(id){ 106 function editRow(id){
98 if(typeof(id) == "undefined") 107 if(typeof(id) == "undefined")
99 - window.location.href = "<%=basePath %>/consignee/edit"; 108 + window.location.href = "<%=basePath%>/consignee/edit";
100 else 109 else
101 - window.location.href = "<%=basePath %>/consignee/edit?id="+id; 110 + window.location.href = "<%=basePath%>/consignee/edit?id="+id;
102 } 111 }
103 function doDelete(){ 112 function doDelete(){
104 var rows = $("#dg").datagrid('getChecked'); 113 var rows = $("#dg").datagrid('getChecked');
  1 +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  2 +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
  3 +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4 +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  5 +<%
  6 + String path = request.getContextPath();
  7 + String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
  8 + + path + "/";
  9 +%>
  10 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  11 +<html>
  12 +<head>
  13 +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  14 +<meta name="viewport" content="width=device-width, initial-scale=1">
  15 +<title><spring:message code="menu.consignor_info_set" /></title>
  16 +<script type="text/javascript" src="<%=basePath%>resource/easyui/jquery.min.js"></script>
  17 +<script type="text/javascript" src="<%=basePath%>resource/validate/jquery.validate.js"></script>
  18 +<script type="text/javascript" src="<%=basePath%>resource/validate/validate-extends.js"></script>
  19 +<!-- validate 验证中英文 -->
  20 +<script type="text/javascript"
  21 + src="<%=basePath %>resource/validate/jquery.validate-${pageContext.response.locale}.js"></script>
  22 +<link rel="stylesheet" href="<%=basePath%>resource/layui/css/layui.css" media="all">
  23 +<script type="text/javascript" src="<%=basePath%>resource/layui/layui.js"></script>
  24 +<script type="text/javascript" src="<%=basePath%>resource/js/tools.js"></script>
  25 +<style type="text/css">
  26 +.required_span {
  27 + color: red;
  28 + margin-left: 10px;
  29 + font-size: 20px;
  30 +}
  31 +</style>
  32 +</head>
  33 +<body>
  34 + <form class="layui-form">
  35 + <input type="hidden" id="id" name="id" value="${consignor.id}">
  36 + <table class="layui-table">
  37 + <tbody>
  38 + <tr>
  39 + <td><spring:message code="manifest.company" /><span class="required_span">*</span></td>
  40 + <td colspan="5"><input type="text" name="co_company" id="co_company"
  41 + value="${consignor.co_company}" autocomplete="off" class="layui-input" required
  42 + maxlength="45" oninput="onInputChange(event,'co_company','oninput')"
  43 + onpropertychange="onInputChange(event,'co_company','onpropertychange')"></td>
  44 + </tr>
  45 +
  46 + <tr>
  47 + <td><spring:message code="manifest.send_name" /><span class="required_span">*</span></td>
  48 + <td><input type="text" name="co_name" value="${consignor.co_name}"
  49 + autocomplete="off" class="layui-input" required maxlength="45"></td>
  50 + <td><spring:message code="manifest.telephone" /></td>
  51 + <td><input type="text" name="co_telephone" placeholder="<spring:message code="manifest.fhr.fh_placeholder"/>"
  52 + value="${consignor.co_telephone}" autocomplete="off" class="layui-input" maxlength="45"></td>
  53 + <td><spring:message code="manifest.fax" /></td>
  54 + <td><input type="text" name="co_fax" placeholder="<spring:message code="manifest.fhr.fh_placeholder"/>" value="${consignor.co_fax}"
  55 + autocomplete="off" class="layui-input" maxlength="45"></td>
  56 + </tr>
  57 +
  58 +
  59 + <tr>
  60 + <td><spring:message code="manifest.country" /><span class="required_span">*</span></td>
  61 + <td><input required type="text" name="co_country" value="${consignor.co_country}"
  62 + autocomplete="off" class="layui-input" maxlength="45"></td>
  63 + <td><spring:message code="manifest.city" /></td>
  64 + <td><input type="text" name="co_city"
  65 + value="${consignor.co_city}" autocomplete="off" class="layui-input" required maxlength="45"></td>
  66 + <td><spring:message code="manifest.zip.code" /></td>
  67 + <td><input type="text" name="co_zipcode" value="${consignor.co_zipcode}"
  68 + autocomplete="off" class="layui-input" maxlength="45"></td>
  69 + </tr>
  70 +
  71 + <tr>
  72 + <td><spring:message code="manifest.address" /><span class="required_span">*</span></td>
  73 + <td colspan="5"><input required type="text" name="co_address"
  74 + value="${consignor.co_address}" autocomplete="off" class="layui-input" maxlength="45"></td>
  75 + </tr>
  76 +
  77 + <tr>
  78 + <td><spring:message code="manifest.fhr.shpcusid" /><span class="required_span">*</span></td>
  79 + <td><input id="shpcusid" type="text" name="shpcusid" value="${consignor.shpcusid}"
  80 + autocomplete="off" class="layui-input" maxlength="45" oninput="onInputChange(event,'shpcusid','oninput')"
  81 + onpropertychange="onInputChange(event,'shpcusid','onpropertychange')"></td>
  82 + <td><spring:message code="manifest.fhr.shpaeo" /></td>
  83 + <td colspan="3"><input type="text" name="shpaeo" id="shpaeo"
  84 + value="${consignor.shpaeo}" autocomplete="off" class="layui-input" maxlength="45"
  85 + oninput="onInputChange(event,'shpaeo','oninput')"
  86 + onpropertychange="onInputChange(event,'shpaeo','onpropertychange')"></td>
  87 + </tr>
  88 + </tbody>
  89 + </table>
  90 +
  91 + <div class="layui-form-item">
  92 + <div class="layui-input-block">
  93 + <button class="layui-btn" lay-submit lay-filter="formDemo"><spring:message code="opt.save"/></span></button>
  94 + <button type="button" class="layui-btn layui-btn-primary"
  95 + onclick="self.location=document.referrer;">返回</button>
  96 + </div>
  97 + </div>
  98 + </form>
  99 +
  100 + <script>
  101 + var layer;
  102 + layui.use('layer', function() {
  103 + layer = layui.layer;
  104 + });
  105 +
  106 + $(window).load(function() {
  107 + });
  108 +
  109 + layui.use('form', function() {
  110 + var form = layui.form;
  111 +
  112 + form.on('submit(formDemo)', function(data){
  113 + var phone = data.field.co_telephone;
  114 + var fax = data.field.co_fax;
  115 + if(isEmpty(phone)&&isEmpty(fax)){
  116 + layer.msg("电话和传真必须填写一项!");
  117 + return false;
  118 + }
  119 +
  120 + save(data.field);
  121 + return false;
  122 + });
  123 +
  124 + });
  125 +
  126 + function save(data){
  127 + var url = "<%=basePath%>/consignor/save";
  128 + var params = "co_name=" + data.co_name;
  129 + params += "&co_company=" + data.co_company;
  130 + if (data.id) {
  131 + params += "&id=" + data.id;
  132 + }
  133 + if (data.shpcusid) {
  134 + params += "&shpcusid=" + data.shpcusid;
  135 + }
  136 + if (data.shpaeo) {
  137 + params += "&shpaeo=" + data.shpaeo;
  138 + }
  139 + if (data.co_address) {
  140 + params += "&co_address=" + data.co_address;
  141 + }
  142 + if (data.co_zipcode) {
  143 + params += "&co_zipcode=" + data.co_zipcode;
  144 + }
  145 + if (data.co_city) {
  146 + params += "&co_city=" + data.co_city;
  147 + }
  148 + if (data.co_deltaname) {
  149 + params += "&co_deltaname=" + data.co_deltaname;
  150 + }
  151 + if (data.co_country) {
  152 + params += "&co_country=" + data.co_country;
  153 + }
  154 + if (data.co_telephone) {
  155 + params += "&co_telephone=" + data.co_telephone;
  156 + }
  157 + if (data.co_fax) {
  158 + params += "&co_fax=" + data.co_fax;
  159 + }
  160 + if (data.co_provincecode) {
  161 + params += "&co_provincecode=" + data.co_provincecode;
  162 + }
  163 +
  164 + $.post(url, params, function(response, status) {
  165 + if (response.status == 200) {
  166 + setInterval("afterSuccess()","1000");
  167 + }
  168 +
  169 + layer.msg(response.msg);
  170 + });
  171 + }
  172 +
  173 + function afterSuccess(){
  174 + self.location = document.referrer;
  175 + }
  176 + </script>
  177 +</body>
  178 +</html>
  1 +<%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  2 +<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
  3 +<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4 +<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  5 +<%
  6 + String path = request.getContextPath();
  7 + String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort()
  8 + + path + "/";
  9 +%>
  10 +<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  11 +<html>
  12 +<head>
  13 +<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  14 +<meta name="viewport" content="width=device-width, initial-scale=1">
  15 +<title><spring:message code="menu.consignor_info_set" /></title>
  16 +<script type="text/javascript" src="<%=basePath%>resource/easyui/jquery.min.js"></script>
  17 +<script type="text/javascript" src="<%=basePath%>resource/validate/jquery.validate.js"></script>
  18 +<script type="text/javascript" src="<%=basePath%>resource/validate/validate-extends.js"></script>
  19 +<!-- validate 验证中英文 -->
  20 +<script type="text/javascript"
  21 + src="<%=basePath %>resource/validate/jquery.validate-${pageContext.response.locale}.js"></script>
  22 +<link rel="stylesheet" href="<%=basePath%>resource/layui/css/layui.css" media="all">
  23 +<script type="text/javascript" src="<%=basePath%>resource/layui/layui.js"></script>
  24 +<script type="text/javascript" src="<%=basePath%>resource/js/tools.js"></script>
  25 +</head>
  26 +<body>
  27 + <div class="layui-collapse">
  28 + <div class="layui-colla-item">
  29 + <h2 class="layui-colla-title">
  30 + <spring:message code="consignor.list" />
  31 + </h2>
  32 + <div class="layui-colla-content layui-show">
  33 + <div class="layui-row">
  34 + <div class="layui-col-md12">
  35 + <button class="layui-btn" onclick="edit()">新增</button>
  36 + <button class="layui-btn layui-btn-danger" onclick="onDelete()">删除</button>
  37 + </div>
  38 + </div>
  39 + <table id="consignor-table" class="layui-hide" lay-filter="consignor-table"></table>
  40 + </div>
  41 + </div>
  42 + </div>
  43 +
  44 + <script type="text/html" id="opt-bar">
  45 + <i class="layui-icon layui-icon-edit" style="font-size: 14px; color: #1E9FFF;" lay-event="edit">编辑</i>
  46 + </script>
  47 +
  48 + <script>
  49 + var layer;
  50 + layui.use('layer', function() {
  51 + layer = layui.layer;
  52 + });
  53 +
  54 + layui.use('element', function() {
  55 + var element = layui.element;
  56 + });
  57 +
  58 + $(window).load(function() {
  59 + doSearch();
  60 + });
  61 +
  62 + var table;
  63 + function doSearch() {
  64 + var api = "<%=basePath%>consignor/search";
  65 + layui.use('table', function() {
  66 + table = layui.table;
  67 + table.on('checkbox(consignor-table)', function(obj) {
  68 + /* console.log(JSON.stringify(obj)) */
  69 + });
  70 +
  71 + table.render({
  72 + elem : '#consignor-table',
  73 + url : api,
  74 + limit : 10,
  75 + page : true,
  76 + loading : true,
  77 + limits : [ 10, 15, 20, 25, 30, 35, 40, 45, 50 ],
  78 + text : '暂无数据',
  79 + cols : [ [ //表头
  80 + {
  81 + type : 'checkbox',
  82 + fixed : 'left',
  83 + width : 60
  84 + }, {
  85 + field : '',
  86 + title : '操作',
  87 + toolbar : '#opt-bar',
  88 + width : 80
  89 + }, {
  90 + field : 'co_company',
  91 + title : '发货人公司',
  92 + }, {
  93 + field : 'co_city',
  94 + title : '发货人城市',
  95 + sort : true
  96 + }, {
  97 + field : 'co_country',
  98 + title : '国家代码',
  99 + sort : true,
  100 + width : 80
  101 + }, {
  102 + field : 'co_telephone',
  103 + title : '电话'
  104 + } ] ]
  105 + });
  106 + });
  107 + }
  108 +
  109 + function onDelete() {
  110 + var checkStatus = table.checkStatus('consignor-table');
  111 + var data = checkStatus.data;
  112 + if(data&&data.length){
  113 + var ids="";
  114 + for (var i = 0; i < data.length; i++) {
  115 + var item = data[i];
  116 + var id = item.id;
  117 + ids+=id;
  118 + ids+=","
  119 + }
  120 +
  121 + parent.layer.confirm('确定删除吗?', function(index) {
  122 + layer.close(index);
  123 + doDelete(ids);
  124 + });
  125 + }
  126 + }
  127 +
  128 + function doDelete(ids) {
  129 + var api = "<%=basePath%>consignor/delete";
  130 + $.post(api, "ids="+ids, function(response, status) {
  131 + if(response.status==200){
  132 + layer.msg('删除成功');
  133 + window.location.reload();
  134 + }else{
  135 + layer.msg("操作失败");
  136 + console.log("response-->"+JSON.stringify(response));
  137 + }
  138 + });
  139 + }
  140 +
  141 + layui.use('table', function() {
  142 + var table = layui.table;
  143 + table.on('tool(consignor-table)', function(obj) { //注:tool是工具条事件名,test是table原始容器的属性 lay-filter="对应的值"
  144 + var data = obj.data; //获得当前行数据
  145 + var layEvent = obj.event; //获得 lay-event 对应的值(也可以是表头的 event 参数对应的值)
  146 + var tr = obj.tr; //获得当前行 tr 的DOM对象
  147 +
  148 + if (layEvent === 'edit') { //编辑
  149 + window.location.href = "<%=basePath%>/consignor/edit?id="+data.id;
  150 + }
  151 + });
  152 + });
  153 +
  154 + function edit(){
  155 + window.location.href = "<%=basePath%>/consignor/edit";
  156 + }
  157 +
  158 + </script>
  159 +</body>
  160 +</html>
@@ -79,7 +79,7 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request. @@ -79,7 +79,7 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.
79 <li class="active"><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.role" />||system/role/list',this)"><spring:message code="menu.role" /></a></li> 79 <li class="active"><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.role" />||system/role/list',this)"><spring:message code="menu.role" /></a></li>
80 <li><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.agent" />||agent/list',this)"><spring:message code="menu.agent" /></a></li> 80 <li><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.agent" />||agent/list',this)"><spring:message code="menu.agent" /></a></li>
81 <li><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.user" />||system/user/list',this)"><spring:message code="menu.user" /></a></li> 81 <li><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.user" />||system/user/list',this)"><spring:message code="menu.user" /></a></li>
82 - <li><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.consignee_info_set" />||consignee/list')"><spring:message code="menu.consignee_info_set" /></a></li> 82 + <%-- <li><a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.consignee_info_set" />||consignee/list')"><spring:message code="menu.consignee_info_set" /></a></li> --%>
83 </ul> 83 </ul>
84 </li> 84 </li>
85 </shiro:hasRole> 85 </shiro:hasRole>
@@ -136,6 +136,18 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request. @@ -136,6 +136,18 @@ String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.
136 <span class="sider-nav-title"><spring:message code="menu.premanifest" /></span> 136 <span class="sider-nav-title"><spring:message code="menu.premanifest" /></span>
137 </a> 137 </a>
138 </li> 138 </li>
  139 + <li>
  140 + <a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.consignee_info_set" />||consignee/list',this)">
  141 + <span class="iconfont sider-nav-icon">&#xe6c3;</span>
  142 + <span class="sider-nav-title"><spring:message code="menu.consignee_info_set" /></span>
  143 + </a>
  144 + </li>
  145 + <li>
  146 + <a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.consignor_info_set" />||consignor/list',this)">
  147 + <span class="iconfont sider-nav-icon">&#xe6c3;</span>
  148 + <span class="sider-nav-title"><spring:message code="menu.consignor_info_set" /></span>
  149 + </a>
  150 + </li>
139 <!-- <li> --> 151 <!-- <li> -->
140 <%-- <a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.shunt" />||shunt/list',this)"> --%> 152 <%-- <a href="javascript:void(0)" onclick="addTab('<spring:message code="menu.shunt" />||shunt/list',this)"> --%>
141 <!-- <span class="iconfont sider-nav-icon">&#xe69e;</span> --> 153 <!-- <span class="iconfont sider-nav-icon">&#xe69e;</span> -->
@@ -103,7 +103,8 @@ @@ -103,7 +103,8 @@
103 <td class="kv-label"><spring:message code="manifest.carrier" /><span 103 <td class="kv-label"><spring:message code="manifest.carrier" /><span
104 class="required_span">*</span></td> 104 class="required_span">*</span></td>
105 <td class="kv-content"><input required id="carrier_new" name="carrier" type="text" 105 <td class="kv-content"><input required id="carrier_new" name="carrier" type="text"
106 - value="${manifest.carrier}" oninput="onInputChange(event,'carrier_new','oninput')" 106 + value="${manifest.carrier}"
  107 + oninput="onInputChange(event,'carrier_new','oninput')"
107 onpropertychange="onInputChange(event,'carrier_new','onpropertychange')"></td> 108 onpropertychange="onInputChange(event,'carrier_new','onpropertychange')"></td>
108 109
109 <td class="kv-label"><spring:message code="manifest.flight.number" /><span 110 <td class="kv-label"><spring:message code="manifest.flight.number" /><span
@@ -161,14 +162,21 @@ @@ -161,14 +162,21 @@
161 </select></td> 162 </select></td>
162 </tr> 163 </tr>
163 <tr> 164 <tr>
164 - <td class="kv-label"><spring:message code="manifest.number.of.fittings" /><span 165 + <td class="kv-label"><spring:message code="manifest.payment.method" /><span
165 class="required_span">*</span></td> 166 class="required_span">*</span></td>
166 - <td class="kv-content"><input required class="delivery number" id="preparetotalpiece"  
167 - name="preparetotalpiece" type="text" value="${manifest.preparetotalpiece}"></td>  
168 - <td class="kv-label"><spring:message code="manifest.pre.weight" /><span 167 + <td class="kv-content"><select required id="paymode" name="paymode">
  168 + <%-- <option value=""><spring:message code="opt.select"/></option> --%>
  169 + <option value="PP" <c:if test = "${manifest.paymode == 'PP' }">selected="selected"</c:if>><spring:message
  170 + code="manifest.prepaid" /></option>
  171 + <option value="CC" <c:if test = "${manifest.paymode == 'CC' }">selected="selected"</c:if>><spring:message
  172 + code="manifest.to.pay" /></option>
  173 + </select></td>
  174 + <td class="kv-label"><spring:message code="manifest.fitting.time" /><span
169 class="required_span">*</span></td> 175 class="required_span">*</span></td>
170 - <td class="kv-content"><input required class="delivery number" id="preparetotalweight"  
171 - name="preparetotalweight" type="text" value="${manifest.preparetotalweight}"></td> 176 + <td class="kv-content"><input required type="text" class=" bill "
  177 + id="stowagedate" name="stowagedate" onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})"
  178 + value="<fmt:formatDate pattern='yyyy-MM-dd HH:mm:ss' value='${manifest.stowagedate }'></fmt:formatDate>">
  179 + </td>
172 <td class="kv-label"><spring:message code="manifest.customs.status" /><span 180 <td class="kv-label"><spring:message code="manifest.customs.status" /><span
173 class="required_span">*</span></td> 181 class="required_span">*</span></td>
174 <td class="kv-content"><select id="customsstatus" name="customsstatus" required> 182 <td class="kv-content"><select id="customsstatus" name="customsstatus" required>
@@ -190,22 +198,15 @@ @@ -190,22 +198,15 @@
190 code="manifest.customs_status_006" /></option> 198 code="manifest.customs_status_006" /></option>
191 </select></td> 199 </select></td>
192 </tr> 200 </tr>
193 - <tr>  
194 - <td class="kv-label"><spring:message code="manifest.payment.method" /><span 201 + <tr style="display: none;">
  202 + <td class="kv-label"><spring:message code="manifest.number.of.fittings" /><span
195 class="required_span">*</span></td> 203 class="required_span">*</span></td>
196 - <td class="kv-content"><select required id="paymode" name="paymode">  
197 - <%-- <option value=""><spring:message code="opt.select"/></option> --%>  
198 - <option value="PP" <c:if test = "${manifest.paymode == 'PP' }">selected="selected"</c:if>><spring:message  
199 - code="manifest.prepaid" /></option>  
200 - <option value="CC" <c:if test = "${manifest.paymode == 'CC' }">selected="selected"</c:if>><spring:message  
201 - code="manifest.to.pay" /></option>  
202 - </select></td>  
203 - <td class="kv-label"><spring:message code="manifest.fitting.time" /><span 204 + <td class="kv-content"><input required class="delivery number" id="preparetotalpiece"
  205 + name="preparetotalpiece" type="text" value="${manifest.preparetotalpiece}"></td>
  206 + <td class="kv-label"><spring:message code="manifest.pre.weight" /><span
204 class="required_span">*</span></td> 207 class="required_span">*</span></td>
205 - <td class="kv-content" colspan="3"><input required type="text" class=" bill "  
206 - id="stowagedate" name="stowagedate" onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})"  
207 - value="<fmt:formatDate pattern='yyyy-MM-dd HH:mm:ss' value='${manifest.stowagedate }'></fmt:formatDate>">  
208 - </td> 208 + <td class="kv-content" colspan="3"><input required class="delivery number" id="preparetotalweight"
  209 + name="preparetotalweight" type="text" value="${manifest.preparetotalweight}"></td>
209 </tr> 210 </tr>
210 <tr> 211 <tr>
211 <td class="kv-label"><spring:message code="manifest.description.of.the.goods" /><span 212 <td class="kv-label"><spring:message code="manifest.description.of.the.goods" /><span
@@ -288,7 +289,7 @@ @@ -288,7 +289,7 @@
288 <td class="kv-label"><spring:message code="manifest.address" /><span 289 <td class="kv-label"><spring:message code="manifest.address" /><span
289 class="required_span">*</span></td> 290 class="required_span">*</span></td>
290 <td class="kv-content"><input required id="co_address" name="co_address" type="text" 291 <td class="kv-content"><input required id="co_address" name="co_address" type="text"
291 - value="${manifest.co_address}"></td> 292 + value="${manifest.co_address}" maxlength="70"></td>
292 <td class="kv-label"><spring:message code="manifest.zip.code" /></td> 293 <td class="kv-label"><spring:message code="manifest.zip.code" /></td>
293 <td class="kv-content" colspan="5"><input id="co_zipcode" name="co_zipcode" type="text" 294 <td class="kv-content" colspan="5"><input id="co_zipcode" name="co_zipcode" type="text"
294 value="${manifest.co_zipcode }"></td> 295 value="${manifest.co_zipcode }"></td>
@@ -317,9 +318,9 @@ @@ -317,9 +318,9 @@
317 <td class="kv-content"><input id="co_fax" name="co_fax" type="text" 318 <td class="kv-content"><input id="co_fax" name="co_fax" type="text"
318 value="${manifest.co_fax }" 319 value="${manifest.co_fax }"
319 placeholder="<spring:message code="manifest.fhr.fh_placeholder"/>"></td> 320 placeholder="<spring:message code="manifest.fhr.fh_placeholder"/>"></td>
320 - <td class="kv-label"><spring:message code="manifest.send_name" /><span 321 + <td style="display: none;" class="kv-label"><spring:message code="manifest.send_name" /><span
321 class="required_span">*</span></td> 322 class="required_span">*</span></td>
322 - <td class="kv-content" colspan="5"><input required id="co_name" name="co_name" type="text" 323 + <td style="display: none;" class="kv-content" colspan="5"><input required id="co_name" name="co_name" type="text"
323 value="${manifest.co_name }"></td> 324 value="${manifest.co_name }"></td>
324 </tr> 325 </tr>
325 <tr> 326 <tr>
@@ -387,7 +388,7 @@ @@ -387,7 +388,7 @@
387 onpropertychange="onInputChange(event,'sh_company','onpropertychange')"></td> 388 onpropertychange="onInputChange(event,'sh_company','onpropertychange')"></td>
388 <td class="kv-label"><spring:message code="manifest.address" /><span 389 <td class="kv-label"><spring:message code="manifest.address" /><span
389 class="required_span">*</span></td> 390 class="required_span">*</span></td>
390 - <td class="kv-content"><input required id="sh_address" name="sh_address" type="text" 391 + <td class="kv-content"><input required id="sh_address" name="sh_address" maxlength="70" type="text"
391 value="${manifest.sh_address }"></td> 392 value="${manifest.sh_address }"></td>
392 <td class="kv-label"><spring:message code="manifest.zip.code" /></td> 393 <td class="kv-label"><spring:message code="manifest.zip.code" /></td>
393 <td class="kv-content" colspan="5"><input id="sh_zipcode" name="sh_zipcode" type="text" 394 <td class="kv-content" colspan="5"><input id="sh_zipcode" name="sh_zipcode" type="text"
@@ -415,9 +416,9 @@ @@ -415,9 +416,9 @@
415 <td class="kv-label"><spring:message code="manifest.fax" /></td> 416 <td class="kv-label"><spring:message code="manifest.fax" /></td>
416 <td class="kv-content"><input id="sh_fax" name="sh_fax" type="text" 417 <td class="kv-content"><input id="sh_fax" name="sh_fax" type="text"
417 value="${manifest.sh_fax }"></td> 418 value="${manifest.sh_fax }"></td>
418 - <td class="kv-label"><spring:message code="manifest.receive_name" /><span 419 + <td style="display: none;" class="kv-label"><spring:message code="manifest.receive_name" /><span
419 class="required_span">*</span></td> 420 class="required_span">*</span></td>
420 - <td class="kv-content" colspan="5"><input required id="sh_name" name="sh_name" 421 + <td style="display: none;" class="kv-content" colspan="5"><input required id="sh_name" name="sh_name"
421 type="text" value="${manifest.sh_name }"></td> 422 type="text" value="${manifest.sh_name }"></td>
422 </tr> 423 </tr>
423 <tr> 424 <tr>
@@ -595,7 +596,7 @@ @@ -595,7 +596,7 @@
595 <script type="text/javascript" src="<%=basePath%>resource/layer-v3.0.3/layer/layer.js"></script> 596 <script type="text/javascript" src="<%=basePath%>resource/layer-v3.0.3/layer/layer.js"></script>
596 <script type="text/javascript" src="<%=basePath%>resource/My97DatePicker/WdatePicker.js"></script> 597 <script type="text/javascript" src="<%=basePath%>resource/My97DatePicker/WdatePicker.js"></script>
597 <script src="<%=basePath%>resource/easyui/jquery.easyui.min.js"></script> 598 <script src="<%=basePath%>resource/easyui/jquery.easyui.min.js"></script>
598 - <script src="<%=basePath%>/resource/js/tools.js?version=0.7"></script> 599 + <script src="<%=basePath%>/resource/js/tools.js?version=0.8"></script>
599 <!--弹出层引入的JS--> 600 <!--弹出层引入的JS-->
600 <script type="text/javascript"> 601 <script type="text/javascript">
601 $(function(){ 602 $(function(){
@@ -129,16 +129,23 @@ @@ -129,16 +129,23 @@
129 <tr> 129 <tr>
130 <td class="kv-label"><spring:message code="manifest.number.of.consignment.note" /><span 130 <td class="kv-label"><spring:message code="manifest.number.of.consignment.note" /><span
131 class="required_span">*</span></td> 131 class="required_span">*</span></td>
132 - <td class="kv-content"><input required class="delivery number" id="totalpiece" 132 + <td class="kv-content">
  133 + <input required class="delivery number" id="totalpiece"
133 name="totalpiece" type="text" value="${pre.totalpiece}" 134 name="totalpiece" type="text" value="${pre.totalpiece}"
134 - onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"> <input  
135 - id="pie" disabled="disabled"></td> 135 + onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"
  136 + oninput="onInputChange(event,'totalpiece','oninput')"
  137 + onpropertychange="onInputChange(event,'totalpiece','onpropertychange')">
  138 + <input id="pie" disabled="disabled"></td>
136 <td class="kv-label"><spring:message code="manifest.waybill.weight" /><span 139 <td class="kv-label"><spring:message code="manifest.waybill.weight" /><span
137 class="required_span">*</span></td> 140 class="required_span">*</span></td>
138 - <td class="kv-content"><input required class="delivery number" id="totalweight" 141 + <td class="kv-content">
  142 + <input required class="delivery number" id="totalweight"
139 name="totalweight" type="text" value="${pre.totalweight}" 143 name="totalweight" type="text" value="${pre.totalweight}"
140 - onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"> <input  
141 - id="wei" disabled="disabled"></td> 144 + onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"
  145 + oninput="onInputChange(event,'totalweight','oninput')"
  146 + onpropertychange="onInputChange(event,'totalweight','onpropertychange')">
  147 + <input id="wei" disabled="disabled">
  148 + </td>
142 <td class="kv-label"><spring:message code="manifest.customs" /><span 149 <td class="kv-label"><spring:message code="manifest.customs" /><span
143 class="required_span">*</span></td> 150 class="required_span">*</span></td>
144 <td class="kv-content" colspan="3"> 151 <td class="kv-content" colspan="3">
@@ -153,23 +160,24 @@ @@ -153,23 +160,24 @@
153 </td> 160 </td>
154 </tr> 161 </tr>
155 <tr> 162 <tr>
156 - <td class="kv-label"><spring:message code="manifest.number.of.fittings" /><span  
157 - class="required_span">*</span></td>  
158 - <td class="kv-content"><input required class="delivery number" id="preparepiece"  
159 - name="preparepiece" type="text" value="${pre.preparepiece}"  
160 - onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"> <input  
161 - id="topie" disabled="disabled"></td>  
162 - <td class="kv-label"><spring:message code="manifest.pre.weight" /><span 163 + <td class="kv-label"><spring:message code="manifest.payment.method" /><span
163 class="required_span">*</span></td> 164 class="required_span">*</span></td>
164 - <td class="kv-content"><input required class="delivery number" id="prepareweight"  
165 - name="prepareweight" type="text" value="${pre.prepareweight}"  
166 - onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"> <input  
167 - id="towei" disabled="disabled"></td> 165 + <td class="kv-content"><select required id="paymode" name="paymode">
  166 + <option value="001" <c:if test = "${pre.paymode ==001 }">selected="selected "</c:if>><spring:message
  167 + code="manifest.prepaid" /></option>
  168 + <option value="002" <c:if test = "${pre.paymode ==002 }">selected="selected "</c:if>><spring:message
  169 + code="manifest.to.pay" /></option>
  170 + </select></td>
  171 + <td class="kv-label"><spring:message code="manifest.fitting.time" /></td>
  172 + <td class="kv-content"><input type="text" class="date bill" id="stowagedate"
  173 + name="stowagedate" onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})"
  174 + value="<fmt:formatDate pattern='yyyy-MM-dd HH:mm:ss' value='${pre.stowagedate }'></fmt:formatDate>">
  175 + </td>
  176 +
168 <td class="kv-label"><spring:message code="manifest.customs.status" /><span 177 <td class="kv-label"><spring:message code="manifest.customs.status" /><span
169 class="required_span">*</span></td> 178 class="required_span">*</span></td>
170 <td class="kv-content"> 179 <td class="kv-content">
171 <select required id="customsstatus" name="customsstatus"> 180 <select required id="customsstatus" name="customsstatus">
172 - <%-- <option value=""><spring:message code="opt.select"/></option> --%>  
173 <option value="001" <c:if test = "${pre.customsstatus ==001 }">selected="selected"</c:if>><spring:message 181 <option value="001" <c:if test = "${pre.customsstatus ==001 }">selected="selected"</c:if>><spring:message
174 code="manifest.import.and" /></option> 182 code="manifest.import.and" /></option>
175 <option value="002" <c:if test = "${pre.customsstatus ==002 }">selected="selected"</c:if>><spring:message 183 <option value="002" <c:if test = "${pre.customsstatus ==002 }">selected="selected"</c:if>><spring:message
@@ -181,25 +189,19 @@ @@ -181,25 +189,19 @@
181 </select> 189 </select>
182 </td> 190 </td>
183 </tr> 191 </tr>
184 - <tr>  
185 - <td class="kv-label"><spring:message code="manifest.payment.method" /><span 192 + <tr style="display: none;">
  193 + <td class="kv-label"><spring:message code="manifest.number.of.fittings" /><span
186 class="required_span">*</span></td> 194 class="required_span">*</span></td>
187 - <td class="kv-content"><select required id="paymode" name="paymode">  
188 - <%-- <option value=""><spring:message code="opt.select"/></option> --%>  
189 - <option value="001" <c:if test = "${pre.paymode ==001 }">selected="selected "</c:if>><spring:message  
190 - code="manifest.prepaid" /></option>  
191 - <option value="002" <c:if test = "${pre.paymode ==002 }">selected="selected "</c:if>><spring:message  
192 - code="manifest.to.pay" /></option>  
193 - <%-- <c:forEach items="${payTypes}" var="payType"> --%>  
194 - <%-- <option value="${payType}" --%>  
195 - <%-- <c:if test="${pre.paymode==payType}" >selected="selected" </c:if>>${payType} </option> --%>  
196 - <%-- </c:forEach> --%>  
197 - </select></td>  
198 - <td class="kv-label"><spring:message code="manifest.fitting.time" /></td>  
199 - <td class="kv-content" colspan="2"><input type="text" class="date bill" id="stowagedate"  
200 - name="stowagedate" onfocus="WdatePicker({dateFmt:'yyyy-MM-dd HH:mm:ss'})"  
201 - value="<fmt:formatDate pattern='yyyy-MM-dd HH:mm:ss' value='${pre.stowagedate }'></fmt:formatDate>">  
202 - </td> 195 + <td class="kv-content"><input required class="delivery number" id="preparepiece"
  196 + name="preparepiece" type="text" value="${pre.preparepiece}"
  197 + onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"> <input
  198 + id="topie" disabled="disabled"></td>
  199 + <td class="kv-label"><spring:message code="manifest.pre.weight" /><span
  200 + class="required_span">*</span></td>
  201 + <td class="kv-content"><input required class="delivery number" id="prepareweight"
  202 + name="prepareweight" type="text" value="${pre.prepareweight}"
  203 + onkeyup="value=value.replace(/[^\d]/g,'') " ng-pattern="/[^a-zA-Z]/"> <input
  204 + id="towei" disabled="disabled"></td>
203 </tr> 205 </tr>
204 <tr> 206 <tr>
205 <td class="kv-label"><spring:message code="manifest.description.of.the.goods" /></td> 207 <td class="kv-label"><spring:message code="manifest.description.of.the.goods" /></td>
@@ -272,12 +274,15 @@ @@ -272,12 +274,15 @@
272 <tr> 274 <tr>
273 <td class="kv-label"><spring:message code="manifest.company" /><span 275 <td class="kv-label"><spring:message code="manifest.company" /><span
274 class="required_span">*</span></td> 276 class="required_span">*</span></td>
275 - <td class="kv-content"><input required id="co_company"  
276 - name="co_company" type="text" value="${pre.co_company}"></td> 277 + <td class="kv-content">
  278 + <input required id="co_company" name="co_company" type="text" value="${pre.co_company}"
  279 + oninput="onInputChange(event,'co_company','oninput')"
  280 + onpropertychange="onInputChange(event,'co_company','onpropertychange')">
  281 + </td>
277 <td class="kv-label"><spring:message code="manifest.address" /><span 282 <td class="kv-label"><spring:message code="manifest.address" /><span
278 class="required_span">*</span></td> 283 class="required_span">*</span></td>
279 <td class="kv-content"><input required id="co_address" name="co_address" type="text" 284 <td class="kv-content"><input required id="co_address" name="co_address" type="text"
280 - value="${pre.co_address}"></td> 285 + value="${pre.co_address}" maxlength="70"></td>
281 <td class="kv-label"><spring:message code="manifest.zip.code" /></td> 286 <td class="kv-label"><spring:message code="manifest.zip.code" /></td>
282 <td class="kv-content" colspan="5"><input id="co_zipcode" name="co_zipcode" type="text" 287 <td class="kv-content" colspan="5"><input id="co_zipcode" name="co_zipcode" type="text"
283 value="${pre.co_zipcode }"></td> 288 value="${pre.co_zipcode }"></td>
@@ -305,9 +310,9 @@ @@ -305,9 +310,9 @@
305 <td class="kv-label"><spring:message code="manifest.fax" /></td> 310 <td class="kv-label"><spring:message code="manifest.fax" /></td>
306 <td class="kv-content"><input id="co_fax" name="co_fax" type="text" 311 <td class="kv-content"><input id="co_fax" name="co_fax" type="text"
307 value="${pre.co_fax }" placeholder="<spring:message code="manifest.fhr.fh_placeholder"/>"></td> 312 value="${pre.co_fax }" placeholder="<spring:message code="manifest.fhr.fh_placeholder"/>"></td>
308 - <td class="kv-label"><spring:message code="manifest.name" /><span 313 + <td style="display: none;" class="kv-label"><spring:message code="manifest.name" /><span
309 class="required_span">*</span></td> 314 class="required_span">*</span></td>
310 - <td class="kv-content" colspan="5"><input required id="co_name" name="co_name" type="text" 315 + <td style="display: none;" class="kv-content" colspan="5"><input required id="co_name" name="co_name" type="text"
311 value="${pre.co_name }"></td> 316 value="${pre.co_name }"></td>
312 </tr> 317 </tr>
313 <tr> 318 <tr>
@@ -369,11 +374,13 @@ @@ -369,11 +374,13 @@
369 <td class="kv-label"><spring:message code="manifest.company" /><span 374 <td class="kv-label"><spring:message code="manifest.company" /><span
370 class="required_span">*</span></td> 375 class="required_span">*</span></td>
371 <td class="kv-content"><input required id="sh_company" name="sh_company" type="text" 376 <td class="kv-content"><input required id="sh_company" name="sh_company" type="text"
372 - value="${pre.sh_company }"></td> 377 + value="${pre.sh_company }"
  378 + oninput="onInputChange(event,'sh_company','oninput')"
  379 + onpropertychange="onInputChange(event,'sh_company','onpropertychange')"></td>
373 <td class="kv-label"><spring:message code="manifest.address" /><span 380 <td class="kv-label"><spring:message code="manifest.address" /><span
374 class="required_span">*</span></td> 381 class="required_span">*</span></td>
375 <td class="kv-content"><input required id="sh_address" name="sh_address" type="text" 382 <td class="kv-content"><input required id="sh_address" name="sh_address" type="text"
376 - value="${pre.sh_address }"></td> 383 + value="${pre.sh_address }" maxlength="70"></td>
377 <td class="kv-label"><spring:message code="manifest.zip.code" /></td> 384 <td class="kv-label"><spring:message code="manifest.zip.code" /></td>
378 <td class="kv-content" colspan="5"><input id="sh_zipcode" name="sh_zipcode" type="text" 385 <td class="kv-content" colspan="5"><input id="sh_zipcode" name="sh_zipcode" type="text"
379 value="${pre.sh_zipcode }"></td> 386 value="${pre.sh_zipcode }"></td>
@@ -400,8 +407,8 @@ @@ -400,8 +407,8 @@
400 <td class="kv-label"><spring:message code="manifest.fax" /></td> 407 <td class="kv-label"><spring:message code="manifest.fax" /></td>
401 <td class="kv-content"><input id="sh_fax" name="sh_fax" type="text" 408 <td class="kv-content"><input id="sh_fax" name="sh_fax" type="text"
402 value="${pre.sh_fax }"></td> 409 value="${pre.sh_fax }"></td>
403 - <td class="kv-label"><spring:message code="manifest.name" /></td>  
404 - <td class="kv-content" colspan="5"><input id="sh_name" name="sh_name" type="text" 410 + <td style="display: none;" class="kv-label"><spring:message code="manifest.name" /></td>
  411 + <td style="display: none;" class="kv-content" colspan="5"><input id="sh_name" name="sh_name" type="text"
405 value="${pre.sh_name }"></td> 412 value="${pre.sh_name }"></td>
406 </tr> 413 </tr>
407 <tr> 414 <tr>
@@ -562,7 +569,7 @@ @@ -562,7 +569,7 @@
562 <script type="text/javascript" src="<%=basePath%>resource/layer-v3.0.3/layer/layer.js"></script> 569 <script type="text/javascript" src="<%=basePath%>resource/layer-v3.0.3/layer/layer.js"></script>
563 <script src="<%=basePath%>resource/easyui/jquery.easyui.min.js"></script> 570 <script src="<%=basePath%>resource/easyui/jquery.easyui.min.js"></script>
564 <script src="<%=basePath%>resource/My97DatePicker/WdatePicker.js"></script> 571 <script src="<%=basePath%>resource/My97DatePicker/WdatePicker.js"></script>
565 - <script src="<%=basePath%>resource/js/tools.js?version=0.7"></script> 572 + <script src="<%=basePath%>resource/js/tools.js?version=0.8"></script>
566 <script type="text/javascript"> 573 <script type="text/javascript">
567 function onCarrierMsg() { 574 function onCarrierMsg() {
568 layer.open({content: "<spring:message code='manifest.fhr.carrierMsg'/>"}); 575 layer.open({content: "<spring:message code='manifest.fhr.carrierMsg'/>"});
@@ -271,13 +271,17 @@ function onInputChange(event, id, method) { @@ -271,13 +271,17 @@ function onInputChange(event, id, method) {
271 271
272 if (id && id == "totalpiece") { 272 if (id && id == "totalpiece") {
273 $("#de_number").val(upper); 273 $("#de_number").val(upper);
  274 + $("#preparepiece").val(upper);//分单
  275 + $("#preparetotalpiece").val(upper);//主单
274 } 276 }
275 277
276 if (id && id == "totalweight") { 278 if (id && id == "totalweight") {
277 $("#de_weight").val(upper); 279 $("#de_weight").val(upper);
278 $("#de_chweight").val(upper); 280 $("#de_chweight").val(upper);
  281 + $("#prepareweight").val(upper);//分单
  282 + $("#preparetotalweight").val(upper);//主单
279 } 283 }
280 - 284 +
281 if (id && id == "co_company") { 285 if (id && id == "co_company") {
282 $("#co_name").val(upper); 286 $("#co_name").val(upper);
283 } 287 }
@@ -297,4 +301,8 @@ function isEmpty(data) { @@ -297,4 +301,8 @@ function isEmpty(data) {
297 } else { 301 } else {
298 return false; 302 return false;
299 } 303 }
  304 +}
  305 +
  306 +function sync(id){
  307 +
300 } 308 }
  1 +/** layui-v2.3.0 MIT License By https://www.layui.com */
  2 + .layui-inline,img{display:inline-block;vertical-align:middle}.layui-rate,li{list-style:none}h1,h2,h3,h4,h5,h6{font-weight:400}.layui-edge,.layui-header,.layui-inline,.layui-main{position:relative}.layui-btn,.layui-edge,.layui-inline,img{vertical-align:middle}.layui-btn,.layui-disabled,.layui-icon,.layui-unselect{-webkit-user-select:none;-ms-user-select:none;-moz-user-select:none}blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,li,ol,p,pre,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}a:active,a:hover{outline:0}img{border:none}table{border-collapse:collapse;border-spacing:0}h4,h5,h6{font-size:100%}button,input,optgroup,option,select,textarea{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit;outline:0}pre{white-space:pre-wrap;white-space:-moz-pre-wrap;white-space:-pre-wrap;white-space:-o-pre-wrap;word-wrap:break-word}body{line-height:24px;font:14px Helvetica Neue,Helvetica,PingFang SC,\5FAE\8F6F\96C5\9ED1,Tahoma,Arial,sans-serif}hr{height:1px;margin:10px 0;border:0;clear:both}a{color:#333;text-decoration:none}a:hover{color:#777}a cite{font-style:normal;*cursor:pointer}.layui-border-box,.layui-border-box *{box-sizing:border-box}.layui-box,.layui-box *{box-sizing:content-box}.layui-clear{clear:both;*zoom:1}.layui-clear:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-inline{*display:inline;*zoom:1}.layui-edge{display:inline-block;width:0;height:0;border-width:6px;border-style:dashed;border-color:transparent;overflow:hidden}.layui-edge-top{top:-4px;border-bottom-color:#999;border-bottom-style:solid}.layui-edge-right{border-left-color:#999;border-left-style:solid}.layui-edge-bottom{top:2px;border-top-color:#999;border-top-style:solid}.layui-edge-left{border-right-color:#999;border-right-style:solid}.layui-elip{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-disabled,.layui-disabled:hover{color:#d2d2d2!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}@font-face{font-family:layui-icon;src:url(../font/iconfont.eot?v=230);src:url(../font/iconfont.eot?v=230#iefix) format('embedded-opentype'),url(../font/iconfont.svg?v=230#iconfont) format('svg'),url(../font/iconfont.woff?v=230) format('woff'),url(../font/iconfont.ttf?v=230) format('truetype')}.layui-icon{font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-icon-reply-fill:before{content:"\e611"}.layui-icon-set-fill:before{content:"\e614"}.layui-icon-menu-fill:before{content:"\e60f"}.layui-icon-search:before{content:"\e615"}.layui-icon-share:before{content:"\e641"}.layui-icon-set-sm:before{content:"\e620"}.layui-icon-engine:before{content:"\e628"}.layui-icon-close:before{content:"\1006"}.layui-icon-close-fill:before{content:"\1007"}.layui-icon-chart-screen:before{content:"\e629"}.layui-icon-star:before{content:"\e600"}.layui-icon-circle-dot:before{content:"\e617"}.layui-icon-chat:before{content:"\e606"}.layui-icon-release:before{content:"\e609"}.layui-icon-list:before{content:"\e60a"}.layui-icon-chart:before{content:"\e62c"}.layui-icon-ok-circle:before{content:"\1005"}.layui-icon-layim-theme:before{content:"\e61b"}.layui-icon-table:before{content:"\e62d"}.layui-icon-right:before{content:"\e602"}.layui-icon-left:before{content:"\e603"}.layui-icon-cart-simple:before{content:"\e698"}.layui-icon-face-cry:before{content:"\e69c"}.layui-icon-face-smile:before{content:"\e6af"}.layui-icon-survey:before{content:"\e6b2"}.layui-icon-tree:before{content:"\e62e"}.layui-icon-upload-circle:before{content:"\e62f"}.layui-icon-add-circle:before{content:"\e61f"}.layui-icon-download-circle:before{content:"\e601"}.layui-icon-templeate-1:before{content:"\e630"}.layui-icon-util:before{content:"\e631"}.layui-icon-face-surprised:before{content:"\e664"}.layui-icon-edit:before{content:"\e642"}.layui-icon-speaker:before{content:"\e645"}.layui-icon-down:before{content:"\e61a"}.layui-icon-file:before{content:"\e621"}.layui-icon-layouts:before{content:"\e632"}.layui-icon-rate-half:before{content:"\e6c9"}.layui-icon-add-circle-fine:before{content:"\e608"}.layui-icon-prev-circle:before{content:"\e633"}.layui-icon-read:before{content:"\e705"}.layui-icon-404:before{content:"\e61c"}.layui-icon-carousel:before{content:"\e634"}.layui-icon-help:before{content:"\e607"}.layui-icon-code-circle:before{content:"\e635"}.layui-icon-water:before{content:"\e636"}.layui-icon-username:before{content:"\e66f"}.layui-icon-find-fill:before{content:"\e670"}.layui-icon-about:before{content:"\e60b"}.layui-icon-location:before{content:"\e715"}.layui-icon-up:before{content:"\e619"}.layui-icon-pause:before{content:"\e651"}.layui-icon-date:before{content:"\e637"}.layui-icon-layim-uploadfile:before{content:"\e61d"}.layui-icon-delete:before{content:"\e640"}.layui-icon-play:before{content:"\e652"}.layui-icon-top:before{content:"\e604"}.layui-icon-friends:before{content:"\e612"}.layui-icon-refresh-3:before{content:"\e9aa"}.layui-icon-ok:before{content:"\e605"}.layui-icon-layer:before{content:"\e638"}.layui-icon-face-smile-fine:before{content:"\e60c"}.layui-icon-dollar:before{content:"\e659"}.layui-icon-group:before{content:"\e613"}.layui-icon-layim-download:before{content:"\e61e"}.layui-icon-picture-fine:before{content:"\e60d"}.layui-icon-link:before{content:"\e64c"}.layui-icon-diamond:before{content:"\e735"}.layui-icon-log:before{content:"\e60e"}.layui-icon-rate-solid:before{content:"\e67a"}.layui-icon-fonts-del:before{content:"\e64f"}.layui-icon-unlink:before{content:"\e64d"}.layui-icon-fonts-clear:before{content:"\e639"}.layui-icon-triangle-r:before{content:"\e623"}.layui-icon-circle:before{content:"\e63f"}.layui-icon-radio:before{content:"\e643"}.layui-icon-align-center:before{content:"\e647"}.layui-icon-align-right:before{content:"\e648"}.layui-icon-align-left:before{content:"\e649"}.layui-icon-loading-1:before{content:"\e63e"}.layui-icon-return:before{content:"\e65c"}.layui-icon-fonts-strong:before{content:"\e62b"}.layui-icon-upload:before{content:"\e67c"}.layui-icon-dialogue:before{content:"\e63a"}.layui-icon-video:before{content:"\e6ed"}.layui-icon-headset:before{content:"\e6fc"}.layui-icon-cellphone-fine:before{content:"\e63b"}.layui-icon-add-1:before{content:"\e654"}.layui-icon-face-smile-b:before{content:"\e650"}.layui-icon-fonts-html:before{content:"\e64b"}.layui-icon-form:before{content:"\e63c"}.layui-icon-cart:before{content:"\e657"}.layui-icon-camera-fill:before{content:"\e65d"}.layui-icon-tabs:before{content:"\e62a"}.layui-icon-fonts-code:before{content:"\e64e"}.layui-icon-fire:before{content:"\e756"}.layui-icon-set:before{content:"\e716"}.layui-icon-fonts-u:before{content:"\e646"}.layui-icon-triangle-d:before{content:"\e625"}.layui-icon-tips:before{content:"\e702"}.layui-icon-picture:before{content:"\e64a"}.layui-icon-more-vertical:before{content:"\e671"}.layui-icon-flag:before{content:"\e66c"}.layui-icon-loading:before{content:"\e63d"}.layui-icon-fonts-i:before{content:"\e644"}.layui-icon-refresh-1:before{content:"\e666"}.layui-icon-rmb:before{content:"\e65e"}.layui-icon-home:before{content:"\e68e"}.layui-icon-user:before{content:"\e770"}.layui-icon-notice:before{content:"\e667"}.layui-icon-login-weibo:before{content:"\e675"}.layui-icon-voice:before{content:"\e688"}.layui-icon-upload-drag:before{content:"\e681"}.layui-icon-login-qq:before{content:"\e676"}.layui-icon-snowflake:before{content:"\e6b1"}.layui-icon-file-b:before{content:"\e655"}.layui-icon-template:before{content:"\e663"}.layui-icon-auz:before{content:"\e672"}.layui-icon-console:before{content:"\e665"}.layui-icon-app:before{content:"\e653"}.layui-icon-prev:before{content:"\e65a"}.layui-icon-website:before{content:"\e7ae"}.layui-icon-next:before{content:"\e65b"}.layui-icon-component:before{content:"\e857"}.layui-icon-more:before{content:"\e65f"}.layui-icon-login-wechat:before{content:"\e677"}.layui-icon-shrink-right:before{content:"\e668"}.layui-icon-spread-left:before{content:"\e66b"}.layui-icon-camera:before{content:"\e660"}.layui-icon-note:before{content:"\e66e"}.layui-icon-refresh:before{content:"\e669"}.layui-icon-female:before{content:"\e661"}.layui-icon-male:before{content:"\e662"}.layui-icon-password:before{content:"\e673"}.layui-icon-senior:before{content:"\e674"}.layui-icon-theme:before{content:"\e66a"}.layui-icon-tread:before{content:"\e6c5"}.layui-icon-praise:before{content:"\e6c6"}.layui-icon-star-fill:before{content:"\e658"}.layui-icon-rate:before{content:"\e67b"}.layui-icon-template-1:before{content:"\e656"}.layui-icon-vercode:before{content:"\e679"}.layui-icon-cellphone:before{content:"\e678"}.layui-icon-screen-full:before{content:"\e622"}.layui-icon-screen-restore:before{content:"\e758"}.layui-main{width:1140px;margin:0 auto}.layui-header{z-index:1000;height:60px}.layui-header a:hover{transition:all .5s;-webkit-transition:all .5s}.layui-side{position:fixed;left:0;top:0;bottom:0;z-index:999;width:200px;overflow-x:hidden}.layui-side-scroll{position:relative;width:220px;height:100%;overflow-x:hidden}.layui-body{position:absolute;left:200px;right:0;top:0;bottom:0;z-index:998;width:auto;overflow:hidden;overflow-y:auto;box-sizing:border-box}.layui-layout-body{overflow:hidden}.layui-layout-admin .layui-header{background-color:#23262E}.layui-layout-admin .layui-side{top:60px;width:200px;overflow-x:hidden}.layui-layout-admin .layui-body{top:60px;bottom:44px}.layui-layout-admin .layui-main{width:auto;margin:0 15px}.layui-layout-admin .layui-footer{position:fixed;left:200px;right:0;bottom:0;height:44px;line-height:44px;padding:0 15px;background-color:#eee}.layui-layout-admin .layui-logo{position:absolute;left:0;top:0;width:200px;height:100%;line-height:60px;text-align:center;color:#009688;font-size:16px}.layui-layout-admin .layui-header .layui-nav{background:0 0}.layui-layout-left{position:absolute!important;left:200px;top:0}.layui-layout-right{position:absolute!important;right:0;top:0}.layui-container{position:relative;margin:0 auto;padding:0 15px;box-sizing:border-box}.layui-fluid{position:relative;margin:0 auto;padding:0 15px}.layui-row:after,.layui-row:before{content:'';display:block;clear:both}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9,.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9,.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9,.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{position:relative;display:block;box-sizing:border-box}.layui-col-xs1,.layui-col-xs10,.layui-col-xs11,.layui-col-xs12,.layui-col-xs2,.layui-col-xs3,.layui-col-xs4,.layui-col-xs5,.layui-col-xs6,.layui-col-xs7,.layui-col-xs8,.layui-col-xs9{float:left}.layui-col-xs1{width:8.33333333%}.layui-col-xs2{width:16.66666667%}.layui-col-xs3{width:25%}.layui-col-xs4{width:33.33333333%}.layui-col-xs5{width:41.66666667%}.layui-col-xs6{width:50%}.layui-col-xs7{width:58.33333333%}.layui-col-xs8{width:66.66666667%}.layui-col-xs9{width:75%}.layui-col-xs10{width:83.33333333%}.layui-col-xs11{width:91.66666667%}.layui-col-xs12{width:100%}.layui-col-xs-offset1{margin-left:8.33333333%}.layui-col-xs-offset2{margin-left:16.66666667%}.layui-col-xs-offset3{margin-left:25%}.layui-col-xs-offset4{margin-left:33.33333333%}.layui-col-xs-offset5{margin-left:41.66666667%}.layui-col-xs-offset6{margin-left:50%}.layui-col-xs-offset7{margin-left:58.33333333%}.layui-col-xs-offset8{margin-left:66.66666667%}.layui-col-xs-offset9{margin-left:75%}.layui-col-xs-offset10{margin-left:83.33333333%}.layui-col-xs-offset11{margin-left:91.66666667%}.layui-col-xs-offset12{margin-left:100%}@media screen and (max-width:768px){.layui-hide-xs{display:none!important}.layui-show-xs-block{display:block!important}.layui-show-xs-inline{display:inline!important}.layui-show-xs-inline-block{display:inline-block!important}}@media screen and (min-width:768px){.layui-container{width:750px}.layui-hide-sm{display:none!important}.layui-show-sm-block{display:block!important}.layui-show-sm-inline{display:inline!important}.layui-show-sm-inline-block{display:inline-block!important}.layui-col-sm1,.layui-col-sm10,.layui-col-sm11,.layui-col-sm12,.layui-col-sm2,.layui-col-sm3,.layui-col-sm4,.layui-col-sm5,.layui-col-sm6,.layui-col-sm7,.layui-col-sm8,.layui-col-sm9{float:left}.layui-col-sm1{width:8.33333333%}.layui-col-sm2{width:16.66666667%}.layui-col-sm3{width:25%}.layui-col-sm4{width:33.33333333%}.layui-col-sm5{width:41.66666667%}.layui-col-sm6{width:50%}.layui-col-sm7{width:58.33333333%}.layui-col-sm8{width:66.66666667%}.layui-col-sm9{width:75%}.layui-col-sm10{width:83.33333333%}.layui-col-sm11{width:91.66666667%}.layui-col-sm12{width:100%}.layui-col-sm-offset1{margin-left:8.33333333%}.layui-col-sm-offset2{margin-left:16.66666667%}.layui-col-sm-offset3{margin-left:25%}.layui-col-sm-offset4{margin-left:33.33333333%}.layui-col-sm-offset5{margin-left:41.66666667%}.layui-col-sm-offset6{margin-left:50%}.layui-col-sm-offset7{margin-left:58.33333333%}.layui-col-sm-offset8{margin-left:66.66666667%}.layui-col-sm-offset9{margin-left:75%}.layui-col-sm-offset10{margin-left:83.33333333%}.layui-col-sm-offset11{margin-left:91.66666667%}.layui-col-sm-offset12{margin-left:100%}}@media screen and (min-width:992px){.layui-container{width:970px}.layui-hide-md{display:none!important}.layui-show-md-block{display:block!important}.layui-show-md-inline{display:inline!important}.layui-show-md-inline-block{display:inline-block!important}.layui-col-md1,.layui-col-md10,.layui-col-md11,.layui-col-md12,.layui-col-md2,.layui-col-md3,.layui-col-md4,.layui-col-md5,.layui-col-md6,.layui-col-md7,.layui-col-md8,.layui-col-md9{float:left}.layui-col-md1{width:8.33333333%}.layui-col-md2{width:16.66666667%}.layui-col-md3{width:25%}.layui-col-md4{width:33.33333333%}.layui-col-md5{width:41.66666667%}.layui-col-md6{width:50%}.layui-col-md7{width:58.33333333%}.layui-col-md8{width:66.66666667%}.layui-col-md9{width:75%}.layui-col-md10{width:83.33333333%}.layui-col-md11{width:91.66666667%}.layui-col-md12{width:100%}.layui-col-md-offset1{margin-left:8.33333333%}.layui-col-md-offset2{margin-left:16.66666667%}.layui-col-md-offset3{margin-left:25%}.layui-col-md-offset4{margin-left:33.33333333%}.layui-col-md-offset5{margin-left:41.66666667%}.layui-col-md-offset6{margin-left:50%}.layui-col-md-offset7{margin-left:58.33333333%}.layui-col-md-offset8{margin-left:66.66666667%}.layui-col-md-offset9{margin-left:75%}.layui-col-md-offset10{margin-left:83.33333333%}.layui-col-md-offset11{margin-left:91.66666667%}.layui-col-md-offset12{margin-left:100%}}@media screen and (min-width:1200px){.layui-container{width:1170px}.layui-hide-lg{display:none!important}.layui-show-lg-block{display:block!important}.layui-show-lg-inline{display:inline!important}.layui-show-lg-inline-block{display:inline-block!important}.layui-col-lg1,.layui-col-lg10,.layui-col-lg11,.layui-col-lg12,.layui-col-lg2,.layui-col-lg3,.layui-col-lg4,.layui-col-lg5,.layui-col-lg6,.layui-col-lg7,.layui-col-lg8,.layui-col-lg9{float:left}.layui-col-lg1{width:8.33333333%}.layui-col-lg2{width:16.66666667%}.layui-col-lg3{width:25%}.layui-col-lg4{width:33.33333333%}.layui-col-lg5{width:41.66666667%}.layui-col-lg6{width:50%}.layui-col-lg7{width:58.33333333%}.layui-col-lg8{width:66.66666667%}.layui-col-lg9{width:75%}.layui-col-lg10{width:83.33333333%}.layui-col-lg11{width:91.66666667%}.layui-col-lg12{width:100%}.layui-col-lg-offset1{margin-left:8.33333333%}.layui-col-lg-offset2{margin-left:16.66666667%}.layui-col-lg-offset3{margin-left:25%}.layui-col-lg-offset4{margin-left:33.33333333%}.layui-col-lg-offset5{margin-left:41.66666667%}.layui-col-lg-offset6{margin-left:50%}.layui-col-lg-offset7{margin-left:58.33333333%}.layui-col-lg-offset8{margin-left:66.66666667%}.layui-col-lg-offset9{margin-left:75%}.layui-col-lg-offset10{margin-left:83.33333333%}.layui-col-lg-offset11{margin-left:91.66666667%}.layui-col-lg-offset12{margin-left:100%}}.layui-col-space1{margin:-.5px}.layui-col-space1>*{padding:.5px}.layui-col-space3{margin:-1.5px}.layui-col-space3>*{padding:1.5px}.layui-col-space5{margin:-2.5px}.layui-col-space5>*{padding:2.5px}.layui-col-space8{margin:-3.5px}.layui-col-space8>*{padding:3.5px}.layui-col-space10{margin:-5px}.layui-col-space10>*{padding:5px}.layui-col-space12{margin:-6px}.layui-col-space12>*{padding:6px}.layui-col-space15{margin:-7.5px}.layui-col-space15>*{padding:7.5px}.layui-col-space18{margin:-9px}.layui-col-space18>*{padding:9px}.layui-col-space20{margin:-10px}.layui-col-space20>*{padding:10px}.layui-col-space22{margin:-11px}.layui-col-space22>*{padding:11px}.layui-col-space25{margin:-12.5px}.layui-col-space25>*{padding:12.5px}.layui-col-space30{margin:-15px}.layui-col-space30>*{padding:15px}.layui-btn,.layui-input,.layui-select,.layui-textarea,.layui-upload-button{outline:0;-webkit-appearance:none;transition:all .3s;-webkit-transition:all .3s;box-sizing:border-box}.layui-elem-quote{margin-bottom:10px;padding:15px;line-height:22px;border-left:5px solid #009688;border-radius:0 2px 2px 0;background-color:#f2f2f2}.layui-quote-nm{border-style:solid;border-width:1px 1px 1px 5px;background:0 0}.layui-elem-field{margin-bottom:10px;padding:0;border-width:1px;border-style:solid}.layui-elem-field legend{margin-left:20px;padding:0 10px;font-size:20px;font-weight:300}.layui-field-title{margin:10px 0 20px;border-width:1px 0 0}.layui-field-box{padding:10px 15px}.layui-field-title .layui-field-box{padding:10px 0}.layui-progress{position:relative;height:6px;border-radius:20px;background-color:#e2e2e2}.layui-progress-bar{position:absolute;left:0;top:0;width:0;max-width:100%;height:6px;border-radius:20px;text-align:right;background-color:#5FB878;transition:all .3s;-webkit-transition:all .3s}.layui-progress-big,.layui-progress-big .layui-progress-bar{height:18px;line-height:18px}.layui-progress-text{position:relative;top:-20px;line-height:18px;font-size:12px;color:#666}.layui-progress-big .layui-progress-text{position:static;padding:0 10px;color:#fff}.layui-collapse{border-width:1px;border-style:solid;border-radius:2px}.layui-colla-content,.layui-colla-item{border-top-width:1px;border-top-style:solid}.layui-colla-item:first-child{border-top:none}.layui-colla-title{position:relative;height:42px;line-height:42px;padding:0 15px 0 35px;color:#333;background-color:#f2f2f2;cursor:pointer;font-size:14px;overflow:hidden}.layui-colla-content{display:none;padding:10px 15px;line-height:22px;color:#666}.layui-colla-icon{position:absolute;left:15px;top:0;font-size:14px}.layui-card-body,.layui-card-header,.layui-form-label,.layui-form-mid,.layui-form-select,.layui-input-block,.layui-input-inline,.layui-textarea{position:relative}.layui-card{margin-bottom:15px;border-radius:2px;background-color:#fff;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.layui-card:last-child{margin-bottom:0}.layui-card-header{height:42px;line-height:42px;padding:0 15px;border-bottom:1px solid #f6f6f6;color:#333;border-radius:2px 2px 0 0;font-size:14px}.layui-bg-black,.layui-bg-blue,.layui-bg-cyan,.layui-bg-green,.layui-bg-orange,.layui-bg-red{color:#fff!important}.layui-card-body{padding:10px 15px;line-height:24px}.layui-card-body[pad15]{padding:15px}.layui-card-body[pad20]{padding:20px}.layui-card-body .layui-table{margin:5px 0}.layui-card .layui-tab{margin:0}.layui-panel-window{position:relative;padding:15px;border-radius:0;border-top:5px solid #E6E6E6;background-color:#fff}.layui-bg-red{background-color:#FF5722!important}.layui-bg-orange{background-color:#FFB800!important}.layui-bg-green{background-color:#009688!important}.layui-bg-cyan{background-color:#2F4056!important}.layui-bg-blue{background-color:#1E9FFF!important}.layui-bg-black{background-color:#393D49!important}.layui-bg-gray{background-color:#eee!important;color:#666!important}.layui-badge-rim,.layui-colla-content,.layui-colla-item,.layui-collapse,.layui-elem-field,.layui-form-pane .layui-form-item[pane],.layui-form-pane .layui-form-label,.layui-input,.layui-layedit,.layui-layedit-tool,.layui-quote-nm,.layui-select,.layui-tab-bar,.layui-tab-card,.layui-tab-title,.layui-tab-title .layui-this:after,.layui-textarea{border-color:#e6e6e6}.layui-timeline-item:before,hr{background-color:#e6e6e6}.layui-text{line-height:22px;font-size:14px;color:#666}.layui-text h1,.layui-text h2,.layui-text h3{font-weight:500;color:#333}.layui-text h1{font-size:30px}.layui-text h2{font-size:24px}.layui-text h3{font-size:18px}.layui-text a:not(.layui-btn){color:#01AAED}.layui-text a:not(.layui-btn):hover{text-decoration:underline}.layui-text ul{padding:5px 0 5px 15px}.layui-text ul li{margin-top:5px;list-style-type:disc}.layui-text em,.layui-word-aux{color:#999!important;padding:0 5px!important}.layui-btn{display:inline-block;height:38px;line-height:38px;padding:0 18px;background-color:#009688;color:#fff;white-space:nowrap;text-align:center;font-size:14px;border:none;border-radius:2px;cursor:pointer}.layui-btn:hover{opacity:.8;filter:alpha(opacity=80);color:#fff}.layui-btn:active{opacity:1;filter:alpha(opacity=100)}.layui-btn+.layui-btn{margin-left:10px}.layui-btn-container{font-size:0}.layui-btn-container .layui-btn{margin-right:10px;margin-bottom:10px}.layui-btn-container .layui-btn+.layui-btn{margin-left:0}.layui-table .layui-btn-container .layui-btn{margin-bottom:9px}.layui-btn-radius{border-radius:100px}.layui-btn .layui-icon{margin-right:3px;font-size:18px;vertical-align:bottom;vertical-align:middle\9}.layui-btn-primary{border:1px solid #C9C9C9;background-color:#fff;color:#555}.layui-btn-primary:hover{border-color:#009688;color:#333}.layui-btn-normal{background-color:#1E9FFF}.layui-btn-warm{background-color:#FFB800}.layui-btn-danger{background-color:#FF5722}.layui-btn-disabled,.layui-btn-disabled:active,.layui-btn-disabled:hover{border:1px solid #e6e6e6;background-color:#FBFBFB;color:#C9C9C9;cursor:not-allowed;opacity:1}.layui-btn-lg{height:44px;line-height:44px;padding:0 25px;font-size:16px}.layui-btn-sm{height:30px;line-height:30px;padding:0 10px;font-size:12px}.layui-btn-sm i{font-size:16px!important}.layui-btn-xs{height:22px;line-height:22px;padding:0 5px;font-size:12px}.layui-btn-xs i{font-size:14px!important}.layui-btn-group{display:inline-block;vertical-align:middle;font-size:0}.layui-btn-group .layui-btn{margin-left:0!important;margin-right:0!important;border-left:1px solid rgba(255,255,255,.5);border-radius:0}.layui-btn-group .layui-btn-primary{border-left:none}.layui-btn-group .layui-btn-primary:hover{border-color:#C9C9C9;color:#009688}.layui-btn-group .layui-btn:first-child{border-left:none;border-radius:2px 0 0 2px}.layui-btn-group .layui-btn-primary:first-child{border-left:1px solid #c9c9c9}.layui-btn-group .layui-btn:last-child{border-radius:0 2px 2px 0}.layui-btn-group .layui-btn+.layui-btn{margin-left:0}.layui-btn-group+.layui-btn-group{margin-left:10px}.layui-btn-fluid{width:100%}.layui-input,.layui-select,.layui-textarea{height:38px;line-height:1.3;line-height:38px\9;border-width:1px;border-style:solid;background-color:#fff;border-radius:2px}.layui-input::-webkit-input-placeholder,.layui-select::-webkit-input-placeholder,.layui-textarea::-webkit-input-placeholder{line-height:1.3}.layui-input,.layui-textarea{display:block;width:100%;padding-left:10px}.layui-input:hover,.layui-textarea:hover{border-color:#D2D2D2!important}.layui-input:focus,.layui-textarea:focus{border-color:#C9C9C9!important}.layui-textarea{min-height:100px;height:auto;line-height:20px;padding:6px 10px;resize:vertical}.layui-select{padding:0 10px}.layui-form input[type=checkbox],.layui-form input[type=radio],.layui-form select{display:none}.layui-form [lay-ignore]{display:initial}.layui-form-item{margin-bottom:15px;clear:both;*zoom:1}.layui-form-item:after{content:'\20';clear:both;*zoom:1;display:block;height:0}.layui-form-label{float:left;display:block;padding:9px 15px;width:80px;font-weight:400;line-height:20px;text-align:right}.layui-form-label-col{display:block;float:none;padding:9px 0;line-height:20px;text-align:left}.layui-form-item .layui-inline{margin-bottom:5px;margin-right:10px}.layui-input-block{margin-left:110px;min-height:36px}.layui-input-inline{display:inline-block;vertical-align:middle}.layui-form-item .layui-input-inline{float:left;width:190px;margin-right:10px}.layui-form-text .layui-input-inline{width:auto}.layui-form-mid{float:left;display:block;padding:9px 0!important;line-height:20px;margin-right:10px}.layui-form-danger+.layui-form-select .layui-input,.layui-form-danger:focus{border-color:#FF5722!important}.layui-form-select .layui-input{padding-right:30px;cursor:pointer}.layui-form-select .layui-edge{position:absolute;right:10px;top:50%;margin-top:-3px;cursor:pointer;border-width:6px;border-top-color:#c2c2c2;border-top-style:solid;transition:all .3s;-webkit-transition:all .3s}.layui-form-select dl{display:none;position:absolute;left:0;top:42px;padding:5px 0;z-index:999;min-width:100%;border:1px solid #d2d2d2;max-height:300px;overflow-y:auto;background-color:#fff;border-radius:2px;box-shadow:0 2px 4px rgba(0,0,0,.12);box-sizing:border-box}.layui-form-select dl dd,.layui-form-select dl dt{padding:0 10px;line-height:36px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.layui-form-select dl dt{font-size:12px;color:#999}.layui-form-select dl dd{cursor:pointer}.layui-form-select dl dd:hover{background-color:#f2f2f2}.layui-form-select .layui-select-group dd{padding-left:20px}.layui-form-select dl dd.layui-select-tips{padding-left:10px!important;color:#999}.layui-form-select dl dd.layui-this{background-color:#5FB878;color:#fff}.layui-form-checkbox,.layui-form-select dl dd.layui-disabled{background-color:#fff}.layui-form-selected dl{display:block}.layui-form-checkbox,.layui-form-checkbox *,.layui-form-switch{display:inline-block;vertical-align:middle}.layui-form-selected .layui-edge{margin-top:-9px;-webkit-transform:rotate(180deg);transform:rotate(180deg);margin-top:-3px\9}:root .layui-form-selected .layui-edge{margin-top:-9px\0/IE9}.layui-form-selectup dl{top:auto;bottom:42px}.layui-select-none{margin:5px 0;text-align:center;color:#999}.layui-select-disabled .layui-disabled{border-color:#eee!important}.layui-select-disabled .layui-edge{border-top-color:#d2d2d2}.layui-form-checkbox{position:relative;height:30px;line-height:30px;margin-right:10px;padding-right:30px;cursor:pointer;font-size:0;-webkit-transition:.1s linear;transition:.1s linear;box-sizing:border-box}.layui-form-checkbox span{padding:0 10px;height:100%;font-size:14px;border-radius:2px 0 0 2px;background-color:#d2d2d2;color:#fff;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.layui-form-checkbox:hover span{background-color:#c2c2c2}.layui-form-checkbox i{position:absolute;right:0;top:0;width:30px;height:28px;border:1px solid #d2d2d2;border-left:none;border-radius:0 2px 2px 0;color:#fff;font-size:20px;text-align:center}.layui-form-checkbox:hover i{border-color:#c2c2c2;color:#c2c2c2}.layui-form-checked,.layui-form-checked:hover{border-color:#5FB878}.layui-form-checked span,.layui-form-checked:hover span{background-color:#5FB878}.layui-form-checked i,.layui-form-checked:hover i{color:#5FB878}.layui-form-item .layui-form-checkbox{margin-top:4px}.layui-form-checkbox[lay-skin=primary]{height:auto!important;line-height:normal!important;border:none!important;margin-right:0;padding-right:0;background:0 0}.layui-form-checkbox[lay-skin=primary] span{float:right;padding-right:15px;line-height:18px;background:0 0;color:#666}.layui-form-checkbox[lay-skin=primary] i{position:relative;top:0;width:16px;height:16px;line-height:16px;border:1px solid #d2d2d2;font-size:12px;border-radius:2px;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-checkbox[lay-skin=primary]:hover i{border-color:#5FB878;color:#fff}.layui-form-checked[lay-skin=primary] i{border-color:#5FB878;background-color:#5FB878;color:#fff}.layui-checkbox-disbaled[lay-skin=primary] span{background:0 0!important;color:#c2c2c2}.layui-checkbox-disbaled[lay-skin=primary]:hover i{border-color:#d2d2d2}.layui-form-item .layui-form-checkbox[lay-skin=primary]{margin-top:10px}.layui-form-switch{position:relative;height:22px;line-height:22px;min-width:35px;padding:0 5px;margin-top:8px;border:1px solid #d2d2d2;border-radius:20px;cursor:pointer;background-color:#fff;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch i{position:absolute;left:5px;top:3px;width:16px;height:16px;border-radius:20px;background-color:#d2d2d2;-webkit-transition:.1s linear;transition:.1s linear}.layui-form-switch em{position:relative;top:0;width:25px;margin-left:21px;padding:0!important;text-align:center!important;color:#999!important;font-style:normal!important;font-size:12px}.layui-form-onswitch{border-color:#5FB878;background-color:#5FB878}.layui-checkbox-disbaled,.layui-checkbox-disbaled i{border-color:#e2e2e2!important}.layui-form-onswitch i{left:100%;margin-left:-21px;background-color:#fff}.layui-form-onswitch em{margin-left:5px;margin-right:21px;color:#fff!important}.layui-checkbox-disbaled span{background-color:#e2e2e2!important}.layui-checkbox-disbaled:hover i{color:#fff!important}[lay-radio]{display:none}.layui-form-radio,.layui-form-radio *{display:inline-block;vertical-align:middle}.layui-form-radio{line-height:28px;margin:6px 10px 0 0;padding-right:10px;cursor:pointer;font-size:0}.layui-form-radio *{font-size:14px}.layui-form-radio>i{margin-right:8px;font-size:22px;color:#c2c2c2}.layui-form-radio>i:hover,.layui-form-radioed>i{color:#5FB878}.layui-radio-disbaled>i{color:#e2e2e2!important}.layui-form-pane .layui-form-label{width:110px;padding:8px 15px;height:38px;line-height:20px;border-width:1px;border-style:solid;border-radius:2px 0 0 2px;text-align:center;background-color:#FBFBFB;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;box-sizing:border-box}.layui-form-pane .layui-input-inline{margin-left:-1px}.layui-form-pane .layui-input-block{margin-left:110px;left:-1px}.layui-form-pane .layui-input{border-radius:0 2px 2px 0}.layui-form-pane .layui-form-text .layui-form-label{float:none;width:100%;border-radius:2px;box-sizing:border-box;text-align:left}.layui-form-pane .layui-form-text .layui-input-inline{display:block;margin:0;top:-1px;clear:both}.layui-form-pane .layui-form-text .layui-input-block{margin:0;left:0;top:-1px}.layui-form-pane .layui-form-text .layui-textarea{min-height:100px;border-radius:0 0 2px 2px}.layui-form-pane .layui-form-checkbox{margin:4px 0 4px 10px}.layui-form-pane .layui-form-radio,.layui-form-pane .layui-form-switch{margin-top:6px;margin-left:10px}.layui-form-pane .layui-form-item[pane]{position:relative;border-width:1px;border-style:solid}.layui-form-pane .layui-form-item[pane] .layui-form-label{position:absolute;left:0;top:0;height:100%;border-width:0 1px 0 0}.layui-form-pane .layui-form-item[pane] .layui-input-inline{margin-left:110px}@media screen and (max-width:450px){.layui-form-item .layui-form-label{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-form-item .layui-inline{display:block;margin-right:0;margin-bottom:20px;clear:both}.layui-form-item .layui-inline:after{content:'\20';clear:both;display:block;height:0}.layui-form-item .layui-input-inline{display:block;float:none;left:-3px;width:auto;margin:0 0 10px 112px}.layui-form-item .layui-input-inline+.layui-form-mid{margin-left:110px;top:-5px;padding:0}.layui-form-item .layui-form-checkbox{margin-right:5px;margin-bottom:5px}}.layui-layedit{border-width:1px;border-style:solid;border-radius:2px}.layui-layedit-tool{padding:3px 5px;border-bottom-width:1px;border-bottom-style:solid;font-size:0}.layedit-tool-fixed{position:fixed;top:0;border-top:1px solid #e2e2e2}.layui-layedit-tool .layedit-tool-mid,.layui-layedit-tool .layui-icon{display:inline-block;vertical-align:middle;text-align:center;font-size:14px}.layui-layedit-tool .layui-icon{position:relative;width:32px;height:30px;line-height:30px;margin:3px 5px;color:#777;cursor:pointer;border-radius:2px}.layui-layedit-tool .layui-icon:hover{color:#393D49}.layui-layedit-tool .layui-icon:active{color:#000}.layui-layedit-tool .layedit-tool-active{background-color:#e2e2e2;color:#000}.layui-layedit-tool .layui-disabled,.layui-layedit-tool .layui-disabled:hover{color:#d2d2d2;cursor:not-allowed}.layui-layedit-tool .layedit-tool-mid{width:1px;height:18px;margin:0 10px;background-color:#d2d2d2}.layedit-tool-html{width:50px!important;font-size:30px!important}.layedit-tool-b,.layedit-tool-code,.layedit-tool-help{font-size:16px!important}.layedit-tool-d,.layedit-tool-face,.layedit-tool-image,.layedit-tool-unlink{font-size:18px!important}.layedit-tool-image input{position:absolute;font-size:0;left:0;top:0;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-layedit-iframe iframe{display:block;width:100%}#LAY_layedit_code{overflow:hidden}.layui-laypage{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;margin:10px 0;font-size:0}.layui-laypage>a:first-child,.layui-laypage>a:first-child em{border-radius:2px 0 0 2px}.layui-laypage>a:last-child,.layui-laypage>a:last-child em{border-radius:0 2px 2px 0}.layui-laypage>:first-child{margin-left:0!important}.layui-laypage>:last-child{margin-right:0!important}.layui-laypage a,.layui-laypage button,.layui-laypage input,.layui-laypage select,.layui-laypage span{border:1px solid #e2e2e2}.layui-laypage a,.layui-laypage span{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding:0 15px;height:28px;line-height:28px;margin:0 -1px 5px 0;background-color:#fff;color:#333;font-size:12px}.layui-laypage a:hover{color:#009688}.layui-laypage em{font-style:normal}.layui-laypage .layui-laypage-spr{color:#999;font-weight:700}.layui-laypage a{text-decoration:none}.layui-laypage .layui-laypage-curr{position:relative}.layui-laypage .layui-laypage-curr em{position:relative;color:#fff}.layui-laypage .layui-laypage-curr .layui-laypage-em{position:absolute;left:-1px;top:-1px;padding:1px;width:100%;height:100%;background-color:#009688}.layui-laypage-em{border-radius:2px}.layui-laypage-next em,.layui-laypage-prev em{font-family:Sim sun;font-size:16px}.layui-laypage .layui-laypage-count,.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh,.layui-laypage .layui-laypage-skip{margin-left:10px;margin-right:10px;padding:0;border:none}.layui-laypage .layui-laypage-limits,.layui-laypage .layui-laypage-refresh{vertical-align:top}.layui-laypage .layui-laypage-refresh i{font-size:18px;cursor:pointer}.layui-laypage select{height:22px;padding:3px;border-radius:2px;cursor:pointer}.layui-laypage .layui-laypage-skip{height:30px;line-height:30px;color:#999}.layui-laypage button,.layui-laypage input{height:30px;line-height:30px;border-radius:2px;vertical-align:top;background-color:#fff;box-sizing:border-box}.layui-laypage input{display:inline-block;width:40px;margin:0 10px;padding:0 3px;text-align:center}.layui-laypage input:focus,.layui-laypage select:focus{border-color:#009688!important}.layui-laypage button{margin-left:10px;padding:0 10px;cursor:pointer}.layui-table,.layui-table-view{margin:10px 0}.layui-flow-more{margin:10px 0;text-align:center;color:#999;font-size:14px}.layui-flow-more a{height:32px;line-height:32px}.layui-flow-more a *{display:inline-block;vertical-align:top}.layui-flow-more a cite{padding:0 20px;border-radius:3px;background-color:#eee;color:#333;font-style:normal}.layui-flow-more a cite:hover{opacity:.8}.layui-flow-more a i{font-size:30px;color:#737383}.layui-table{width:100%;background-color:#fff;color:#666}.layui-table tr{transition:all .3s;-webkit-transition:all .3s}.layui-table th{text-align:left;font-weight:400}.layui-table tbody tr:hover,.layui-table thead tr,.layui-table-click,.layui-table-header,.layui-table-hover,.layui-table-mend,.layui-table-patch,.layui-table-tool,.layui-table[lay-even] tr:nth-child(even){background-color:#f2f2f2}.layui-table td,.layui-table th,.layui-table-fixed-r,.layui-table-header,.layui-table-page,.layui-table-tips-main,.layui-table-tool,.layui-table-view,.layui-table[lay-skin=line],.layui-table[lay-skin=row]{border-width:1px;border-style:solid;border-color:#e6e6e6}.layui-table td,.layui-table th{position:relative;padding:9px 15px;min-height:20px;line-height:20px;font-size:14px}.layui-table[lay-skin=line] td,.layui-table[lay-skin=line] th{border-width:0 0 1px}.layui-table[lay-skin=row] td,.layui-table[lay-skin=row] th{border-width:0 1px 0 0}.layui-table[lay-skin=nob] td,.layui-table[lay-skin=nob] th{border:none}.layui-table img{max-width:100px}.layui-table[lay-size=lg] td,.layui-table[lay-size=lg] th{padding:15px 30px}.layui-table-view .layui-table[lay-size=lg] .layui-table-cell{height:40px;line-height:40px}.layui-table[lay-size=sm] td,.layui-table[lay-size=sm] th{font-size:12px;padding:5px 10px}.layui-table-view .layui-table[lay-size=sm] .layui-table-cell{height:20px;line-height:20px}.layui-table[lay-data]{display:none}.layui-table-box,.layui-table-view{position:relative;overflow:hidden}.layui-table-view .layui-table{position:relative;width:auto;margin:0}.layui-table-body,.layui-table-header .layui-table,.layui-table-page{margin-bottom:-1px}.layui-table-view .layui-table[lay-skin=line]{border-width:0 1px 0 0}.layui-table-view .layui-table[lay-skin=row]{border-width:0 0 1px}.layui-table-view .layui-table td,.layui-table-view .layui-table th{padding:5px 0;border-top:none;border-left:none}.layui-table-view .layui-table td{cursor:default}.layui-table-view .layui-form-checkbox[lay-skin=primary] i{width:18px;height:18px}.layui-table-header{border-width:0 0 1px;overflow:hidden}.layui-table-sort{width:10px;height:20px;margin-left:5px;cursor:pointer!important}.layui-table-sort .layui-edge{position:absolute;left:5px;border-width:5px}.layui-table-sort .layui-table-sort-asc{top:4px;border-top:none;border-bottom-style:solid;border-bottom-color:#b2b2b2}.layui-table-sort .layui-table-sort-asc:hover{border-bottom-color:#666}.layui-table-sort .layui-table-sort-desc{bottom:4px;border-bottom:none;border-top-style:solid;border-top-color:#b2b2b2}.layui-table-sort .layui-table-sort-desc:hover{border-top-color:#666}.layui-table-sort[lay-sort=asc] .layui-table-sort-asc{border-bottom-color:#000}.layui-table-sort[lay-sort=desc] .layui-table-sort-desc{border-top-color:#000}.layui-table-cell{height:28px;line-height:28px;padding:0 15px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;box-sizing:border-box}.layui-table-cell .layui-form-checkbox[lay-skin=primary],.layui-table-cell .layui-form-radio[lay-skin=primary]{top:-1px;vertical-align:middle}.layui-table-cell .layui-form-radio{padding-right:0}.layui-table-cell .layui-form-radio>i{margin-right:0}.layui-table-cell .layui-table-link{color:#01AAED}.laytable-cell-checkbox,.laytable-cell-numbers,.laytable-cell-radio,.laytable-cell-space{padding:0;text-align:center}.layui-table-body{position:relative;overflow:auto;margin-right:-1px}.layui-table-body .layui-none{line-height:40px;text-align:center;color:#999}.layui-table-fixed{position:absolute;left:0;top:0}.layui-table-fixed .layui-table-body{overflow:hidden}.layui-table-fixed-l{box-shadow:0 -1px 8px rgba(0,0,0,.08)}.layui-table-fixed-r{left:auto;right:-1px;border-width:0 0 0 1px;box-shadow:-1px 0 8px rgba(0,0,0,.08)}.layui-table-fixed-r .layui-table-header{position:relative;overflow:visible}.layui-table-mend{position:absolute;right:-49px;top:0;height:100%;width:50px}.layui-table-tool{position:relative;width:100%;height:50px;line-height:30px;padding:10px 15px;border-width:0 0 1px}.layui-table-page{position:relative;width:100%;padding:7px 7px 0;border-width:1px 0 0;height:41px;font-size:12px}.layui-table-page>div{height:26px}.layui-table-page .layui-laypage{margin:0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span{height:26px;line-height:26px;margin-bottom:10px;border:none;background:0 0}.layui-table-page .layui-laypage a,.layui-table-page .layui-laypage span.layui-laypage-curr{padding:0 12px}.layui-table-page .layui-laypage span{margin-left:0;padding:0}.layui-table-page .layui-laypage .layui-laypage-prev{margin-left:-7px!important}.layui-table-page .layui-laypage .layui-laypage-curr .layui-laypage-em{left:0;top:0;padding:0}.layui-table-page .layui-laypage button,.layui-table-page .layui-laypage input{height:26px;line-height:26px}.layui-table-page .layui-laypage input{width:40px}.layui-table-page .layui-laypage button{padding:0 10px}.layui-table-page select{height:18px}.layui-table-view select[lay-ignore]{display:inline-block}.layui-table-patch .layui-table-cell{padding:0;width:30px}.layui-table-edit{position:absolute;left:0;top:0;width:100%;height:100%;padding:0 14px 1px;border-radius:0;box-shadow:1px 1px 20px rgba(0,0,0,.15)}.layui-table-edit:focus{border-color:#5FB878!important}select.layui-table-edit{padding:0 0 0 10px;border-color:#C9C9C9}.layui-table-view .layui-form-checkbox,.layui-table-view .layui-form-radio,.layui-table-view .layui-form-switch{top:0;margin:0;box-sizing:content-box}.layui-table-view .layui-form-checkbox{top:-1px;height:26px;line-height:26px}body .layui-table-tips .layui-layer-content{background:0 0;padding:0;box-shadow:0 1px 6px rgba(0,0,0,.1)}.layui-table-tips-main{margin:-44px 0 0 -1px;max-height:150px;padding:8px 15px;font-size:14px;overflow-y:scroll;background-color:#fff;color:#333}.layui-table-tips-c{position:absolute;right:-3px;top:-12px;width:18px;height:18px;padding:3px;text-align:center;font-weight:700;border-radius:100%;font-size:14px;cursor:pointer;background-color:#666}.layui-table-tips-c:hover{background-color:#999}.layui-upload-file{display:none!important;opacity:.01;filter:Alpha(opacity=1)}.layui-upload-drag,.layui-upload-form,.layui-upload-wrap{display:inline-block}.layui-upload-list{margin:10px 0}.layui-upload-choose{padding:0 10px;color:#999}.layui-upload-drag{position:relative;padding:30px;border:1px dashed #e2e2e2;background-color:#fff;text-align:center;cursor:pointer;color:#999}.layui-upload-drag .layui-icon{font-size:50px;color:#009688}.layui-upload-drag[lay-over]{border-color:#009688}.layui-upload-iframe{position:absolute;width:0;height:0;border:0;visibility:hidden}.layui-upload-wrap{position:relative;vertical-align:middle}.layui-upload-wrap .layui-upload-file{display:block!important;position:absolute;left:0;top:0;z-index:10;font-size:100px;width:100%;height:100%;opacity:.01;filter:Alpha(opacity=1);cursor:pointer}.layui-rate,.layui-rate *{display:inline-block;vertical-align:middle}.layui-rate{padding:10px 5px 10px 0;font-size:0}.layui-rate li i.layui-icon{font-size:20px;color:#FFB800;margin-right:5px;transition:all .3s;-webkit-transition:all .3s}.layui-rate li i:hover{cursor:pointer;transform:scale(1.12);-webkit-transform:scale(1.12)}.layui-rate[readonly] li i:hover{cursor:default;transform:scale(1)}.layui-code{position:relative;margin:10px 0;padding:15px;line-height:20px;border:1px solid #ddd;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New;font-size:12px}.layui-tree{line-height:26px}.layui-tree li{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-tree li .layui-tree-spread,.layui-tree li a{display:inline-block;vertical-align:top;height:26px;*display:inline;*zoom:1;cursor:pointer}.layui-tree li a{font-size:0}.layui-tree li a i{font-size:16px}.layui-tree li a cite{padding:0 6px;font-size:14px;font-style:normal}.layui-tree li i{padding-left:6px;color:#333;-moz-user-select:none}.layui-tree li .layui-tree-check{font-size:13px}.layui-tree li .layui-tree-check:hover{color:#009E94}.layui-tree li ul{display:none;margin-left:20px}.layui-tree li .layui-tree-enter{line-height:24px;border:1px dotted #000}.layui-tree-drag{display:none;position:absolute;left:-666px;top:-666px;background-color:#f2f2f2;padding:5px 10px;border:1px dotted #000;white-space:nowrap}.layui-tree-drag i{padding-right:5px}.layui-nav{position:relative;padding:0 20px;background-color:#393D49;color:#fff;border-radius:2px;font-size:0;box-sizing:border-box}.layui-nav *{font-size:14px}.layui-nav .layui-nav-item{position:relative;display:inline-block;*display:inline;*zoom:1;vertical-align:middle;line-height:60px}.layui-nav .layui-nav-item a{display:block;padding:0 20px;color:#fff;color:rgba(255,255,255,.7);transition:all .3s;-webkit-transition:all .3s}.layui-nav .layui-this:after,.layui-nav-bar,.layui-nav-tree .layui-nav-itemed:after{position:absolute;left:0;top:0;width:0;height:5px;background-color:#5FB878;transition:all .2s;-webkit-transition:all .2s}.layui-nav-bar{z-index:1000}.layui-nav .layui-nav-item a:hover,.layui-nav .layui-this a{color:#fff}.layui-nav .layui-this:after{content:'';top:auto;bottom:0;width:100%}.layui-nav-img{width:30px;height:30px;margin-right:10px;border-radius:50%}.layui-nav .layui-nav-more{content:'';width:0;height:0;border-style:solid dashed dashed;border-color:#fff transparent transparent;overflow:hidden;cursor:pointer;transition:all .2s;-webkit-transition:all .2s;position:absolute;top:50%;right:3px;margin-top:-3px;border-width:6px;border-top-color:rgba(255,255,255,.7)}.layui-nav .layui-nav-mored,.layui-nav-itemed>a .layui-nav-more{margin-top:-9px;border-style:dashed dashed solid;border-color:transparent transparent #fff}.layui-nav-child{display:none;position:absolute;left:0;top:65px;min-width:100%;line-height:36px;padding:5px 0;box-shadow:0 2px 4px rgba(0,0,0,.12);border:1px solid #d2d2d2;background-color:#fff;z-index:100;border-radius:2px;white-space:nowrap}.layui-nav .layui-nav-child a{color:#333}.layui-nav .layui-nav-child a:hover{background-color:#f2f2f2;color:#000}.layui-nav-child dd{position:relative}.layui-nav .layui-nav-child dd.layui-this a,.layui-nav-child dd.layui-this{background-color:#5FB878;color:#fff}.layui-nav-child dd.layui-this:after{display:none}.layui-nav-tree{width:200px;padding:0}.layui-nav-tree .layui-nav-item{display:block;width:100%;line-height:45px}.layui-nav-tree .layui-nav-item a{position:relative;height:45px;line-height:45px;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-nav-tree .layui-nav-item a:hover{background-color:#4E5465}.layui-nav-tree .layui-nav-bar{width:5px;height:0;background-color:#009688}.layui-nav-tree .layui-nav-child dd.layui-this,.layui-nav-tree .layui-nav-child dd.layui-this a,.layui-nav-tree .layui-this,.layui-nav-tree .layui-this>a,.layui-nav-tree .layui-this>a:hover{background-color:#009688;color:#fff}.layui-nav-tree .layui-this:after{display:none}.layui-nav-itemed>a,.layui-nav-tree .layui-nav-title a,.layui-nav-tree .layui-nav-title a:hover{color:#fff!important}.layui-nav-tree .layui-nav-child{position:relative;z-index:0;top:0;border:none;box-shadow:none}.layui-nav-tree .layui-nav-child a{height:40px;line-height:40px;color:#fff;color:rgba(255,255,255,.7)}.layui-nav-tree .layui-nav-child,.layui-nav-tree .layui-nav-child a:hover{background:0 0;color:#fff}.layui-nav-tree .layui-nav-more{right:10px}.layui-nav-itemed>.layui-nav-child{display:block;padding:0;background-color:rgba(0,0,0,.3)!important}.layui-nav-itemed>.layui-nav-child>.layui-this>.layui-nav-child{display:block}.layui-nav-side{position:fixed;top:0;bottom:0;left:0;overflow-x:hidden;z-index:999}.layui-bg-blue .layui-nav-bar,.layui-bg-blue .layui-nav-itemed:after,.layui-bg-blue .layui-this:after{background-color:#93D1FF}.layui-bg-blue .layui-nav-child dd.layui-this{background-color:#1E9FFF}.layui-bg-blue .layui-nav-itemed>a,.layui-nav-tree.layui-bg-blue .layui-nav-title a,.layui-nav-tree.layui-bg-blue .layui-nav-title a:hover{background-color:#007DDB!important}.layui-breadcrumb{visibility:hidden;font-size:0}.layui-breadcrumb>*{font-size:14px}.layui-breadcrumb a{color:#999!important}.layui-breadcrumb a:hover{color:#5FB878!important}.layui-breadcrumb a cite{color:#666;font-style:normal}.layui-breadcrumb span[lay-separator]{margin:0 10px;color:#999}.layui-tab{margin:10px 0;text-align:left!important}.layui-tab[overflow]>.layui-tab-title{overflow:hidden}.layui-tab-title{position:relative;left:0;height:40px;white-space:nowrap;font-size:0;border-bottom-width:1px;border-bottom-style:solid;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;font-size:14px;transition:all .2s;-webkit-transition:all .2s;position:relative;line-height:40px;min-width:65px;padding:0 15px;text-align:center;cursor:pointer}.layui-tab-title li a{display:block}.layui-tab-title .layui-this{color:#000}.layui-tab-title .layui-this:after{position:absolute;left:0;top:0;content:'';width:100%;height:41px;border-width:1px;border-style:solid;border-bottom-color:#fff;border-radius:2px 2px 0 0;box-sizing:border-box;pointer-events:none}.layui-tab-bar{position:absolute;right:0;top:0;z-index:10;width:30px;height:39px;line-height:39px;border-width:1px;border-style:solid;border-radius:2px;text-align:center;background-color:#fff;cursor:pointer}.layui-tab-bar .layui-icon{position:relative;display:inline-block;top:3px;transition:all .3s;-webkit-transition:all .3s}.layui-tab-item{display:none}.layui-tab-more{padding-right:30px;height:auto!important;white-space:normal!important}.layui-tab-more li.layui-this:after{border-bottom-color:#e2e2e2;border-radius:2px}.layui-tab-more .layui-tab-bar .layui-icon{top:-2px;top:3px\9;-webkit-transform:rotate(180deg);transform:rotate(180deg)}:root .layui-tab-more .layui-tab-bar .layui-icon{top:-2px\0/IE9}.layui-tab-content{padding:10px}.layui-tab-title li .layui-tab-close{position:relative;display:inline-block;width:18px;height:18px;line-height:20px;margin-left:8px;top:1px;text-align:center;font-size:14px;color:#c2c2c2;transition:all .2s;-webkit-transition:all .2s}.layui-tab-title li .layui-tab-close:hover{border-radius:2px;background-color:#FF5722;color:#fff}.layui-tab-brief>.layui-tab-title .layui-this{color:#009688}.layui-tab-brief>.layui-tab-more li.layui-this:after,.layui-tab-brief>.layui-tab-title .layui-this:after{border:none;border-radius:0;border-bottom:2px solid #5FB878}.layui-tab-brief[overflow]>.layui-tab-title .layui-this:after{top:-1px}.layui-tab-card{border-width:1px;border-style:solid;border-radius:2px;box-shadow:0 2px 5px 0 rgba(0,0,0,.1)}.layui-tab-card>.layui-tab-title{background-color:#f2f2f2}.layui-tab-card>.layui-tab-title li{margin-right:-1px;margin-left:-1px}.layui-tab-card>.layui-tab-title .layui-this{background-color:#fff}.layui-tab-card>.layui-tab-title .layui-this:after{border-top:none;border-width:1px;border-bottom-color:#fff}.layui-tab-card>.layui-tab-title .layui-tab-bar{height:40px;line-height:40px;border-radius:0;border-top:none;border-right:none}.layui-tab-card>.layui-tab-more .layui-this{background:0 0;color:#5FB878}.layui-tab-card>.layui-tab-more .layui-this:after{border:none}.layui-timeline{padding-left:5px}.layui-timeline-item{position:relative;padding-bottom:20px}.layui-timeline-axis{position:absolute;left:-5px;top:0;z-index:10;width:20px;height:20px;line-height:20px;background-color:#fff;color:#5FB878;border-radius:50%;text-align:center;cursor:pointer}.layui-timeline-axis:hover{color:#FF5722}.layui-timeline-item:before{content:'';position:absolute;left:5px;top:0;z-index:0;width:1px;height:100%}.layui-timeline-item:last-child:before{display:none}.layui-timeline-item:first-child:before{display:block}.layui-timeline-content{padding-left:25px}.layui-timeline-title{position:relative;margin-bottom:10px}.layui-badge,.layui-badge-dot,.layui-badge-rim{position:relative;display:inline-block;padding:0 6px;font-size:12px;text-align:center;background-color:#FF5722;color:#fff;border-radius:2px}.layui-badge{height:18px;line-height:18px}.layui-badge-dot{width:8px;height:8px;padding:0;border-radius:50%}.layui-badge-rim{height:18px;line-height:18px;border-width:1px;border-style:solid;background-color:#fff;color:#666}.layui-btn .layui-badge,.layui-btn .layui-badge-dot{margin-left:5px}.layui-nav .layui-badge,.layui-nav .layui-badge-dot{position:absolute;top:50%;margin:-8px 6px 0}.layui-tab-title .layui-badge,.layui-tab-title .layui-badge-dot{left:5px;top:-2px}.layui-carousel{position:relative;left:0;top:0;background-color:#f8f8f8}.layui-carousel>[carousel-item]{position:relative;width:100%;height:100%;overflow:hidden}.layui-carousel>[carousel-item]:before{position:absolute;content:'\e63d';left:50%;top:50%;width:100px;line-height:20px;margin:-10px 0 0 -50px;text-align:center;color:#c2c2c2;font-family:layui-icon!important;font-size:30px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-carousel>[carousel-item]>*{display:none;position:absolute;left:0;top:0;width:100%;height:100%;background-color:#f8f8f8;transition-duration:.3s;-webkit-transition-duration:.3s}.layui-carousel-updown>*{-webkit-transition:.3s ease-in-out up;transition:.3s ease-in-out up}.layui-carousel-arrow{display:none\9;opacity:0;position:absolute;left:10px;top:50%;margin-top:-18px;width:36px;height:36px;line-height:36px;text-align:center;font-size:20px;border:0;border-radius:50%;background-color:rgba(0,0,0,.2);color:#fff;-webkit-transition-duration:.3s;transition-duration:.3s;cursor:pointer}.layui-carousel-arrow[lay-type=add]{left:auto!important;right:10px}.layui-carousel:hover .layui-carousel-arrow[lay-type=add],.layui-carousel[lay-arrow=always] .layui-carousel-arrow[lay-type=add]{right:20px}.layui-carousel[lay-arrow=always] .layui-carousel-arrow{opacity:1;left:20px}.layui-carousel[lay-arrow=none] .layui-carousel-arrow{display:none}.layui-carousel-arrow:hover,.layui-carousel-ind ul:hover{background-color:rgba(0,0,0,.35)}.layui-carousel:hover .layui-carousel-arrow{display:block\9;opacity:1;left:20px}.layui-carousel-ind{position:relative;top:-35px;width:100%;line-height:0!important;text-align:center;font-size:0}.layui-carousel[lay-indicator=outside]{margin-bottom:30px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind{top:10px}.layui-carousel[lay-indicator=outside] .layui-carousel-ind ul{background-color:rgba(0,0,0,.5)}.layui-carousel[lay-indicator=none] .layui-carousel-ind{display:none}.layui-carousel-ind ul{display:inline-block;padding:5px;background-color:rgba(0,0,0,.2);border-radius:10px;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li{display:inline-block;width:10px;height:10px;margin:0 3px;font-size:14px;background-color:#e2e2e2;background-color:rgba(255,255,255,.5);border-radius:50%;cursor:pointer;-webkit-transition-duration:.3s;transition-duration:.3s}.layui-carousel-ind li:hover{background-color:rgba(255,255,255,.7)}.layui-carousel-ind li.layui-this{background-color:#fff}.layui-carousel>[carousel-item]>.layui-carousel-next,.layui-carousel>[carousel-item]>.layui-carousel-prev,.layui-carousel>[carousel-item]>.layui-this{display:block}.layui-carousel>[carousel-item]>.layui-this{left:0}.layui-carousel>[carousel-item]>.layui-carousel-prev{left:-100%}.layui-carousel>[carousel-item]>.layui-carousel-next{left:100%}.layui-carousel>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel>[carousel-item]>.layui-carousel-prev.layui-carousel-right{left:0}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-left{left:-100%}.layui-carousel>[carousel-item]>.layui-this.layui-carousel-right{left:100%}.layui-carousel[lay-anim=updown] .layui-carousel-arrow{left:50%!important;top:20px;margin:0 0 0 -18px}.layui-carousel[lay-anim=updown]>[carousel-item]>*,.layui-carousel[lay-anim=fade]>[carousel-item]>*{left:0!important}.layui-carousel[lay-anim=updown] .layui-carousel-arrow[lay-type=add]{top:auto!important;bottom:20px}.layui-carousel[lay-anim=updown] .layui-carousel-ind{position:absolute;top:50%;right:20px;width:auto;height:auto}.layui-carousel[lay-anim=updown] .layui-carousel-ind ul{padding:3px 5px}.layui-carousel[lay-anim=updown] .layui-carousel-ind li{display:block;margin:6px 0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next{top:100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{top:0}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-left{top:-100%}.layui-carousel[lay-anim=updown]>[carousel-item]>.layui-this.layui-carousel-right{top:100%}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev{opacity:0}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-next.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-carousel-prev.layui-carousel-right{opacity:1}.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-left,.layui-carousel[lay-anim=fade]>[carousel-item]>.layui-this.layui-carousel-right{opacity:0}.layui-fixbar{position:fixed;right:15px;bottom:15px;z-index:9999}.layui-fixbar li{width:50px;height:50px;line-height:50px;margin-bottom:1px;text-align:center;cursor:pointer;font-size:30px;background-color:#9F9F9F;color:#fff;border-radius:2px;opacity:.95}.layui-fixbar li:hover{opacity:.85}.layui-fixbar li:active{opacity:1}.layui-fixbar .layui-fixbar-top{display:none;font-size:40px}body .layui-util-face{border:none;background:0 0}body .layui-util-face .layui-layer-content{padding:0;background-color:#fff;color:#666;box-shadow:none}.layui-util-face .layui-layer-TipsG{display:none}.layui-util-face ul{position:relative;width:372px;padding:10px;border:1px solid #D9D9D9;background-color:#fff;box-shadow:0 0 20px rgba(0,0,0,.2)}.layui-util-face ul li{cursor:pointer;float:left;border:1px solid #e8e8e8;height:22px;width:26px;overflow:hidden;margin:-1px 0 0 -1px;padding:4px 2px;text-align:center}.layui-util-face ul li:hover{position:relative;z-index:2;border:1px solid #eb7350;background:#fff9ec}.layui-anim{-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both}.layui-anim.layui-icon{display:inline-block}.layui-anim-loop{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.layui-trans,.layui-trans a{transition:all .3s;-webkit-transition:all .3s}@-webkit-keyframes layui-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}@keyframes layui-rotate{from{transform:rotate(0)}to{transform:rotate(360deg)}}.layui-anim-rotate{-webkit-animation-name:layui-rotate;animation-name:layui-rotate;-webkit-animation-duration:1s;animation-duration:1s;-webkit-animation-timing-function:linear;animation-timing-function:linear}@-webkit-keyframes layui-up{from{-webkit-transform:translate3d(0,100%,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-up{from{transform:translate3d(0,100%,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-up{-webkit-animation-name:layui-up;animation-name:layui-up}@-webkit-keyframes layui-upbit{from{-webkit-transform:translate3d(0,30px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes layui-upbit{from{transform:translate3d(0,30px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-anim-upbit{-webkit-animation-name:layui-upbit;animation-name:layui-upbit}@-webkit-keyframes layui-scale{0%{opacity:.3;-webkit-transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale{0%{opacity:.3;-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-ms-transform:scale(1);transform:scale(1)}}.layui-anim-scale{-webkit-animation-name:layui-scale;animation-name:layui-scale}@-webkit-keyframes layui-scale-spring{0%{opacity:.5;-webkit-transform:scale(.5)}80%{opacity:.8;-webkit-transform:scale(1.1)}100%{opacity:1;-webkit-transform:scale(1)}}@keyframes layui-scale-spring{0%{opacity:.5;transform:scale(.5)}80%{opacity:.8;transform:scale(1.1)}100%{opacity:1;transform:scale(1)}}.layui-anim-scaleSpring{-webkit-animation-name:layui-scale-spring;animation-name:layui-scale-spring}@-webkit-keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}@keyframes layui-fadein{0%{opacity:0}100%{opacity:1}}.layui-anim-fadein{-webkit-animation-name:layui-fadein;animation-name:layui-fadein}@-webkit-keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}@keyframes layui-fadeout{0%{opacity:1}100%{opacity:0}}.layui-anim-fadeout{-webkit-animation-name:layui-fadeout;animation-name:layui-fadeout}
  1 +/** layui-v2.3.0 MIT License By https://www.layui.com */
  2 + blockquote,body,button,dd,div,dl,dt,form,h1,h2,h3,h4,h5,h6,input,legend,li,ol,p,td,textarea,th,ul{margin:0;padding:0;-webkit-tap-highlight-color:rgba(0,0,0,0)}html{font:12px 'Helvetica Neue','PingFang SC',STHeitiSC-Light,Helvetica,Arial,sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}a,button,input{-webkit-tap-highlight-color:rgba(255,0,0,0)}a{text-decoration:none;background:0 0}a:active,a:hover{outline:0}table{border-collapse:collapse;border-spacing:0}li{list-style:none}b,strong{font-weight:700}h1,h2,h3,h4,h5,h6{font-weight:500}address,cite,dfn,em,var{font-style:normal}dfn{font-style:italic}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}img{border:0;vertical-align:bottom}.layui-inline,input,label{vertical-align:middle}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0;outline:0}button,select{text-transform:none}select{-webkit-appearance:none;border:none}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}@font-face{font-family:layui-icon;src:url(../font/iconfont.eot?v=1.0.7);src:url(../font/iconfont.eot?v=1.0.7#iefix) format('embedded-opentype'),url(../font/iconfont.woff?v=1.0.7) format('woff'),url(../font/iconfont.ttf?v=1.0.7) format('truetype'),url(../font/iconfont.svg?v=1.0.7#iconfont) format('svg')}.layui-icon{font-family:layui-icon!important;font-size:16px;font-style:normal;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.layui-box,.layui-box *{-webkit-box-sizing:content-box!important;-moz-box-sizing:content-box!important;box-sizing:content-box!important}.layui-border-box,.layui-border-box *{-webkit-box-sizing:border-box!important;-moz-box-sizing:border-box!important;box-sizing:border-box!important}.layui-inline{position:relative;display:inline-block;*display:inline;*zoom:1}.layui-edge,.layui-upload-iframe{position:absolute;width:0;height:0}.layui-edge{border-style:dashed;border-color:transparent;overflow:hidden}.layui-elip{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-unselect{-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-disabled,.layui-disabled:active{background-color:#d2d2d2!important;color:#fff!important;cursor:not-allowed!important}.layui-circle{border-radius:100%}.layui-show{display:block!important}.layui-hide{display:none!important}.layui-upload-iframe{border:0;visibility:hidden}.layui-upload-enter{border:1px solid #009E94;background-color:#009E94;color:#fff;-webkit-transform:scale(1.1);transform:scale(1.1)}@-webkit-keyframes layui-m-anim-scale{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layui-m-anim-scale{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.layui-m-anim-scale{animation-name:layui-m-anim-scale;-webkit-animation-name:layui-m-anim-scale}@-webkit-keyframes layui-m-anim-up{0%{opacity:0;-webkit-transform:translateY(800px);transform:translateY(800px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layui-m-anim-up{0%{opacity:0;-webkit-transform:translateY(800px);transform:translateY(800px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}.layui-m-anim-up{-webkit-animation-name:layui-m-anim-up;animation-name:layui-m-anim-up}@-webkit-keyframes layui-m-anim-left{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes layui-m-anim-left{0%{-webkit-transform:translateX(100%);transform:translateX(100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.layui-m-anim-left{-webkit-animation-name:layui-m-anim-left;animation-name:layui-m-anim-left}@-webkit-keyframes layui-m-anim-right{0%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes layui-m-anim-right{0%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}100%{-webkit-transform:translateX(0);transform:translateX(0)}}.layui-m-anim-right{-webkit-animation-name:layui-m-anim-right;animation-name:layui-m-anim-right}@-webkit-keyframes layui-m-anim-lout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}@keyframes layui-m-anim-lout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(-100%);transform:translateX(-100%)}}.layui-m-anim-lout{-webkit-animation-name:layui-m-anim-lout;animation-name:layui-m-anim-lout}@-webkit-keyframes layui-m-anim-rout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(100%);transform:translateX(100%)}}@keyframes layui-m-anim-rout{0%{-webkit-transform:translateX(0);transform:translateX(0)}100%{-webkit-transform:translateX(100%);transform:translateX(100%)}}.layui-m-anim-rout{-webkit-animation-name:layui-m-anim-rout;animation-name:layui-m-anim-rout}.layui-m-layer{position:relative;z-index:19891014}.layui-m-layer *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.layui-m-layermain,.layui-m-layershade{position:fixed;left:0;top:0;width:100%;height:100%}.layui-m-layershade{background-color:rgba(0,0,0,.7);pointer-events:auto}.layui-m-layermain{display:table;font-family:Helvetica,arial,sans-serif;pointer-events:none}.layui-m-layermain .layui-m-layersection{display:table-cell;vertical-align:middle;text-align:center}.layui-m-layerchild{position:relative;display:inline-block;text-align:left;background-color:#fff;font-size:14px;border-radius:5px;box-shadow:0 0 8px rgba(0,0,0,.1);pointer-events:auto;-webkit-overflow-scrolling:touch;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.2s;animation-duration:.2s}.layui-m-layer0 .layui-m-layerchild{width:90%;max-width:640px}.layui-m-layer1 .layui-m-layerchild{border:none;border-radius:0}.layui-m-layer2 .layui-m-layerchild{width:auto;max-width:260px;min-width:40px;border:none;background:0 0;box-shadow:none;color:#fff}.layui-m-layerchild h3{padding:0 10px;height:60px;line-height:60px;font-size:16px;font-weight:400;border-radius:5px 5px 0 0;text-align:center}.layui-m-layerbtn span,.layui-m-layerchild h3{text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.layui-m-layercont{padding:50px 30px;line-height:22px;text-align:center}.layui-m-layer1 .layui-m-layercont{padding:0;text-align:left}.layui-m-layer2 .layui-m-layercont{text-align:center;padding:0;line-height:0}.layui-m-layer2 .layui-m-layercont i{width:25px;height:25px;margin-left:8px;display:inline-block;background-color:#fff;border-radius:100%;-webkit-animation:layui-m-anim-loading 1.4s infinite ease-in-out;animation:layui-m-anim-loading 1.4s infinite ease-in-out;-webkit-animation-fill-mode:both;animation-fill-mode:both}.layui-m-layerbtn,.layui-m-layerbtn span{position:relative;text-align:center;border-radius:0 0 5px 5px}.layui-m-layer2 .layui-m-layercont p{margin-top:20px}@-webkit-keyframes layui-m-anim-loading{0%,100%,80%{transform:scale(0);-webkit-transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}@keyframes layui-m-anim-loading{0%,100%,80%{transform:scale(0);-webkit-transform:scale(0)}40%{transform:scale(1);-webkit-transform:scale(1)}}.layui-m-layer2 .layui-m-layercont i:first-child{margin-left:0;-webkit-animation-delay:-.32s;animation-delay:-.32s}.layui-m-layer2 .layui-m-layercont i.layui-m-layerload{-webkit-animation-delay:-.16s;animation-delay:-.16s}.layui-m-layer2 .layui-m-layercont>div{line-height:22px;padding-top:7px;margin-bottom:20px;font-size:14px}.layui-m-layerbtn{display:box;display:-moz-box;display:-webkit-box;width:100%;height:50px;line-height:50px;font-size:0;border-top:1px solid #D0D0D0;background-color:#F2F2F2}.layui-m-layerbtn span{display:block;-moz-box-flex:1;box-flex:1;-webkit-box-flex:1;font-size:14px;cursor:pointer}.layui-m-layerbtn span[yes]{color:#40AFFE}.layui-m-layerbtn span[no]{border-right:1px solid #D0D0D0;border-radius:0 0 0 5px}.layui-m-layerbtn span:active{background-color:#F6F6F6}.layui-m-layerend{position:absolute;right:7px;top:10px;width:30px;height:30px;border:0;font-weight:400;background:0 0;cursor:pointer;-webkit-appearance:none;font-size:30px}.layui-m-layerend::after,.layui-m-layerend::before{position:absolute;left:5px;top:15px;content:'';width:18px;height:1px;background-color:#999;transform:rotate(45deg);-webkit-transform:rotate(45deg);border-radius:3px}.layui-m-layerend::after{transform:rotate(-45deg);-webkit-transform:rotate(-45deg)}body .layui-m-layer .layui-m-layer-footer{position:fixed;width:95%;max-width:100%;margin:0 auto;left:0;right:0;bottom:10px;background:0 0}.layui-m-layer-footer .layui-m-layercont{padding:20px;border-radius:5px 5px 0 0;background-color:rgba(255,255,255,.8)}.layui-m-layer-footer .layui-m-layerbtn{display:block;height:auto;background:0 0;border-top:none}.layui-m-layer-footer .layui-m-layerbtn span{background-color:rgba(255,255,255,.8)}.layui-m-layer-footer .layui-m-layerbtn span[no]{color:#FD482C;border-top:1px solid #c2c2c2;border-radius:0 0 5px 5px}.layui-m-layer-footer .layui-m-layerbtn span[yes]{margin-top:10px;border-radius:5px}body .layui-m-layer .layui-m-layer-msg{width:auto;max-width:90%;margin:0 auto;bottom:-150px;background-color:rgba(0,0,0,.7);color:#fff}.layui-m-layer-msg .layui-m-layercont{padding:10px 20px}
  1 +/** layui-v2.3.0 MIT License By https://www.layui.com */
  2 + html #layuicss-skincodecss{display:none;position:absolute;width:1989px}.layui-code-h3,.layui-code-view{position:relative;font-size:12px}.layui-code-view{display:block;margin:10px 0;padding:0;border:1px solid #e2e2e2;border-left-width:6px;background-color:#F2F2F2;color:#333;font-family:Courier New}.layui-code-h3{padding:0 10px;height:32px;line-height:32px;border-bottom:1px solid #e2e2e2}.layui-code-h3 a{position:absolute;right:10px;top:0;color:#999}.layui-code-view .layui-code-ol{position:relative;overflow:auto}.layui-code-view .layui-code-ol li{position:relative;margin-left:45px;line-height:20px;padding:0 5px;border-left:1px solid #e2e2e2;list-style-type:decimal-leading-zero;*list-style-type:decimal;background-color:#fff}.layui-code-view pre{margin:0}.layui-code-notepad{border:1px solid #0C0C0C;border-left-color:#3F3F3F;background-color:#0C0C0C;color:#C2BE9E}.layui-code-notepad .layui-code-h3{border-bottom:none}.layui-code-notepad .layui-code-ol li{background-color:#3F3F3F;border-left:none}
  1 +/** layui-v2.3.0 MIT License By https://www.layui.com */
  2 + .laydate-set-ym,.layui-laydate,.layui-laydate *,.layui-laydate-list{box-sizing:border-box}html #layuicss-laydate{display:none;position:absolute;width:1989px}.layui-laydate *{margin:0;padding:0}.layui-laydate{position:absolute;z-index:66666666;margin:5px 0;border-radius:2px;font-size:14px;-webkit-animation-duration:.3s;animation-duration:.3s;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-name:laydate-upbit;animation-name:laydate-upbit}.layui-laydate-main{width:272px}.layui-laydate-content td,.layui-laydate-header *,.layui-laydate-list li{transition-duration:.3s;-webkit-transition-duration:.3s}@-webkit-keyframes laydate-upbit{from{-webkit-transform:translate3d(0,20px,0);opacity:.3}to{-webkit-transform:translate3d(0,0,0);opacity:1}}@keyframes laydate-upbit{from{transform:translate3d(0,20px,0);opacity:.3}to{transform:translate3d(0,0,0);opacity:1}}.layui-laydate-static{position:relative;z-index:0;display:inline-block;margin:0;-webkit-animation:none;animation:none}.laydate-ym-show .laydate-next-m,.laydate-ym-show .laydate-prev-m{display:none!important}.laydate-ym-show .laydate-next-y,.laydate-ym-show .laydate-prev-y{display:inline-block!important}.laydate-time-show .laydate-set-ym span[lay-type=month],.laydate-time-show .laydate-set-ym span[lay-type=year],.laydate-time-show .layui-laydate-header .layui-icon,.laydate-ym-show .laydate-set-ym span[lay-type=month]{display:none!important}.layui-laydate-header{position:relative;line-height:30px;padding:10px 70px 5px}.laydate-set-ym span,.layui-laydate-header i{padding:0 5px;cursor:pointer}.layui-laydate-header *{display:inline-block;vertical-align:bottom}.layui-laydate-header i{position:absolute;top:10px;color:#999;font-size:18px}.layui-laydate-header i.laydate-prev-y{left:15px}.layui-laydate-header i.laydate-prev-m{left:45px}.layui-laydate-header i.laydate-next-y{right:15px}.layui-laydate-header i.laydate-next-m{right:45px}.laydate-set-ym{width:100%;text-align:center;text-overflow:ellipsis;overflow:hidden;white-space:nowrap}.laydate-time-text{cursor:default!important}.layui-laydate-content{position:relative;padding:10px;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.layui-laydate-content table{border-collapse:collapse;border-spacing:0}.layui-laydate-content td,.layui-laydate-content th{width:36px;height:30px;padding:5px;text-align:center}.layui-laydate-content td{position:relative;cursor:pointer}.laydate-day-mark{position:absolute;left:0;top:0;width:100%;height:100%;line-height:30px;font-size:12px;overflow:hidden}.laydate-day-mark::after{position:absolute;content:'';right:2px;top:2px;width:5px;height:5px;border-radius:50%}.layui-laydate-footer{position:relative;height:46px;line-height:26px;padding:10px 20px}.layui-laydate-footer span{margin-right:15px;display:inline-block;cursor:pointer;font-size:12px}.layui-laydate-footer span:hover{color:#5FB878}.laydate-footer-btns{position:absolute;right:10px;top:10px}.laydate-footer-btns span{height:26px;line-height:26px;margin:0 0 0 -1px;padding:0 10px;border:1px solid #C9C9C9;background-color:#fff;white-space:nowrap;vertical-align:top;border-radius:2px}.layui-laydate-list>li,.layui-laydate-range .layui-laydate-main{display:inline-block;vertical-align:middle}.layui-laydate-list{position:absolute;left:0;top:0;width:100%;height:100%;padding:10px;background-color:#fff}.layui-laydate-list>li{position:relative;width:33.3%;height:36px;line-height:36px;margin:3px 0;text-align:center;cursor:pointer}.laydate-month-list>li{width:25%;margin:17px 0}.laydate-time-list>li{height:100%;margin:0;line-height:normal;cursor:default}.laydate-time-list p{position:relative;top:-4px;line-height:29px}.laydate-time-list ol{height:181px;overflow:hidden}.laydate-time-list>li:hover ol{overflow-y:auto}.laydate-time-list ol li{width:130%;padding-left:33px;line-height:30px;text-align:left;cursor:pointer}.layui-laydate-hint{position:absolute;top:115px;left:50%;width:250px;margin-left:-125px;line-height:20px;padding:15px;text-align:center;font-size:12px}.layui-laydate-range{width:546px}.layui-laydate-range .laydate-main-list-0 .laydate-next-m,.layui-laydate-range .laydate-main-list-0 .laydate-next-y,.layui-laydate-range .laydate-main-list-1 .laydate-prev-m,.layui-laydate-range .laydate-main-list-1 .laydate-prev-y{display:none}.layui-laydate-range .laydate-main-list-1 .layui-laydate-content{border-left:1px solid #e2e2e2}.layui-laydate,.layui-laydate-hint{border:1px solid #d2d2d2;box-shadow:0 2px 4px rgba(0,0,0,.12);background-color:#fff;color:#666}.layui-laydate-header{border-bottom:1px solid #e2e2e2}.layui-laydate-header i:hover,.layui-laydate-header span:hover{color:#5FB878}.layui-laydate-content{border-top:none 0;border-bottom:none 0}.layui-laydate-content th{font-weight:400;color:#333}.layui-laydate-content td{color:#666}.layui-laydate-content td.laydate-selected{background-color:#00F7DE}.laydate-selected:hover{background-color:#00F7DE!important}.layui-laydate-content td:hover,.layui-laydate-list li:hover{background-color:#eaeaea;color:#333}.laydate-time-list li ol{margin:0;padding:0;border:1px solid #e2e2e2;border-left-width:0}.laydate-time-list li:first-child ol{border-left-width:1px}.laydate-time-list>li:hover{background:0 0}.layui-laydate-content .laydate-day-next,.layui-laydate-content .laydate-day-prev{color:#d2d2d2}.laydate-selected.laydate-day-next,.laydate-selected.laydate-day-prev{background-color:#f8f8f8!important}.layui-laydate-footer{border-top:1px solid #e2e2e2}.layui-laydate-hint{color:#FF5722}.laydate-day-mark::after{background-color:#5FB878}.layui-laydate-content td.layui-this .laydate-day-mark::after{display:none}.layui-laydate-footer span[lay-type=date]{color:#5FB878}.layui-laydate .layui-this{background-color:#009688!important;color:#fff!important}.layui-laydate .laydate-disabled,.layui-laydate .laydate-disabled:hover{background:0 0!important;color:#d2d2d2!important;cursor:not-allowed!important;-moz-user-select:none;-webkit-user-select:none;-ms-user-select:none}.laydate-theme-molv{border:none}.laydate-theme-molv.layui-laydate-range{width:548px}.laydate-theme-molv .layui-laydate-main{width:274px}.laydate-theme-molv .layui-laydate-header{border:none;background-color:#009688}.laydate-theme-molv .layui-laydate-header i,.laydate-theme-molv .layui-laydate-header span{color:#f6f6f6}.laydate-theme-molv .layui-laydate-header i:hover,.laydate-theme-molv .layui-laydate-header span:hover{color:#fff}.laydate-theme-molv .layui-laydate-content{border:1px solid #e2e2e2;border-top:none;border-bottom:none}.laydate-theme-molv .laydate-main-list-1 .layui-laydate-content{border-left:none}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li,.laydate-theme-grid .layui-laydate-content td,.laydate-theme-grid .layui-laydate-content thead,.laydate-theme-molv .layui-laydate-footer{border:1px solid #e2e2e2}.laydate-theme-grid .laydate-selected,.laydate-theme-grid .laydate-selected:hover{background-color:#f2f2f2!important;color:#009688!important}.laydate-theme-grid .laydate-selected.laydate-day-next,.laydate-theme-grid .laydate-selected.laydate-day-prev{color:#d2d2d2!important}.laydate-theme-grid .laydate-month-list,.laydate-theme-grid .laydate-year-list{margin:1px 0 0 1px}.laydate-theme-grid .laydate-month-list>li,.laydate-theme-grid .laydate-year-list>li{margin:0 -1px -1px 0}.laydate-theme-grid .laydate-year-list>li{height:43px;line-height:43px}.laydate-theme-grid .laydate-month-list>li{height:71px;line-height:71px}
  1 +/** layui-v2.3.0 MIT License By https://www.layui.com */
  2 + .layui-layer-imgbar,.layui-layer-imgtit a,.layui-layer-tab .layui-layer-title span,.layui-layer-title{text-overflow:ellipsis;white-space:nowrap}html #layuicss-layer{display:none;position:absolute;width:1989px}.layui-layer,.layui-layer-shade{position:fixed;_position:absolute;pointer-events:auto}.layui-layer-shade{top:0;left:0;width:100%;height:100%;_height:expression(document.body.offsetHeight+"px")}.layui-layer{-webkit-overflow-scrolling:touch;top:150px;left:0;margin:0;padding:0;background-color:#fff;-webkit-background-clip:content;border-radius:2px;box-shadow:1px 1px 50px rgba(0,0,0,.3)}.layui-layer-close{position:absolute}.layui-layer-content{position:relative}.layui-layer-border{border:1px solid #B2B2B2;border:1px solid rgba(0,0,0,.1);box-shadow:1px 1px 5px rgba(0,0,0,.2)}.layui-layer-load{background:url(loading-1.gif) center center no-repeat #eee}.layui-layer-ico{background:url(icon.png) no-repeat}.layui-layer-btn a,.layui-layer-dialog .layui-layer-ico,.layui-layer-setwin a{display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-move{display:none;position:fixed;*position:absolute;left:0;top:0;width:100%;height:100%;cursor:move;opacity:0;filter:alpha(opacity=0);background-color:#fff;z-index:2147483647}.layui-layer-resize{position:absolute;width:15px;height:15px;right:0;bottom:0;cursor:se-resize}.layer-anim{-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.3s;animation-duration:.3s}@-webkit-keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceIn{0%{opacity:0;-webkit-transform:scale(.5);-ms-transform:scale(.5);transform:scale(.5)}100%{opacity:1;-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-00{-webkit-animation-name:layer-bounceIn;animation-name:layer-bounceIn}@-webkit-keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInDown{0%{opacity:0;-webkit-transform:scale(.1) translateY(-2000px);-ms-transform:scale(.1) translateY(-2000px);transform:scale(.1) translateY(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateY(60px);-ms-transform:scale(.475) translateY(60px);transform:scale(.475) translateY(60px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-01{-webkit-animation-name:layer-zoomInDown;animation-name:layer-zoomInDown}@-webkit-keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);transform:translateY(0)}}@keyframes layer-fadeInUpBig{0%{opacity:0;-webkit-transform:translateY(2000px);-ms-transform:translateY(2000px);transform:translateY(2000px)}100%{opacity:1;-webkit-transform:translateY(0);-ms-transform:translateY(0);transform:translateY(0)}}.layer-anim-02{-webkit-animation-name:layer-fadeInUpBig;animation-name:layer-fadeInUpBig}@-webkit-keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}@keyframes layer-zoomInLeft{0%{opacity:0;-webkit-transform:scale(.1) translateX(-2000px);-ms-transform:scale(.1) translateX(-2000px);transform:scale(.1) translateX(-2000px);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}60%{opacity:1;-webkit-transform:scale(.475) translateX(48px);-ms-transform:scale(.475) translateX(48px);transform:scale(.475) translateX(48px);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}}.layer-anim-03{-webkit-animation-name:layer-zoomInLeft;animation-name:layer-zoomInLeft}@-webkit-keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}@keyframes layer-rollIn{0%{opacity:0;-webkit-transform:translateX(-100%) rotate(-120deg);-ms-transform:translateX(-100%) rotate(-120deg);transform:translateX(-100%) rotate(-120deg)}100%{opacity:1;-webkit-transform:translateX(0) rotate(0);-ms-transform:translateX(0) rotate(0);transform:translateX(0) rotate(0)}}.layer-anim-04{-webkit-animation-name:layer-rollIn;animation-name:layer-rollIn}@keyframes layer-fadeIn{0%{opacity:0}100%{opacity:1}}.layer-anim-05{-webkit-animation-name:layer-fadeIn;animation-name:layer-fadeIn}@-webkit-keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);transform:translateX(10px)}}@keyframes layer-shake{0%,100%{-webkit-transform:translateX(0);-ms-transform:translateX(0);transform:translateX(0)}10%,30%,50%,70%,90%{-webkit-transform:translateX(-10px);-ms-transform:translateX(-10px);transform:translateX(-10px)}20%,40%,60%,80%{-webkit-transform:translateX(10px);-ms-transform:translateX(10px);transform:translateX(10px)}}.layer-anim-06{-webkit-animation-name:layer-shake;animation-name:layer-shake}@-webkit-keyframes fadeIn{0%{opacity:0}100%{opacity:1}}.layui-layer-title{padding:0 80px 0 20px;height:42px;line-height:42px;border-bottom:1px solid #eee;font-size:14px;color:#333;overflow:hidden;background-color:#F8F8F8;border-radius:2px 2px 0 0}.layui-layer-setwin{position:absolute;right:15px;*right:0;top:15px;font-size:0;line-height:initial}.layui-layer-setwin a{position:relative;width:16px;height:16px;margin-left:10px;font-size:12px;_overflow:hidden}.layui-layer-setwin .layui-layer-min cite{position:absolute;width:14px;height:2px;left:0;top:50%;margin-top:-1px;background-color:#2E2D3C;cursor:pointer;_overflow:hidden}.layui-layer-setwin .layui-layer-min:hover cite{background-color:#2D93CA}.layui-layer-setwin .layui-layer-max{background-position:-32px -40px}.layui-layer-setwin .layui-layer-max:hover{background-position:-16px -40px}.layui-layer-setwin .layui-layer-maxmin{background-position:-65px -40px}.layui-layer-setwin .layui-layer-maxmin:hover{background-position:-49px -40px}.layui-layer-setwin .layui-layer-close1{background-position:1px -40px;cursor:pointer}.layui-layer-setwin .layui-layer-close1:hover{opacity:.7}.layui-layer-setwin .layui-layer-close2{position:absolute;right:-28px;top:-28px;width:30px;height:30px;margin-left:0;background-position:-149px -31px;*right:-18px;_display:none}.layui-layer-setwin .layui-layer-close2:hover{background-position:-180px -31px}.layui-layer-btn{text-align:right;padding:0 15px 12px;pointer-events:auto;user-select:none;-webkit-user-select:none}.layui-layer-btn a{height:28px;line-height:28px;margin:5px 5px 0;padding:0 15px;border:1px solid #dedede;background-color:#fff;color:#333;border-radius:2px;font-weight:400;cursor:pointer;text-decoration:none}.layui-layer-btn a:hover{opacity:.9;text-decoration:none}.layui-layer-btn a:active{opacity:.8}.layui-layer-btn .layui-layer-btn0{border-color:#1E9FFF;background-color:#1E9FFF;color:#fff}.layui-layer-btn-l{text-align:left}.layui-layer-btn-c{text-align:center}.layui-layer-dialog{min-width:260px}.layui-layer-dialog .layui-layer-content{position:relative;padding:20px;line-height:24px;word-break:break-all;overflow:hidden;font-size:14px;overflow-x:hidden;overflow-y:auto}.layui-layer-dialog .layui-layer-content .layui-layer-ico{position:absolute;top:16px;left:15px;_left:-40px;width:30px;height:30px}.layui-layer-ico1{background-position:-30px 0}.layui-layer-ico2{background-position:-60px 0}.layui-layer-ico3{background-position:-90px 0}.layui-layer-ico4{background-position:-120px 0}.layui-layer-ico5{background-position:-150px 0}.layui-layer-ico6{background-position:-180px 0}.layui-layer-rim{border:6px solid #8D8D8D;border:6px solid rgba(0,0,0,.3);border-radius:5px;box-shadow:none}.layui-layer-msg{min-width:180px;border:1px solid #D3D4D3;box-shadow:none}.layui-layer-hui{min-width:100px;background-color:#000;filter:alpha(opacity=60);background-color:rgba(0,0,0,.6);color:#fff;border:none}.layui-layer-hui .layui-layer-content{padding:12px 25px;text-align:center}.layui-layer-dialog .layui-layer-padding{padding:20px 20px 20px 55px;text-align:left}.layui-layer-page .layui-layer-content{position:relative;overflow:auto}.layui-layer-iframe .layui-layer-btn,.layui-layer-page .layui-layer-btn{padding-top:10px}.layui-layer-nobg{background:0 0}.layui-layer-iframe iframe{display:block;width:100%}.layui-layer-loading{border-radius:100%;background:0 0;box-shadow:none;border:none}.layui-layer-loading .layui-layer-content{width:60px;height:24px;background:url(loading-0.gif) no-repeat}.layui-layer-loading .layui-layer-loading1{width:37px;height:37px;background:url(loading-1.gif) no-repeat}.layui-layer-ico16,.layui-layer-loading .layui-layer-loading2{width:32px;height:32px;background:url(loading-2.gif) no-repeat}.layui-layer-tips{background:0 0;box-shadow:none;border:none}.layui-layer-tips .layui-layer-content{position:relative;line-height:22px;min-width:12px;padding:8px 15px;font-size:12px;_float:left;border-radius:2px;box-shadow:1px 1px 3px rgba(0,0,0,.2);background-color:#000;color:#fff}.layui-layer-tips .layui-layer-close{right:-2px;top:-1px}.layui-layer-tips i.layui-layer-TipsG{position:absolute;width:0;height:0;border-width:8px;border-color:transparent;border-style:dashed;*overflow:hidden}.layui-layer-tips i.layui-layer-TipsB,.layui-layer-tips i.layui-layer-TipsT{left:5px;border-right-style:solid;border-right-color:#000}.layui-layer-tips i.layui-layer-TipsT{bottom:-8px}.layui-layer-tips i.layui-layer-TipsB{top:-8px}.layui-layer-tips i.layui-layer-TipsL,.layui-layer-tips i.layui-layer-TipsR{top:5px;border-bottom-style:solid;border-bottom-color:#000}.layui-layer-tips i.layui-layer-TipsR{left:-8px}.layui-layer-tips i.layui-layer-TipsL{right:-8px}.layui-layer-lan[type=dialog]{min-width:280px}.layui-layer-lan .layui-layer-title{background:#4476A7;color:#fff;border:none}.layui-layer-lan .layui-layer-btn{padding:5px 10px 10px;text-align:right;border-top:1px solid #E9E7E7}.layui-layer-lan .layui-layer-btn a{background:#fff;border-color:#E9E7E7;color:#333}.layui-layer-lan .layui-layer-btn .layui-layer-btn1{background:#C9C5C5}.layui-layer-molv .layui-layer-title{background:#009f95;color:#fff;border:none}.layui-layer-molv .layui-layer-btn a{background:#009f95;border-color:#009f95}.layui-layer-molv .layui-layer-btn .layui-layer-btn1{background:#92B8B1}.layui-layer-iconext{background:url(icon-ext.png) no-repeat}.layui-layer-prompt .layui-layer-input{display:block;width:230px;height:36px;margin:0 auto;line-height:30px;padding-left:10px;border:1px solid #e6e6e6;color:#333}.layui-layer-prompt textarea.layui-layer-input{width:300px;height:100px;line-height:20px;padding:6px 10px}.layui-layer-prompt .layui-layer-content{padding:20px}.layui-layer-prompt .layui-layer-btn{padding-top:0}.layui-layer-tab{box-shadow:1px 1px 50px rgba(0,0,0,.4)}.layui-layer-tab .layui-layer-title{padding-left:0;overflow:visible}.layui-layer-tab .layui-layer-title span{position:relative;float:left;min-width:80px;max-width:260px;padding:0 20px;text-align:center;overflow:hidden;cursor:pointer}.layui-layer-tab .layui-layer-title span.layui-this{height:43px;border-left:1px solid #eee;border-right:1px solid #eee;background-color:#fff;z-index:10}.layui-layer-tab .layui-layer-title span:first-child{border-left:none}.layui-layer-tabmain{line-height:24px;clear:both}.layui-layer-tabmain .layui-layer-tabli{display:none}.layui-layer-tabmain .layui-layer-tabli.layui-this{display:block}.layui-layer-photos{-webkit-animation-duration:.8s;animation-duration:.8s}.layui-layer-photos .layui-layer-content{overflow:hidden;text-align:center}.layui-layer-photos .layui-layer-phimg img{position:relative;width:100%;display:inline-block;*display:inline;*zoom:1;vertical-align:top}.layui-layer-imgbar,.layui-layer-imguide{display:none}.layui-layer-imgnext,.layui-layer-imgprev{position:absolute;top:50%;width:27px;_width:44px;height:44px;margin-top:-22px;outline:0;blr:expression(this.onFocus=this.blur())}.layui-layer-imgprev{left:10px;background-position:-5px -5px;_background-position:-70px -5px}.layui-layer-imgprev:hover{background-position:-33px -5px;_background-position:-120px -5px}.layui-layer-imgnext{right:10px;_right:8px;background-position:-5px -50px;_background-position:-70px -50px}.layui-layer-imgnext:hover{background-position:-33px -50px;_background-position:-120px -50px}.layui-layer-imgbar{position:absolute;left:0;bottom:0;width:100%;height:32px;line-height:32px;background-color:rgba(0,0,0,.8);background-color:#000\9;filter:Alpha(opacity=80);color:#fff;overflow:hidden;font-size:0}.layui-layer-imgtit *{display:inline-block;*display:inline;*zoom:1;vertical-align:top;font-size:12px}.layui-layer-imgtit a{max-width:65%;overflow:hidden;color:#fff}.layui-layer-imgtit a:hover{color:#fff;text-decoration:underline}.layui-layer-imgtit em{padding-left:10px;font-style:normal}@-webkit-keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes layer-bounceOut{100%{opacity:0;-webkit-transform:scale(.7);-ms-transform:scale(.7);transform:scale(.7)}30%{-webkit-transform:scale(1.05);-ms-transform:scale(1.05);transform:scale(1.05)}0%{-webkit-transform:scale(1);-ms-transform:scale(1);transform:scale(1)}}.layer-anim-close{-webkit-animation-name:layer-bounceOut;animation-name:layer-bounceOut;-webkit-animation-fill-mode:both;animation-fill-mode:both;-webkit-animation-duration:.2s;animation-duration:.2s}@media screen and (max-width:1100px){.layui-layer-iframe{overflow-y:auto;-webkit-overflow-scrolling:touch}}