customers = customerService.IfCus(pet.getMaster());
71 | if (customers.size()==0){
72 | request.setAttribute("mgs1","错误:没有这个客户");
73 | request.getRequestDispatcher("/pages/mandp/inquiremap.jsp").forward(request, response);
74 | }else {
75 | boolean b = petService.updatePet(pet);
76 | if (b) {
77 | //注册成功
78 | response.sendRedirect(request.getContextPath() + "/pages/mandp/mapindex.jsp");
79 | } else {
80 | //注册失败
81 | request.setAttribute("mgs1","错误:修改失败");
82 | request.getRequestDispatcher("/pages/mandp/updatepet.jsp").forward(request, response);
83 | }
84 | }
85 |
86 |
87 | }
88 |
89 | protected void href(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
90 | String name = request.getParameter("name");
91 | String master = request.getParameter("master");
92 | pet pet = petService.getonepet(name, master);
93 | request.setAttribute("pet",pet);
94 | request.getRequestDispatcher("pages/mandp/updatepet.jsp").forward(request,response);
95 | }
96 |
97 |
98 | }
99 |
--------------------------------------------------------------------------------
/web/pages/user/regist.jsp:
--------------------------------------------------------------------------------
1 | <%@ page import="java.util.UUID" %>
2 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
3 |
4 |
5 |
6 | 注册页面
7 | <%@include file="/dir/base.jsp"%>
8 |
74 |
81 |
82 |
83 |
87 |
88 |
89 |
90 |
91 | 欢迎注册
92 |
93 |
94 |
137 |
138 |
139 |
140 | 宠物系统.zc ©2020
141 |
142 |
143 |
144 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/user/regist.jsp:
--------------------------------------------------------------------------------
1 | <%@ page import="java.util.UUID" %>
2 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
3 |
4 |
5 |
6 | 注册页面
7 | <%@include file="/dir/base.jsp"%>
8 |
74 |
81 |
82 |
83 |
87 |
88 |
89 |
90 |
91 | 欢迎注册
92 |
93 |
94 |
137 |
138 |
139 |
140 | 宠物系统.zc ©2020
141 |
142 |
143 |
144 |
--------------------------------------------------------------------------------
/宠物系统.iml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
37 |
38 |
39 |
40 |
41 |
42 |
43 |
44 |
45 |
46 |
47 |
48 |
49 |
50 |
51 |
52 |
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
69 |
70 |
71 |
72 |
73 |
74 |
75 |
76 |
77 |
78 |
79 |
80 |
81 |
82 |
83 |
84 |
85 |
86 |
87 |
88 |
89 |
90 |
91 |
92 |
93 |
94 |
95 |
96 |
97 |
98 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
140 |
141 |
142 |
143 |
144 |
145 |
146 |
147 |
148 |
--------------------------------------------------------------------------------
/cw.sql:
--------------------------------------------------------------------------------
1 | /*
2 | Navicat Premium Data Transfer
3 |
4 | Source Server : localhost
5 | Source Server Type : MySQL
6 | Source Server Version : 50527
7 | Source Host : localhost:3306
8 | Source Schema : cw
9 |
10 | Target Server Type : MySQL
11 | Target Server Version : 50527
12 | File Encoding : 65001
13 |
14 | Date: 18/02/2021 18:46:32
15 | */
16 |
17 | SET NAMES utf8mb4;
18 | SET FOREIGN_KEY_CHECKS = 0;
19 |
20 | -- ----------------------------
21 | -- Table structure for customer
22 | -- ----------------------------
23 | DROP TABLE IF EXISTS `customer`;
24 | CREATE TABLE `customer` (
25 | `id` int(10) NOT NULL AUTO_INCREMENT,
26 | `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
27 | `adress` varchar(80) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
28 | `city` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
29 | `phone` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
30 | PRIMARY KEY (`id`) USING BTREE
31 | ) ENGINE = InnoDB AUTO_INCREMENT = 5 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
32 |
33 | -- ----------------------------
34 | -- Records of customer
35 | -- ----------------------------
36 | INSERT INTO `customer` VALUES (1, '小张', '河南商丘', '商丘', '110');
37 | INSERT INTO `customer` VALUES (2, '小孙', '河南郑州', '郑州', '120');
38 | INSERT INTO `customer` VALUES (4, '1', '2', '1', '1');
39 |
40 | -- ----------------------------
41 | -- Table structure for doctor
42 | -- ----------------------------
43 | DROP TABLE IF EXISTS `doctor`;
44 | CREATE TABLE `doctor` (
45 | `id` int(10) NOT NULL AUTO_INCREMENT,
46 | `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
47 | `sex` varchar(10) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
48 | `bumen` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
49 | `time` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
50 | PRIMARY KEY (`id`) USING BTREE
51 | ) ENGINE = InnoDB AUTO_INCREMENT = 11 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
52 |
53 | -- ----------------------------
54 | -- Records of doctor
55 | -- ----------------------------
56 | INSERT INTO `doctor` VALUES (1, '王医生', '男', '外科', '5年');
57 | INSERT INTO `doctor` VALUES (2, '李医生', '女', '内科', '8年');
58 | INSERT INTO `doctor` VALUES (9, '小明', '男', '外科', '5年');
59 | INSERT INTO `doctor` VALUES (10, '1', '1', '1', '1');
60 |
61 | -- ----------------------------
62 | -- Table structure for mrecords
63 | -- ----------------------------
64 | DROP TABLE IF EXISTS `mrecords`;
65 | CREATE TABLE `mrecords` (
66 | `pname` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
67 | `master` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
68 | `type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
69 | `time` varchar(35) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
70 | `note` varchar(100) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL
71 | ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
72 |
73 | -- ----------------------------
74 | -- Records of mrecords
75 | -- ----------------------------
76 | INSERT INTO `mrecords` VALUES ('Tom', '小张', '小老鼠', '2020-6-24', '这个小老鼠容易发烧');
77 | INSERT INTO `mrecords` VALUES ('Jerry', '小王', '大猫', '2020-6-25', '这个大猫一直想吃小老鼠');
78 | INSERT INTO `mrecords` VALUES ('1', '1', '12', '2020-06-25', '11111');
79 |
80 | -- ----------------------------
81 | -- Table structure for pet
82 | -- ----------------------------
83 | DROP TABLE IF EXISTS `pet`;
84 | CREATE TABLE `pet` (
85 | `id` int(10) NOT NULL AUTO_INCREMENT,
86 | `name` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
87 | `type` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
88 | `bath` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
89 | `master` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
90 | PRIMARY KEY (`id`) USING BTREE
91 | ) ENGINE = InnoDB AUTO_INCREMENT = 7 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
92 |
93 | -- ----------------------------
94 | -- Records of pet
95 | -- ----------------------------
96 | INSERT INTO `pet` VALUES (1, 'Tom', '小老鼠', '2020-6-21', '小张');
97 | INSERT INTO `pet` VALUES (2, 'Jerry', '大猫', '2020-6-22', '小王');
98 | INSERT INTO `pet` VALUES (3, 'Rate', '未知', '2020-6-23', '小张');
99 | INSERT INTO `pet` VALUES (4, 'Fee', '大蛇', '2020-6-25', '小王');
100 | INSERT INTO `pet` VALUES (6, '1', '12', '1', '1');
101 |
102 | -- ----------------------------
103 | -- Table structure for user
104 | -- ----------------------------
105 | DROP TABLE IF EXISTS `user`;
106 | CREATE TABLE `user` (
107 | `id` int(10) NOT NULL AUTO_INCREMENT,
108 | `username` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
109 | `password` varchar(20) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
110 | `email` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
111 | PRIMARY KEY (`id`) USING BTREE
112 | ) ENGINE = InnoDB AUTO_INCREMENT = 6 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Compact;
113 |
114 | -- ----------------------------
115 | -- Records of user
116 | -- ----------------------------
117 | INSERT INTO `user` VALUES (1, 'tomcat', '123456', '1111');
118 | INSERT INTO `user` VALUES (2, 'tomcat4', '1234567', '2');
119 | INSERT INTO `user` VALUES (5, 'tomcat2', '123455', '11@qq.com');
120 |
121 | SET FOREIGN_KEY_CHECKS = 1;
122 |
--------------------------------------------------------------------------------
/web/static/css/style.css:
--------------------------------------------------------------------------------
1 | @CHARSET "UTF-8";
2 |
3 | body {
4 | overflow: hidden;
5 | background: #e2feff;
6 | }
7 |
8 | * {
9 | margin: 0;
10 | font-family:"Microsoft Yahei";
11 | color: #666;
12 | }
13 |
14 | div{
15 | margin: auto;
16 | margin-bottom: 10px;
17 | margin-top: 10px;
18 |
19 | }
20 |
21 | #header {
22 | height: 20px;
23 | width: 1200px;
24 | }
25 |
26 | #main {
27 | height: 460px;
28 | width: 1200px;
29 | border: 1px black solid;
30 | overflow: auto;
31 | }
32 |
33 | #bottom {
34 | height: 30px;
35 | width: 1200px;
36 | text-align: center;
37 | }
38 |
39 | #book{
40 | width: 100%;
41 | height: 90%;
42 | margin: auto;
43 |
44 | }
45 |
46 | .b_list{
47 | height:300px;
48 | width:250px;
49 | margin: 20px;
50 | float: left;
51 | margin-top:0px;
52 | margin-bottom:0px;
53 | border: 1px #e3e3e3 solid;
54 | }
55 |
56 | #page_nav{
57 | width: 100%;
58 | height: 10px;
59 | margin: auto;
60 |
61 | text-align: center;
62 | }
63 |
64 | #pn_input {
65 | width: 30px;
66 | text-align: center;
67 | }
68 |
69 | .img_div{
70 | height: 150px;
71 | text-align: center;
72 | }
73 |
74 | .book_img {
75 | height:150px;
76 | width:150px;
77 | }
78 |
79 | .book_info {
80 |
81 | text-align: center;
82 | }
83 |
84 | .book_info div{
85 | height: 10px;
86 | width: 300px;
87 | text-align: left;
88 | }
89 |
90 | .wel_word{
91 | font-size: 40px;
92 | float: left;
93 | }
94 | .welword{
95 | font-size: 60px;
96 | }
97 |
98 | .logo_img{
99 | float: left;
100 | }
101 |
102 | #header div a {
103 | text-decoration: none;
104 | font-size: 20px;
105 | }
106 |
107 | #header div{
108 | float: right;
109 | margin-top: 55px;
110 | }
111 |
112 | .book_cond{
113 | margin-left: 500px;
114 | }
115 |
116 | .book_cond input{
117 | width: 50px;
118 | text-align: center;
119 | }
120 |
121 |
122 | /*登录页面CSS样式 */
123 |
124 | #login_header{
125 | height: 82px;
126 | width: 1200px;
127 | }
128 |
129 | .login_banner{
130 | height:475px;
131 | background-color: #39987c;
132 | }
133 |
134 | .login_form{
135 | height:310px;
136 | width:406px;
137 | float: right;
138 | margin-right:50px;
139 | margin-top: 50px;
140 | background-color: #fff;
141 | }
142 |
143 | #content {
144 | height: 475px;
145 | width: 1200px;
146 | }
147 |
148 | .login_box{
149 | margin: 20px;
150 | height: 260px;
151 | width: 366px;
152 | }
153 |
154 | h1 {
155 | font-size: 20px;
156 | }
157 | .msg_cont{
158 | background: none repeat scroll 0 0 #fff6d2;
159 | border: 1px solid #ffe57d;
160 | color: #666;
161 | height: 18px;
162 | line-height: 18px;
163 | padding: 3px 10px 3px 40px;
164 | position: relative;
165 | border: none;
166 | }
167 |
168 | .msg_cont b {
169 | background: url("../img/pwd-icons-new.png") no-repeat scroll -104px -22px rgba(0, 0, 0, 0);
170 | display: block;
171 | height: 17px;
172 | left: 10px;
173 | margin-top: -8px;
174 | overflow: hidden;
175 | position: absolute;
176 | top: 50%;
177 | width: 16px;
178 | }
179 |
180 | .form .itxt {
181 | border: 0 none;
182 | float: none;
183 | font-family: "宋体";
184 | font-size: 14px;
185 | height: 36px;
186 | line-height: 18px;
187 | overflow: hidden;
188 | padding: 10px 0 10px 10px;
189 | width: 220px;
190 | border: 1px #e3e3e3 solid;
191 | }
192 |
193 | #sub_btn{
194 | background-color: #39987c;
195 | border: none;
196 | color: #fff;
197 | width: 360px;
198 | height: 40px;
199 | }
200 |
201 | #l_content {
202 | float: left;
203 | margin-top: 150px;
204 | margin-left: 300px;
205 | }
206 |
207 | #l_content span {
208 | font-size: 60px;
209 | color: white;
210 | }
211 |
212 | .tit h1 {
213 | float: left;
214 | margin-top: 5px;
215 | }
216 |
217 | .tit a {
218 | float: right;
219 | margin-left: 10px;
220 | margin-top: 10px;
221 | color: red;
222 | text-decoration: none;
223 | }
224 |
225 | .tit .errorMsg {
226 | float: right;
227 | margin-left: 10px;
228 | margin-top: 10px;
229 | color: red;
230 | }
231 |
232 | .tit {
233 | height: 30px;
234 | }
235 | /*购物车*/
236 | #main table{
237 | margin: auto;
238 | margin-top: 80px;
239 | border-collapse: collapse;
240 | }
241 |
242 | #main table td{
243 | width: 120px;
244 | text-align:center;
245 | border-bottom: 1px #e3e3e3 solid;
246 | padding: 10px;
247 | }
248 |
249 | .cart_info{
250 | width: 700px;
251 | text-align: right;
252 | }
253 |
254 | .cart_span {
255 | margin-left: 20px;
256 | }
257 |
258 | .cart_span span{
259 | color: red;
260 | font-size: 20px;
261 | margin: 10px;
262 | }
263 |
264 | .cart_span a , td a{
265 | font-size: 20px;
266 | color: blue;
267 | }
268 |
269 | #header div span {
270 | margin: 10px;
271 | }
272 |
273 | #header div .um_span{
274 | color: red;
275 | font-size: 25px;
276 | margin: 10px;
277 | }
278 |
279 | #header div a {
280 | color: blue;
281 | }
282 |
283 | .errorMsg {
284 | margin-left: 10px;
285 | margin-top: 10px;
286 | color: red;
287 | }
288 | .login_click{ margin-top:32px; height:40px;}
289 | .login_click a
290 | {
291 |
292 |
293 | text-decoration:none;
294 | background:#2f435e;
295 | color:#f2f2f2;
296 |
297 | padding: 10px 30px 10px 30px;
298 | font-size:16px;
299 | font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
300 | font-weight:bold;
301 | border-radius:3px;
302 |
303 | -webkit-transition:all linear 0.30s;
304 | -moz-transition:all linear 0.30s;
305 | transition:all linear 0.30s;
306 |
307 | }
308 | .login_click a:hover { background:#385f9e; }
309 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/static/css/style.css:
--------------------------------------------------------------------------------
1 | @CHARSET "UTF-8";
2 |
3 | body {
4 | overflow: hidden;
5 | background: #e2feff;
6 | }
7 |
8 | * {
9 | margin: 0;
10 | font-family:"Microsoft Yahei";
11 | color: #666;
12 | }
13 |
14 | div{
15 | margin: auto;
16 | margin-bottom: 10px;
17 | margin-top: 10px;
18 |
19 | }
20 |
21 | #header {
22 | height: 20px;
23 | width: 1200px;
24 | }
25 |
26 | #main {
27 | height: 460px;
28 | width: 1200px;
29 | border: 1px black solid;
30 | overflow: auto;
31 | }
32 |
33 | #bottom {
34 | height: 30px;
35 | width: 1200px;
36 | text-align: center;
37 | }
38 |
39 | #book{
40 | width: 100%;
41 | height: 90%;
42 | margin: auto;
43 |
44 | }
45 |
46 | .b_list{
47 | height:300px;
48 | width:250px;
49 | margin: 20px;
50 | float: left;
51 | margin-top:0px;
52 | margin-bottom:0px;
53 | border: 1px #e3e3e3 solid;
54 | }
55 |
56 | #page_nav{
57 | width: 100%;
58 | height: 10px;
59 | margin: auto;
60 |
61 | text-align: center;
62 | }
63 |
64 | #pn_input {
65 | width: 30px;
66 | text-align: center;
67 | }
68 |
69 | .img_div{
70 | height: 150px;
71 | text-align: center;
72 | }
73 |
74 | .book_img {
75 | height:150px;
76 | width:150px;
77 | }
78 |
79 | .book_info {
80 |
81 | text-align: center;
82 | }
83 |
84 | .book_info div{
85 | height: 10px;
86 | width: 300px;
87 | text-align: left;
88 | }
89 |
90 | .wel_word{
91 | font-size: 40px;
92 | float: left;
93 | }
94 | .welword{
95 | font-size: 60px;
96 | }
97 |
98 | .logo_img{
99 | float: left;
100 | }
101 |
102 | #header div a {
103 | text-decoration: none;
104 | font-size: 20px;
105 | }
106 |
107 | #header div{
108 | float: right;
109 | margin-top: 55px;
110 | }
111 |
112 | .book_cond{
113 | margin-left: 500px;
114 | }
115 |
116 | .book_cond input{
117 | width: 50px;
118 | text-align: center;
119 | }
120 |
121 |
122 | /*登录页面CSS样式 */
123 |
124 | #login_header{
125 | height: 82px;
126 | width: 1200px;
127 | }
128 |
129 | .login_banner{
130 | height:475px;
131 | background-color: #39987c;
132 | }
133 |
134 | .login_form{
135 | height:310px;
136 | width:406px;
137 | float: right;
138 | margin-right:50px;
139 | margin-top: 50px;
140 | background-color: #fff;
141 | }
142 |
143 | #content {
144 | height: 475px;
145 | width: 1200px;
146 | }
147 |
148 | .login_box{
149 | margin: 20px;
150 | height: 260px;
151 | width: 366px;
152 | }
153 |
154 | h1 {
155 | font-size: 20px;
156 | }
157 | .msg_cont{
158 | background: none repeat scroll 0 0 #fff6d2;
159 | border: 1px solid #ffe57d;
160 | color: #666;
161 | height: 18px;
162 | line-height: 18px;
163 | padding: 3px 10px 3px 40px;
164 | position: relative;
165 | border: none;
166 | }
167 |
168 | .msg_cont b {
169 | background: url("../img/pwd-icons-new.png") no-repeat scroll -104px -22px rgba(0, 0, 0, 0);
170 | display: block;
171 | height: 17px;
172 | left: 10px;
173 | margin-top: -8px;
174 | overflow: hidden;
175 | position: absolute;
176 | top: 50%;
177 | width: 16px;
178 | }
179 |
180 | .form .itxt {
181 | border: 0 none;
182 | float: none;
183 | font-family: "宋体";
184 | font-size: 14px;
185 | height: 36px;
186 | line-height: 18px;
187 | overflow: hidden;
188 | padding: 10px 0 10px 10px;
189 | width: 220px;
190 | border: 1px #e3e3e3 solid;
191 | }
192 |
193 | #sub_btn{
194 | background-color: #39987c;
195 | border: none;
196 | color: #fff;
197 | width: 360px;
198 | height: 40px;
199 | }
200 |
201 | #l_content {
202 | float: left;
203 | margin-top: 150px;
204 | margin-left: 300px;
205 | }
206 |
207 | #l_content span {
208 | font-size: 60px;
209 | color: white;
210 | }
211 |
212 | .tit h1 {
213 | float: left;
214 | margin-top: 5px;
215 | }
216 |
217 | .tit a {
218 | float: right;
219 | margin-left: 10px;
220 | margin-top: 10px;
221 | color: red;
222 | text-decoration: none;
223 | }
224 |
225 | .tit .errorMsg {
226 | float: right;
227 | margin-left: 10px;
228 | margin-top: 10px;
229 | color: red;
230 | }
231 |
232 | .tit {
233 | height: 30px;
234 | }
235 | /*购物车*/
236 | #main table{
237 | margin: auto;
238 | margin-top: 80px;
239 | border-collapse: collapse;
240 | }
241 |
242 | #main table td{
243 | width: 120px;
244 | text-align:center;
245 | border-bottom: 1px #e3e3e3 solid;
246 | padding: 10px;
247 | }
248 |
249 | .cart_info{
250 | width: 700px;
251 | text-align: right;
252 | }
253 |
254 | .cart_span {
255 | margin-left: 20px;
256 | }
257 |
258 | .cart_span span{
259 | color: red;
260 | font-size: 20px;
261 | margin: 10px;
262 | }
263 |
264 | .cart_span a , td a{
265 | font-size: 20px;
266 | color: blue;
267 | }
268 |
269 | #header div span {
270 | margin: 10px;
271 | }
272 |
273 | #header div .um_span{
274 | color: red;
275 | font-size: 25px;
276 | margin: 10px;
277 | }
278 |
279 | #header div a {
280 | color: blue;
281 | }
282 |
283 | .errorMsg {
284 | margin-left: 10px;
285 | margin-top: 10px;
286 | color: red;
287 | }
288 | .login_click{ margin-top:32px; height:40px;}
289 | .login_click a
290 | {
291 |
292 |
293 | text-decoration:none;
294 | background:#2f435e;
295 | color:#f2f2f2;
296 |
297 | padding: 10px 30px 10px 30px;
298 | font-size:16px;
299 | font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
300 | font-weight:bold;
301 | border-radius:3px;
302 |
303 | -webkit-transition:all linear 0.30s;
304 | -moz-transition:all linear 0.30s;
305 | transition:all linear 0.30s;
306 |
307 | }
308 | .login_click a:hover { background:#385f9e; }
309 |
--------------------------------------------------------------------------------
/web/pages/amdoctor/inquireDor.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 16:59
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 查询兽医信息
12 | <%@include file="/dir/base.jsp"%>
13 |
61 |
92 |
93 |
94 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
114 |
115 |
116 |
117 |
128 |
139 |
140 |
141 |
142 |
143 | 宠物系统.zc ©2020
144 |
145 |
146 |
147 |
148 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/amdoctor/inquireDor.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 16:59
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 查询兽医信息
12 | <%@include file="/dir/base.jsp"%>
13 |
61 |
92 |
93 |
94 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
114 |
115 |
116 |
117 |
128 |
139 |
140 |
141 |
142 |
143 | 宠物系统.zc ©2020
144 |
145 |
146 |
147 |
148 |
--------------------------------------------------------------------------------
/web/pages/mandp/addmaster.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 添加客户信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
101 |
102 |
103 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
136 |
137 |
138 |
139 | 宠物系统.zc ©2020
140 |
141 |
142 |
143 |
144 |
--------------------------------------------------------------------------------
/web/pages/mandp/inquiremap.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 16:59
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 查询兽医信息
12 | <%@include file="/dir/base.jsp"%>
13 |
61 |
92 |
93 |
94 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
114 |
115 |
116 |
117 |
128 |
139 |
140 |
141 |
142 |
143 | 宠物系统.zc ©2020
144 |
145 |
146 |
147 |
148 |
149 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/mandp/addmaster.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 添加客户信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
101 |
102 |
103 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
136 |
137 |
138 |
139 | 宠物系统.zc ©2020
140 |
141 |
142 |
143 |
144 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/mandp/inquiremap.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 16:59
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 查询兽医信息
12 | <%@include file="/dir/base.jsp"%>
13 |
61 |
92 |
93 |
94 |
99 |
100 |
101 |
102 |
103 |
104 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
114 |
115 |
116 |
117 |
128 |
139 |
140 |
141 |
142 |
143 | 宠物系统.zc ©2020
144 |
145 |
146 |
147 |
148 |
149 |
--------------------------------------------------------------------------------
/web/pages/mandp/inquireres.jsp:
--------------------------------------------------------------------------------
1 | <%@ page import="java.util.List" %>
2 | <%@ page import="bean.pet" %><%--
3 | Created by IntelliJ IDEA.
4 | User: 14371
5 | Date: 2020/6/8
6 | Time: 16:39
7 | To change this template use File | Settings | File Templates.
8 | --%>
9 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
10 |
11 |
12 | <%@include file="/dir/base.jsp"%>
13 | 查询信息
14 |
92 |
93 |
118 |
119 |
120 |
121 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
153 |
154 |
155 |
156 |
157 |
158 | 宠物系统.zc ©2020
159 |
160 |
161 |
162 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/mandp/inquireres.jsp:
--------------------------------------------------------------------------------
1 | <%@ page import="java.util.List" %>
2 | <%@ page import="bean.pet" %><%--
3 | Created by IntelliJ IDEA.
4 | User: 14371
5 | Date: 2020/6/8
6 | Time: 16:39
7 | To change this template use File | Settings | File Templates.
8 | --%>
9 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
10 |
11 |
12 | <%@include file="/dir/base.jsp"%>
13 | 查询信息
14 |
92 |
93 |
118 |
119 |
120 |
121 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
134 |
135 |
136 |
137 |
138 |
139 |
153 |
154 |
155 |
156 |
157 |
158 | 宠物系统.zc ©2020
159 |
160 |
161 |
162 |
--------------------------------------------------------------------------------
/web/pages/amdoctor/aminfor.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/8
5 | Time: 16:39
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | <%@include file="/dir/base.jsp"%>
12 | 兽医信息
13 |
86 |
87 |
112 |
113 |
114 |
115 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
135 |
136 | | 编号 |
137 | 名称 |
138 | 性别 |
139 | 部门 |
140 | 从业时间 |
141 |
142 |
143 |
144 | | ${doctor.id} |
145 | ${doctor.name} |
146 | ${doctor.sex} |
147 | ${doctor.bumen} |
148 | ${doctor.time} |
149 |
150 |
151 |
152 |
153 |
154 | <%----%>
155 | <%--
--%>
156 | <%--
--%>
157 | <%-- 兽医信息页--%>
158 | <%-- --%>
159 | <%--
--%>
160 | <%----%>
161 |
162 |
163 | 宠物系统.zc ©2020
164 |
165 |
166 |
167 |
168 |
--------------------------------------------------------------------------------
/web/pages/amdoctor/addamdor.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 添加兽医信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
101 |
102 |
103 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
122 |
123 |
124 |
125 |
142 |
143 |
144 |
145 | 宠物系统.zc ©2020
146 |
147 |
148 |
149 |
150 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/amdoctor/aminfor.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/8
5 | Time: 16:39
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | <%@include file="/dir/base.jsp"%>
12 | 兽医信息
13 |
86 |
87 |
112 |
113 |
114 |
115 |
120 |
121 |
122 |
123 |
124 |
125 |
126 |
127 |
128 |
129 |
130 |
131 |
132 |
133 |
135 |
136 | | 编号 |
137 | 名称 |
138 | 性别 |
139 | 部门 |
140 | 从业时间 |
141 |
142 |
143 |
144 | | ${doctor.id} |
145 | ${doctor.name} |
146 | ${doctor.sex} |
147 | ${doctor.bumen} |
148 | ${doctor.time} |
149 |
150 |
151 |
152 |
153 |
154 | <%----%>
155 | <%--
--%>
156 | <%--
--%>
157 | <%-- 兽医信息页--%>
158 | <%-- --%>
159 | <%--
--%>
160 | <%----%>
161 |
162 |
163 | 宠物系统.zc ©2020
164 |
165 |
166 |
167 |
168 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/amdoctor/addamdor.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 添加兽医信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
101 |
102 |
103 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
122 |
123 |
124 |
125 |
142 |
143 |
144 |
145 | 宠物系统.zc ©2020
146 |
147 |
148 |
149 |
150 |
--------------------------------------------------------------------------------
/web/pages/mandp/addpet.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 添加宠物信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
101 |
102 |
103 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
122 |
123 |
124 |
125 |
142 |
143 |
144 |
145 | 宠物系统.zc ©2020
146 |
147 |
148 |
149 |
150 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/mandp/addpet.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 添加宠物信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
101 |
102 |
103 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 |
119 |
120 |
121 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
122 |
123 |
124 |
125 |
142 |
143 |
144 |
145 | 宠物系统.zc ©2020
146 |
147 |
148 |
149 |
150 |
--------------------------------------------------------------------------------
/web/pages/mandp/updateCus.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 更新顾客信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
98 |
99 |
100 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
119 |
120 |
121 |
122 |
143 |
144 |
145 |
146 | 宠物系统.zc ©2020
147 |
148 |
149 |
150 |
151 |
152 |
--------------------------------------------------------------------------------
/out/artifacts/_war_exploded/pages/mandp/updateCus.jsp:
--------------------------------------------------------------------------------
1 | <%--
2 | Created by IntelliJ IDEA.
3 | User: 14371
4 | Date: 2020/6/9
5 | Time: 14:33
6 | To change this template use File | Settings | File Templates.
7 | --%>
8 | <%@ page contentType="text/html;charset=UTF-8" language="java" %>
9 |
10 |
11 | 更新顾客信息
12 | <%@include file="/dir/base.jsp"%>
13 |
63 |
64 |
98 |
99 |
100 |
105 |
106 |
107 |
108 |
109 |
110 |
111 |
112 |
113 |
114 |
115 |
116 |
117 |
118 | <%=request.getAttribute("mgs1")==null?"":request.getAttribute("mgs1")%>
119 |
120 |
121 |
122 |
143 |
144 |
145 |
146 | 宠物系统.zc ©2020
147 |
148 |
149 |
150 |
151 |
152 |
--------------------------------------------------------------------------------