diff --git a/LL/company1-master/.gitattributes b/LL/company1-master/.gitattributes
new file mode 100644
index 0000000..dfe0770
--- /dev/null
+++ b/LL/company1-master/.gitattributes
@@ -0,0 +1,2 @@
+# Auto detect text files and perform LF normalization
+* text=auto
diff --git a/LL/company1-master/app.js b/LL/company1-master/app.js
new file mode 100644
index 0000000..a14cdec
--- /dev/null
+++ b/LL/company1-master/app.js
@@ -0,0 +1,41 @@
+//app.js
+App({
+ onLaunch: function () {
+ // 展示本地存储能力
+ var logs = wx.getStorageSync('logs') || []
+ logs.unshift(Date.now())
+ wx.setStorageSync('logs', logs)
+
+ // 登录
+ wx.login({
+ success: res => {
+ // 发送 res.code 到后台换取 openId, sessionKey, unionId
+ }
+ })
+ // 获取用户信息
+ wx.getSetting({
+ success: res => {
+ if (res.authSetting['scope.userInfo']) {
+ // 已经授权,可以直接调用 getUserInfo 获取头像昵称,不会弹框
+ wx.getUserInfo({
+ success: res => {
+ // 可以将 res 发送给后台解码出 unionId
+ this.globalData.userInfo = res.userInfo
+
+ // 由于 getUserInfo 是网络请求,可能会在 Page.onLoad 之后才返回
+ // 所以此处加入 callback 以防止这种情况
+ if (this.userInfoReadyCallback) {
+ this.userInfoReadyCallback(res)
+ }
+ }
+ })
+ }
+ }
+ })
+ },
+ globalData: {
+ userInfo: null,
+ font:[{font:'font-size:20rpx'},{font:'font-size:22rpx'},{font:'font-size:24rpx'},{font:'font-size:28rpx'},{font:'font-size:30rpx'},{font:'font-size:32rpx'}],
+
+ }
+})
\ No newline at end of file
diff --git a/LL/company1-master/app.json b/LL/company1-master/app.json
new file mode 100644
index 0000000..b5568f2
--- /dev/null
+++ b/LL/company1-master/app.json
@@ -0,0 +1,24 @@
+{
+ "pages":[
+ "pages/Index/index",
+ "pages/Sort/sort",
+ "pages/Shopping/shopping",
+ "pages/User/user",
+ "pages/userInfo/userInfo",
+ "pages/manageAddress/manageAddress",
+ "pages/newAddress/newAddress",
+ "pages/order/order",
+ "pages/commentOrder/commentOrder",
+ "pages/shoppingEmpty/shoppingEmpty",
+ "pages/confirmOrder/confirmOrder",
+ "pages/detail/detail",
+ "pages/about/about"
+ ],
+ "window":{
+ "backgroundTextStyle":"light",
+ "navigationBarBackgroundColor": "#fff",
+ "navigationBarTitleText": "纯粹科技",
+ "navigationBarTextStyle":"black"
+ }
+
+}
diff --git a/LL/company1-master/app.wxss b/LL/company1-master/app.wxss
new file mode 100644
index 0000000..ad94b51
--- /dev/null
+++ b/LL/company1-master/app.wxss
@@ -0,0 +1,60 @@
+/**app.wxss**/
+.flexRowBetween{
+ display:flex;
+ flex-direction:row;
+ justify-content:space-between;
+}
+.flexRowBetween1{
+ display:flex;
+ flex-direction:row;
+}
+.flexColumnBetween{
+ flex-direction:column;
+ justify-content:space-between;
+}
+.avoidOverflow{
+ overflow-x:hidden;
+ text-overflow:ellipsis;
+ white-space:nowrap;
+}
+/***********提交按钮***********/
+.submit_info{
+margin:0rpx 25rpx;
+width:700rpx;
+height:88rpx;
+line-height:88rpx;
+text-align:center;
+font-size:36rpx;
+color:#fff;
+background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));
+border-radius:10rpx;margin-top:260rpx;}
+/***********navbar***********/
+.navbar{
+ height:115rpx;
+ width:100%;
+ position:fixed;
+ bottom:0rpx;
+ z-index:999;
+ background:#fff;
+ display:flex;
+ justify-content:center;
+ border-top:solid 1px #dbdbdb;
+ align-items:center;
+}
+.navbar_item{
+
+ width:25%;
+ text-align:center;
+
+}
+.navbar .text{
+ color:#656565;
+}
+.navbar .this-text{
+ color:#21c3d4;
+}
+
+.navigator-hover {
+ background:none;
+ color:#21c3d4;
+}
\ No newline at end of file
diff --git a/LL/company1-master/images/about1.jpg b/LL/company1-master/images/about1.jpg
new file mode 100644
index 0000000..81c441a
Binary files /dev/null and b/LL/company1-master/images/about1.jpg differ
diff --git a/LL/company1-master/images/about_banner.jpg b/LL/company1-master/images/about_banner.jpg
new file mode 100644
index 0000000..c77aa72
Binary files /dev/null and b/LL/company1-master/images/about_banner.jpg differ
diff --git a/LL/company1-master/images/bank.jpg b/LL/company1-master/images/bank.jpg
new file mode 100644
index 0000000..85055cc
Binary files /dev/null and b/LL/company1-master/images/bank.jpg differ
diff --git a/LL/company1-master/images/banner.png b/LL/company1-master/images/banner.png
new file mode 100644
index 0000000..b833de0
Binary files /dev/null and b/LL/company1-master/images/banner.png differ
diff --git a/LL/company1-master/images/banner/banner1.jpg b/LL/company1-master/images/banner/banner1.jpg
new file mode 100644
index 0000000..8991843
Binary files /dev/null and b/LL/company1-master/images/banner/banner1.jpg differ
diff --git a/LL/company1-master/images/banner/banner2.jpg b/LL/company1-master/images/banner/banner2.jpg
new file mode 100644
index 0000000..3a9b15f
Binary files /dev/null and b/LL/company1-master/images/banner/banner2.jpg differ
diff --git a/LL/company1-master/images/banner/banner3.jpg b/LL/company1-master/images/banner/banner3.jpg
new file mode 100644
index 0000000..c1820f9
Binary files /dev/null and b/LL/company1-master/images/banner/banner3.jpg differ
diff --git a/LL/company1-master/images/case-curtol.jpg b/LL/company1-master/images/case-curtol.jpg
new file mode 100644
index 0000000..29d866e
Binary files /dev/null and b/LL/company1-master/images/case-curtol.jpg differ
diff --git a/LL/company1-master/images/case1.jpg b/LL/company1-master/images/case1.jpg
new file mode 100644
index 0000000..87f7011
Binary files /dev/null and b/LL/company1-master/images/case1.jpg differ
diff --git a/LL/company1-master/images/case2.jpg b/LL/company1-master/images/case2.jpg
new file mode 100644
index 0000000..f62aa6f
Binary files /dev/null and b/LL/company1-master/images/case2.jpg differ
diff --git a/LL/company1-master/images/caseDetail_banner.jpg b/LL/company1-master/images/caseDetail_banner.jpg
new file mode 100644
index 0000000..f6e504b
Binary files /dev/null and b/LL/company1-master/images/caseDetail_banner.jpg differ
diff --git a/LL/company1-master/images/case_detail1.jpg b/LL/company1-master/images/case_detail1.jpg
new file mode 100644
index 0000000..b77cb66
Binary files /dev/null and b/LL/company1-master/images/case_detail1.jpg differ
diff --git a/LL/company1-master/images/choose_pro.jpg b/LL/company1-master/images/choose_pro.jpg
new file mode 100644
index 0000000..f23b921
Binary files /dev/null and b/LL/company1-master/images/choose_pro.jpg differ
diff --git a/LL/company1-master/images/close.jpg b/LL/company1-master/images/close.jpg
new file mode 100644
index 0000000..5e3b691
Binary files /dev/null and b/LL/company1-master/images/close.jpg differ
diff --git a/LL/company1-master/images/cloude.png b/LL/company1-master/images/cloude.png
new file mode 100644
index 0000000..3344f37
Binary files /dev/null and b/LL/company1-master/images/cloude.png differ
diff --git a/LL/company1-master/images/collect.jpg b/LL/company1-master/images/collect.jpg
new file mode 100644
index 0000000..3a56e02
Binary files /dev/null and b/LL/company1-master/images/collect.jpg differ
diff --git a/LL/company1-master/images/collect.png b/LL/company1-master/images/collect.png
new file mode 100644
index 0000000..a494a73
Binary files /dev/null and b/LL/company1-master/images/collect.png differ
diff --git a/LL/company1-master/images/del.jpg b/LL/company1-master/images/del.jpg
new file mode 100644
index 0000000..a37760e
Binary files /dev/null and b/LL/company1-master/images/del.jpg differ
diff --git a/LL/company1-master/images/des_icon1.jpg b/LL/company1-master/images/des_icon1.jpg
new file mode 100644
index 0000000..390d115
Binary files /dev/null and b/LL/company1-master/images/des_icon1.jpg differ
diff --git a/LL/company1-master/images/des_icon2.jpg b/LL/company1-master/images/des_icon2.jpg
new file mode 100644
index 0000000..a8f5f97
Binary files /dev/null and b/LL/company1-master/images/des_icon2.jpg differ
diff --git a/LL/company1-master/images/detail.jpg b/LL/company1-master/images/detail.jpg
new file mode 100644
index 0000000..b3afaa3
Binary files /dev/null and b/LL/company1-master/images/detail.jpg differ
diff --git a/LL/company1-master/images/detail1.jpg b/LL/company1-master/images/detail1.jpg
new file mode 100644
index 0000000..e1792a6
Binary files /dev/null and b/LL/company1-master/images/detail1.jpg differ
diff --git a/LL/company1-master/images/edit.jpg b/LL/company1-master/images/edit.jpg
new file mode 100644
index 0000000..ca147b1
Binary files /dev/null and b/LL/company1-master/images/edit.jpg differ
diff --git a/LL/company1-master/images/great.jpg b/LL/company1-master/images/great.jpg
new file mode 100644
index 0000000..38425ff
Binary files /dev/null and b/LL/company1-master/images/great.jpg differ
diff --git a/LL/company1-master/images/index_icon1.jpg b/LL/company1-master/images/index_icon1.jpg
new file mode 100644
index 0000000..529207b
Binary files /dev/null and b/LL/company1-master/images/index_icon1.jpg differ
diff --git a/LL/company1-master/images/index_icon1.png b/LL/company1-master/images/index_icon1.png
new file mode 100644
index 0000000..ab36335
Binary files /dev/null and b/LL/company1-master/images/index_icon1.png differ
diff --git a/LL/company1-master/images/index_icon1_a.png b/LL/company1-master/images/index_icon1_a.png
new file mode 100644
index 0000000..87382f0
Binary files /dev/null and b/LL/company1-master/images/index_icon1_a.png differ
diff --git a/LL/company1-master/images/index_icon2-a.jpg b/LL/company1-master/images/index_icon2-a.jpg
new file mode 100644
index 0000000..9cc098a
Binary files /dev/null and b/LL/company1-master/images/index_icon2-a.jpg differ
diff --git a/LL/company1-master/images/index_icon2-a.png b/LL/company1-master/images/index_icon2-a.png
new file mode 100644
index 0000000..b20a3e1
Binary files /dev/null and b/LL/company1-master/images/index_icon2-a.png differ
diff --git a/LL/company1-master/images/index_icon2.jpg b/LL/company1-master/images/index_icon2.jpg
new file mode 100644
index 0000000..eac4273
Binary files /dev/null and b/LL/company1-master/images/index_icon2.jpg differ
diff --git a/LL/company1-master/images/index_icon2.png b/LL/company1-master/images/index_icon2.png
new file mode 100644
index 0000000..87a307e
Binary files /dev/null and b/LL/company1-master/images/index_icon2.png differ
diff --git a/LL/company1-master/images/index_icon3.jpg b/LL/company1-master/images/index_icon3.jpg
new file mode 100644
index 0000000..eb1a7d6
Binary files /dev/null and b/LL/company1-master/images/index_icon3.jpg differ
diff --git a/LL/company1-master/images/index_icon3.png b/LL/company1-master/images/index_icon3.png
new file mode 100644
index 0000000..741e4eb
Binary files /dev/null and b/LL/company1-master/images/index_icon3.png differ
diff --git a/LL/company1-master/images/index_icon4-a.png b/LL/company1-master/images/index_icon4-a.png
new file mode 100644
index 0000000..ee8723f
Binary files /dev/null and b/LL/company1-master/images/index_icon4-a.png differ
diff --git a/LL/company1-master/images/index_icon4.jpg b/LL/company1-master/images/index_icon4.jpg
new file mode 100644
index 0000000..9391f82
Binary files /dev/null and b/LL/company1-master/images/index_icon4.jpg differ
diff --git a/LL/company1-master/images/index_icon4.png b/LL/company1-master/images/index_icon4.png
new file mode 100644
index 0000000..bdeed38
Binary files /dev/null and b/LL/company1-master/images/index_icon4.png differ
diff --git a/LL/company1-master/images/kefu.jpg b/LL/company1-master/images/kefu.jpg
new file mode 100644
index 0000000..da72d44
Binary files /dev/null and b/LL/company1-master/images/kefu.jpg differ
diff --git a/LL/company1-master/images/kefu.png b/LL/company1-master/images/kefu.png
new file mode 100644
index 0000000..ae6500b
Binary files /dev/null and b/LL/company1-master/images/kefu.png differ
diff --git a/LL/company1-master/images/kefu1.jpg b/LL/company1-master/images/kefu1.jpg
new file mode 100644
index 0000000..dafeb77
Binary files /dev/null and b/LL/company1-master/images/kefu1.jpg differ
diff --git a/LL/company1-master/images/kefu1.png b/LL/company1-master/images/kefu1.png
new file mode 100644
index 0000000..0364349
Binary files /dev/null and b/LL/company1-master/images/kefu1.png differ
diff --git a/LL/company1-master/images/made_bg.png b/LL/company1-master/images/made_bg.png
new file mode 100644
index 0000000..735cf8a
Binary files /dev/null and b/LL/company1-master/images/made_bg.png differ
diff --git a/LL/company1-master/images/more_bg.jpg b/LL/company1-master/images/more_bg.jpg
new file mode 100644
index 0000000..ad1f95f
Binary files /dev/null and b/LL/company1-master/images/more_bg.jpg differ
diff --git a/LL/company1-master/images/navbar1-a.jpg b/LL/company1-master/images/navbar1-a.jpg
new file mode 100644
index 0000000..befffff
Binary files /dev/null and b/LL/company1-master/images/navbar1-a.jpg differ
diff --git a/LL/company1-master/images/navbar1-a.png b/LL/company1-master/images/navbar1-a.png
new file mode 100644
index 0000000..2af1efb
Binary files /dev/null and b/LL/company1-master/images/navbar1-a.png differ
diff --git a/LL/company1-master/images/navbar1.jpg b/LL/company1-master/images/navbar1.jpg
new file mode 100644
index 0000000..4ea560e
Binary files /dev/null and b/LL/company1-master/images/navbar1.jpg differ
diff --git a/LL/company1-master/images/navbar1.png b/LL/company1-master/images/navbar1.png
new file mode 100644
index 0000000..6a03796
Binary files /dev/null and b/LL/company1-master/images/navbar1.png differ
diff --git a/LL/company1-master/images/navbar2-a.jpg b/LL/company1-master/images/navbar2-a.jpg
new file mode 100644
index 0000000..2932657
Binary files /dev/null and b/LL/company1-master/images/navbar2-a.jpg differ
diff --git a/LL/company1-master/images/navbar2-a.png b/LL/company1-master/images/navbar2-a.png
new file mode 100644
index 0000000..89f3bf9
Binary files /dev/null and b/LL/company1-master/images/navbar2-a.png differ
diff --git a/LL/company1-master/images/navbar2.jpg b/LL/company1-master/images/navbar2.jpg
new file mode 100644
index 0000000..e29f610
Binary files /dev/null and b/LL/company1-master/images/navbar2.jpg differ
diff --git a/LL/company1-master/images/navbar2.png b/LL/company1-master/images/navbar2.png
new file mode 100644
index 0000000..4e7c24f
Binary files /dev/null and b/LL/company1-master/images/navbar2.png differ
diff --git a/LL/company1-master/images/navbar3-a.jpg b/LL/company1-master/images/navbar3-a.jpg
new file mode 100644
index 0000000..9a0760c
Binary files /dev/null and b/LL/company1-master/images/navbar3-a.jpg differ
diff --git a/LL/company1-master/images/navbar3-a.png b/LL/company1-master/images/navbar3-a.png
new file mode 100644
index 0000000..4938cce
Binary files /dev/null and b/LL/company1-master/images/navbar3-a.png differ
diff --git a/LL/company1-master/images/navbar3.jpg b/LL/company1-master/images/navbar3.jpg
new file mode 100644
index 0000000..6f3e392
Binary files /dev/null and b/LL/company1-master/images/navbar3.jpg differ
diff --git a/LL/company1-master/images/navbar3.png b/LL/company1-master/images/navbar3.png
new file mode 100644
index 0000000..ee05c6c
Binary files /dev/null and b/LL/company1-master/images/navbar3.png differ
diff --git a/LL/company1-master/images/navbar4-a.jpg b/LL/company1-master/images/navbar4-a.jpg
new file mode 100644
index 0000000..5ec014e
Binary files /dev/null and b/LL/company1-master/images/navbar4-a.jpg differ
diff --git a/LL/company1-master/images/navbar4-a.png b/LL/company1-master/images/navbar4-a.png
new file mode 100644
index 0000000..51c4ae3
Binary files /dev/null and b/LL/company1-master/images/navbar4-a.png differ
diff --git a/LL/company1-master/images/navbar4.jpg b/LL/company1-master/images/navbar4.jpg
new file mode 100644
index 0000000..c3de470
Binary files /dev/null and b/LL/company1-master/images/navbar4.jpg differ
diff --git a/LL/company1-master/images/navbar4.png b/LL/company1-master/images/navbar4.png
new file mode 100644
index 0000000..09cf3de
Binary files /dev/null and b/LL/company1-master/images/navbar4.png differ
diff --git a/LL/company1-master/images/next_page.jpg b/LL/company1-master/images/next_page.jpg
new file mode 100644
index 0000000..26831d2
Binary files /dev/null and b/LL/company1-master/images/next_page.jpg differ
diff --git a/LL/company1-master/images/order.jpg b/LL/company1-master/images/order.jpg
new file mode 100644
index 0000000..492be73
Binary files /dev/null and b/LL/company1-master/images/order.jpg differ
diff --git a/LL/company1-master/images/pay.jpg b/LL/company1-master/images/pay.jpg
new file mode 100644
index 0000000..010d33a
Binary files /dev/null and b/LL/company1-master/images/pay.jpg differ
diff --git a/LL/company1-master/images/produc3.jpg b/LL/company1-master/images/produc3.jpg
new file mode 100644
index 0000000..41af8ea
Binary files /dev/null and b/LL/company1-master/images/produc3.jpg differ
diff --git a/LL/company1-master/images/product1.jpg b/LL/company1-master/images/product1.jpg
new file mode 100644
index 0000000..2d5082a
Binary files /dev/null and b/LL/company1-master/images/product1.jpg differ
diff --git a/LL/company1-master/images/product_buy.png b/LL/company1-master/images/product_buy.png
new file mode 100644
index 0000000..7f11c3e
Binary files /dev/null and b/LL/company1-master/images/product_buy.png differ
diff --git a/LL/company1-master/images/select.png b/LL/company1-master/images/select.png
new file mode 100644
index 0000000..765f02d
Binary files /dev/null and b/LL/company1-master/images/select.png differ
diff --git a/LL/company1-master/images/select_active.jpg b/LL/company1-master/images/select_active.jpg
new file mode 100644
index 0000000..67d5cc9
Binary files /dev/null and b/LL/company1-master/images/select_active.jpg differ
diff --git a/LL/company1-master/images/share.jpg b/LL/company1-master/images/share.jpg
new file mode 100644
index 0000000..010d146
Binary files /dev/null and b/LL/company1-master/images/share.jpg differ
diff --git a/LL/company1-master/images/shopcart.jpg b/LL/company1-master/images/shopcart.jpg
new file mode 100644
index 0000000..a25e371
Binary files /dev/null and b/LL/company1-master/images/shopcart.jpg differ
diff --git a/LL/company1-master/images/shopping_icon.jpg b/LL/company1-master/images/shopping_icon.jpg
new file mode 100644
index 0000000..171ed0d
Binary files /dev/null and b/LL/company1-master/images/shopping_icon.jpg differ
diff --git a/LL/company1-master/images/sign1.png b/LL/company1-master/images/sign1.png
new file mode 100644
index 0000000..fa56c65
Binary files /dev/null and b/LL/company1-master/images/sign1.png differ
diff --git a/LL/company1-master/images/sign2.png b/LL/company1-master/images/sign2.png
new file mode 100644
index 0000000..6bbe7d3
Binary files /dev/null and b/LL/company1-master/images/sign2.png differ
diff --git a/LL/company1-master/images/sign3.png b/LL/company1-master/images/sign3.png
new file mode 100644
index 0000000..8332ad6
Binary files /dev/null and b/LL/company1-master/images/sign3.png differ
diff --git a/LL/company1-master/images/sign4.png b/LL/company1-master/images/sign4.png
new file mode 100644
index 0000000..fb39b96
Binary files /dev/null and b/LL/company1-master/images/sign4.png differ
diff --git a/LL/company1-master/images/sign_banner.jpg b/LL/company1-master/images/sign_banner.jpg
new file mode 100644
index 0000000..e632e27
Binary files /dev/null and b/LL/company1-master/images/sign_banner.jpg differ
diff --git a/LL/company1-master/images/sort.jpg b/LL/company1-master/images/sort.jpg
new file mode 100644
index 0000000..ff2e999
Binary files /dev/null and b/LL/company1-master/images/sort.jpg differ
diff --git a/LL/company1-master/images/sort_Img1.jpg b/LL/company1-master/images/sort_Img1.jpg
new file mode 100644
index 0000000..5af9766
Binary files /dev/null and b/LL/company1-master/images/sort_Img1.jpg differ
diff --git a/LL/company1-master/images/sort_img2.jpg b/LL/company1-master/images/sort_img2.jpg
new file mode 100644
index 0000000..dfad48f
Binary files /dev/null and b/LL/company1-master/images/sort_img2.jpg differ
diff --git a/LL/company1-master/images/sort_img3.jpg b/LL/company1-master/images/sort_img3.jpg
new file mode 100644
index 0000000..517e99f
Binary files /dev/null and b/LL/company1-master/images/sort_img3.jpg differ
diff --git a/LL/company1-master/images/star.jpg b/LL/company1-master/images/star.jpg
new file mode 100644
index 0000000..411238c
Binary files /dev/null and b/LL/company1-master/images/star.jpg differ
diff --git a/LL/company1-master/images/tlt_bg_03.jpg b/LL/company1-master/images/tlt_bg_03.jpg
new file mode 100644
index 0000000..0dc6f2f
Binary files /dev/null and b/LL/company1-master/images/tlt_bg_03.jpg differ
diff --git a/LL/company1-master/images/user1.jpg b/LL/company1-master/images/user1.jpg
new file mode 100644
index 0000000..e27c0a3
Binary files /dev/null and b/LL/company1-master/images/user1.jpg differ
diff --git a/LL/company1-master/images/user_icon.jpg b/LL/company1-master/images/user_icon.jpg
new file mode 100644
index 0000000..e79cfd8
Binary files /dev/null and b/LL/company1-master/images/user_icon.jpg differ
diff --git a/LL/company1-master/images/user_icon1.jpg b/LL/company1-master/images/user_icon1.jpg
new file mode 100644
index 0000000..9ce1ed2
Binary files /dev/null and b/LL/company1-master/images/user_icon1.jpg differ
diff --git a/LL/company1-master/images/user_icon1.png b/LL/company1-master/images/user_icon1.png
new file mode 100644
index 0000000..f707908
Binary files /dev/null and b/LL/company1-master/images/user_icon1.png differ
diff --git a/LL/company1-master/images/user_icon2.jpg b/LL/company1-master/images/user_icon2.jpg
new file mode 100644
index 0000000..5242d0c
Binary files /dev/null and b/LL/company1-master/images/user_icon2.jpg differ
diff --git a/LL/company1-master/images/user_icon2.png b/LL/company1-master/images/user_icon2.png
new file mode 100644
index 0000000..aec8650
Binary files /dev/null and b/LL/company1-master/images/user_icon2.png differ
diff --git a/LL/company1-master/images/user_icon3.jpg b/LL/company1-master/images/user_icon3.jpg
new file mode 100644
index 0000000..2050af6
Binary files /dev/null and b/LL/company1-master/images/user_icon3.jpg differ
diff --git a/LL/company1-master/images/user_icon3.png b/LL/company1-master/images/user_icon3.png
new file mode 100644
index 0000000..57528ae
Binary files /dev/null and b/LL/company1-master/images/user_icon3.png differ
diff --git a/LL/company1-master/images/user_icon4.jpg b/LL/company1-master/images/user_icon4.jpg
new file mode 100644
index 0000000..f376678
Binary files /dev/null and b/LL/company1-master/images/user_icon4.jpg differ
diff --git a/LL/company1-master/images/user_icon4.png b/LL/company1-master/images/user_icon4.png
new file mode 100644
index 0000000..d22aba5
Binary files /dev/null and b/LL/company1-master/images/user_icon4.png differ
diff --git a/LL/company1-master/images/user_icon5.jpg b/LL/company1-master/images/user_icon5.jpg
new file mode 100644
index 0000000..5f1d9ef
Binary files /dev/null and b/LL/company1-master/images/user_icon5.jpg differ
diff --git a/LL/company1-master/images/user_icon6.jpg b/LL/company1-master/images/user_icon6.jpg
new file mode 100644
index 0000000..3921698
Binary files /dev/null and b/LL/company1-master/images/user_icon6.jpg differ
diff --git a/LL/company1-master/images/user_icon7.jpg b/LL/company1-master/images/user_icon7.jpg
new file mode 100644
index 0000000..eab5c87
Binary files /dev/null and b/LL/company1-master/images/user_icon7.jpg differ
diff --git a/LL/company1-master/images/user_icon8.jpg b/LL/company1-master/images/user_icon8.jpg
new file mode 100644
index 0000000..3dc4c50
Binary files /dev/null and b/LL/company1-master/images/user_icon8.jpg differ
diff --git a/LL/company1-master/images/user_icon9.jpg b/LL/company1-master/images/user_icon9.jpg
new file mode 100644
index 0000000..ad7ed85
Binary files /dev/null and b/LL/company1-master/images/user_icon9.jpg differ
diff --git a/LL/company1-master/images/video.jpg b/LL/company1-master/images/video.jpg
new file mode 100644
index 0000000..891685b
Binary files /dev/null and b/LL/company1-master/images/video.jpg differ
diff --git a/LL/company1-master/images/youhui.jpg b/LL/company1-master/images/youhui.jpg
new file mode 100644
index 0000000..e6b9541
Binary files /dev/null and b/LL/company1-master/images/youhui.jpg differ
diff --git a/LL/company1-master/images/youhui_02.jpg b/LL/company1-master/images/youhui_02.jpg
new file mode 100644
index 0000000..054991f
Binary files /dev/null and b/LL/company1-master/images/youhui_02.jpg differ
diff --git a/LL/company1-master/images/youhui_04.jpg b/LL/company1-master/images/youhui_04.jpg
new file mode 100644
index 0000000..9267683
Binary files /dev/null and b/LL/company1-master/images/youhui_04.jpg differ
diff --git a/LL/company1-master/images/youhui_06.jpg b/LL/company1-master/images/youhui_06.jpg
new file mode 100644
index 0000000..e74d068
Binary files /dev/null and b/LL/company1-master/images/youhui_06.jpg differ
diff --git a/LL/company1-master/pages/Index/index.js b/LL/company1-master/pages/Index/index.js
new file mode 100644
index 0000000..7da881c
--- /dev/null
+++ b/LL/company1-master/pages/Index/index.js
@@ -0,0 +1,62 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ // isHidden:false,
+ imgUrls: [
+ '../../images/banner/banner1.jpg',
+ '../../images/banner/banner2.jpg',
+ '../../images/banner/banner3.jpg'
+ ],
+ },
+
+ onLoad: function () {
+ this.setData({
+ isHidden: false,
+ fonts:app.globalData.font
+ });
+ // var that = this;
+ // setTimeout(function(){
+ // that.setData({
+ // isHidden: true
+ // });
+
+ // }, 2000);
+ },
+ about:function(){
+ wx.navigateTo({
+ url:'/pages/about/about'
+ })
+ },
+ caseDetail:function(){
+ wx.navigateTo({
+ url:'/pages/caseDetail/caseDetail'
+ })
+ },
+ connectus:function(){
+ console.log("该页面还未写好");
+ },
+ shopping:function(){
+ wx.redirectTo({
+ url:'/pages/Shopping/shopping'
+ })
+ },
+ sort:function(){
+ wx.redirectTo({
+ url:'/pages/Sort/sort'
+ })
+ },
+ index:function(){
+ wx.redirectTo({
+ url:'/pages/Index/index'
+ })
+ },
+ User:function(){
+ wx.redirectTo({
+ url:'/pages/User/user'
+ })
+ }
+
+})
diff --git a/LL/company1-master/pages/Index/index.json b/LL/company1-master/pages/Index/index.json
new file mode 100644
index 0000000..bb147fd
--- /dev/null
+++ b/LL/company1-master/pages/Index/index.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "盼成图书销售"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/Index/index.wxml b/LL/company1-master/pages/Index/index.wxml
new file mode 100644
index 0000000..90af0e5
--- /dev/null
+++ b/LL/company1-master/pages/Index/index.wxml
@@ -0,0 +1,208 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 关于我们
+
+
+
+
+
+
+
+ 联系我们
+
+
+
+
+
+
+
+ 推荐书籍
+
+
+
+
+
+
+ 微信小程序
+ 联系更紧密
+
+
+
+
+
+
+
+
+
+ 网站
+ 浏览更方便
+
+
+
+
+
+
+
+
+
+
+ 公众号
+ 管理更方便
+
+
+
+
+
+
+
+
+
+
+
+
+ 纯粹科技
+ 了解更多 >
+
+
+
+
+
+ 案例展示
+
+
+
+
+
+
+
+
+
+
+ 高端定制最美中国网站高端定制最美中国网站高端定制最 美中国网站高端定制最美中国网站高端定制最美中国网站高端定制最高端定制最美中国网站高端定制最美中国网站高端定制最高端定制最美中国网站高端定制最美中国网站高端定制最
+
+ 了解更多 >
+
+
+
+
+
+
+
+
+ 高端定制最美中国网站高端定制最美中国网站高端定制最 美中国网站高端定制最美中国网站高端定制最美中国网站高端定制最高端定制最美中国网站高端定制最美中国网站高端定制最高端定制最美中国网站高端定制最美中国网站高端定制最
+
+ 了解更多 >
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 首页
+
+
+
+
+
+
+
+
+ 分类
+
+
+
+
+
+
+
+ 购物车
+
+
+
+
+
+
+
+ 我的
+
+
+
\ No newline at end of file
diff --git a/LL/company1-master/pages/Index/index.wxss b/LL/company1-master/pages/Index/index.wxss
new file mode 100644
index 0000000..e32172d
--- /dev/null
+++ b/LL/company1-master/pages/Index/index.wxss
@@ -0,0 +1,496 @@
+/**index.wxss**/
+/*************loading*****************/
+#loading-wrapper {
+ position: relative;
+ width: 100%;
+ height: 100vh;
+ overflow:hidden;
+
+ z-index:99;
+ transition:all 2s;
+}
+
+#loading-text {
+ display: block;
+ position: absolute;
+ top: 55%;
+ color: #999;
+ width: 100%;
+ height: 30px;
+
+ text-align: center;
+ font-family: 'PT Sans Narrow', sans-serif;
+ font-size: 22rpx;
+}
+
+#loading-content {
+ display: block;
+ position: relative;
+ left: 50%;
+ top: 45%;
+ width: 160rpx;
+ height: 160rpx;
+ margin: -80rpx 0 0 -80rpx;
+ border: 1px solid #F00;
+}
+
+#loading-content:after {
+ content: "";
+ position: absolute;
+ border: 1px solid #0F0;
+ left: 15px;
+ right: 15px;
+ top: 15px;
+ bottom: 15px;
+}
+
+#loading-content:before {
+ content: "";
+ position: absolute;
+ border: 1px solid #00F;
+ left: 5px;
+ right: 5px;
+ top: 5px;
+ bottom: 5px;
+}
+
+#loading-content {
+ border: 1px solid transparent;
+ border-top-color: #4D658D;
+ border-bottom-color: #4D658D;
+ border-radius: 50%;
+ -webkit-animation: loader 2s linear infinite;
+ -moz-animation: loader 2s linear infinite;
+ -o-animation: loader 2s linear infinite;
+ animation: loader 2s linear infinite;
+}
+
+#loading-content:before {
+ border: 1px solid transparent;
+ border-top-color: #D4CC6A;
+ border-bottom-color: #D4CC6A;
+ border-radius: 50%;
+ -webkit-animation: loader 3s linear infinite;
+ -moz-animation: loader 2s linear infinite;
+ -o-animation: loader 2s linear infinite;
+ animation: loader 3s linear infinite;
+}
+
+#loading-content:after {
+ border: 1px solid transparent;
+ border-top-color: #84417C;
+ border-bottom-color: #84417C;
+ border-radius: 50%;
+ -webkit-animation: loader 1.5s linear infinite;
+ animation: loader 1.5s linear infinite;
+ -moz-animation: loader 2s linear infinite;
+ -o-animation: loader 2s linear infinite;
+}
+
+@-webkit-keyframes loaders {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ -ms-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(360deg);
+ -ms-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+}
+
+@keyframes loader {
+ 0% {
+ -webkit-transform: rotate(0deg);
+ -ms-transform: rotate(0deg);
+ transform: rotate(0deg);
+ }
+ 100% {
+ -webkit-transform: rotate(360deg);
+ -ms-transform: rotate(360deg);
+ transform: rotate(360deg);
+ }
+}
+
+
+
+#header
+{
+ width: 800px;
+ margin: 0 auto;
+ text-align: center;
+ height: 100px;
+ background-color: #666;
+}
+
+#content
+{
+ width: 800px;
+ height: 1000px;
+ margin: 0 auto;
+ text-align: center;
+ background-color: #888;
+}
+
+.banner{position:relative;}
+.bannerImg{
+ width:100%;
+ height:288rpx;}
+.clude{
+ position:absolute;
+ top:25rpx;
+ right:145rpx;
+ width:98rpx;
+ height:48rpx;
+ transition:all 5s;
+ animation:clude 5s infinite;
+ }
+.clude1{
+ position:absolute;
+ bottom:20%;
+ right:8%;
+ width:78rpx;
+ height:40rpx;
+ transition:all 5s;
+
+ }
+
+@keyframes clude{
+
+ 0%{
+ transform:scale(0.6) translate(5rpx,5rpx);
+
+ opacity: 0.1;
+
+ }
+ 20%{
+ transform:scale(0.7) translate(-10rpx,-5rpx);
+ opacity: 0.3;
+ }
+ 40%{
+ transform:scale(0.8) translate(12rpx,2rpx);
+ opacity: 0.4;
+ }
+ 60%{
+ transform:scale(0.9) translate(5rpx,5rpx);
+ opacity: 0.5;
+ }
+ 80%{
+ transform:scale(1) translate(-1rpx,-3rpx);
+ opacity: 0.7;
+ }
+ 100%{
+ transform:scale(1) translate(15rpx,5rpx);
+ opacity: 1;
+ }
+
+}
+@keyframes clude1{
+
+ 0%{
+ transform:scale(0.6) translate(-5rpx,-5rpx);
+
+ opacity: 0.1;
+
+ }
+ 20%{
+ transform:scale(0.7) translate(10rpx,5rpx);
+ opacity: 0.3;
+ }
+ 40%{
+ transform:scale(0.8) translate(-12rpx,-2rpx);
+ opacity: 0.4;
+ }
+ 60%{
+ transform:scale(0.9) translate(-5rpx,-5rpx);
+ opacity: 0.5;
+ }
+ 80%{
+ transform:scale(1) translate(1rpx,3rpx);
+ opacity: 0.7;
+ }
+ 100%{
+ transform:scale(1) translate(-15rpx,-5rpx);
+ opacity: 1;
+ }
+
+}
+.custom{
+ width:120rpx;
+ height:30rpx;
+ border-radius:20rpx;
+ background:#3497fd;
+ line-height:30rpx;
+ text-align:center;
+ font-size:22rpx;
+ color:#fff;
+ margin-top:20rpx;
+}
+
+.module{
+ width:100%;
+ height:140rpx;
+ display:flex;
+ margin-top:40rpx;
+ margin-bottom:26rpx;
+ text-align: center;
+}
+.module_item{
+ width:25%;
+ text-align:center;
+}
+.item_top{
+ width:100%;
+ height:60%;
+}
+.module_item span image{
+ width:84rpx;height:84rpx
+}
+.module_item .text{
+ width:100%;
+ height:40%;
+ color:#151515;
+ font-size:20rpx;
+ text-align:center;
+ line-height:70rpx;
+}
+/********************服务类别*************************/
+.service_tlt{
+ position:relative;
+ left:24rpx;
+ margin-bottom:26rpx;}
+.service_tlt image{
+ width:154rpx;
+ height:40rpx;}
+.service_tlt .text1{
+ position:absolute;
+ left:24rpx;
+ top:0rpx;
+ height:40rpx;
+ display:inline-block;
+ line-height:40rpx;
+ font-size:30rpx;
+ color:#fff;
+ }
+.service_cont{
+ padding:0rpx 8rpx;
+}
+.service_cont text{display:block;}
+.service_left{
+ background:#f5f5f5;
+}
+.service_top{
+ background:#f5f5f5;
+ padding:0rpx 18rpx;
+ align-items:center;
+ height:100%;
+}
+.serviceTright{
+ align-items:center;
+}
+.service_bottom{
+ background:#f5f5f5;
+ padding:0rpx 18rpx 0rpx 18rpx;
+ height:100%;
+ align-items:center;
+}
+
+.service_left .text1{
+ margin-top:30rpx;
+}
+.service_left{text-align:center;}
+.service_cont .text2{
+ font-size:18rpx;
+ color:#969696;}
+
+.service_right{
+
+}
+.serviceTLeft .text1{
+ font-size:38rpx;
+ color:#ffb66d;
+
+}
+.service_bottom{margin-top:8rpx;}
+.serviceBLeft{color:#21c5d4;font-size:38rpx;}
+.service_top image{width:135rpx;height:105rpx;}
+.serviceBright image{width:116rpx;height:116rpx;}
+
+.solely_more{
+ text-align:center;
+ width:100%;
+ position:relative;
+}
+.solely_more image{
+ width:100%;
+ height:264rpx;
+}
+
+.service_cont{
+ width:98%;
+ padding:0 1%;
+ height:300rpx;
+ flex-direction:row;
+ display:flex;
+
+}
+.service_left{
+ width:50%;
+ height:100%;
+ overflow:hidden;
+ background:#f5f5f5;
+}
+.service_right{
+ width:49%;
+ margin-left:1%;
+ height:100%;
+ overflow:hidden;
+
+}
+.service_leftT{
+ width:100%;
+ height:40%;
+ align-items:center;
+}
+.service_leftB{
+ width:100%;
+ height:60%;
+ align-items:center;
+ text-align:center;
+}
+.service_rightT{
+ width:100%;
+ height:49%;
+ background:#f5f5f5;
+ align-items:center;
+}
+.service_rightB{
+ width:100%;
+ margin-top:2%;
+ height:49%;
+ background:#f5f5f5;
+}
+.service_leftT .text1{
+ font-size:40rpx;
+ color:#4fa8ff;
+}
+.service_left image{
+ width:129rpx;
+ height:129rpx;
+}
+.solely_more{
+ margin-top:8rpx;
+ text-align:center;
+ width:100%;
+ position:relative;
+}
+
+.solely_more text{
+ font-size:38rpx;
+ color:#b4a078;}
+.solely_more .company_name{
+ position:absolute;
+ top:72rpx;
+ margin:0rpx auto;
+ left:250rpx;
+ width:250rpx;
+ text-align:center;
+}
+.solely_more .more{
+ width:250rpx;
+ height:58rpx;
+ text-align:center;
+ line-height:58rpx;
+ font-size:28rpx;
+ color:#b4a078;
+ margin-top:18rpx;
+ background:#f4e9ca;
+}
+.case{margin-top:32rpx;
+ margin-bottom:130rpx;
+}
+.case_cont image{
+ width:485rpx;
+ height:306rpx;
+ float:right;
+ }
+.case_right{
+ width:33%;
+ height:306rpx;
+ background:#dbf1f6;
+ overflow:hidden;
+
+}
+.right_in{
+ height:256rpx;
+ padding:50rpx 30rpx 0rpx 20rpx;
+}
+.case_cont .text1{
+ display:block;
+ height:53%;
+ font-size:22rpx;
+ line-height:34rpx;
+ color:#323232;
+ overflow:hidden;
+ word-break: break-all;
+ text-overflow:ellipsis;
+ }
+.right_more{
+ margin-top:15%;
+ height:30%;
+}
+.case_more{
+ font-size:18rpx;
+ background:#6ad6e2;
+ width:142rpx;
+ height:40rpx;
+ line-height:40rpx;
+ text-align:center;
+ color:#fff;
+ border-radius: 5rpx;}
+.case_top{margin-bottom:13rpx;}
+.case_top .case_left{
+ width:67%;
+ height:306rpx;
+}
+.case_bottom .case_left{
+ width:67%;
+ height:306rpx;
+ text-align:right;
+}
+.case_bottom .case_left image{
+ float:right;
+}
+.case_bottom .case_right{
+ width:33%;
+}
+.img_scale{
+ width:485rpx;
+ height:306rpx;
+ overflow:hidden;
+
+}
+
+.service_left image{
+ transition:all 10s;
+ animation:rotate 10s infinite;
+}
+.service_left:hover.service_left image{
+ transform:rotate(360deg);
+}
+@keyframes rotate{
+ from{
+ transform:rotate(0deg);
+ }
+ to{
+ transform:rotate(360deg);
+ }
+}
+
+.swiper-ai image{
+ width: 100%;
+}
+.swiper-ai swiper{
+ height:240px;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/Shopping/shopping.js b/LL/company1-master/pages/Shopping/shopping.js
new file mode 100644
index 0000000..4bf34ac
--- /dev/null
+++ b/LL/company1-master/pages/Shopping/shopping.js
@@ -0,0 +1,99 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ windowWidth: wx.getSystemInfoSync().windowWidth,
+ windowHeight: wx.getSystemInfoSync().windowHeight,
+ hiddenSmallImg:true,
+ countsArray:[1,2,3,4,5,6,7,8,9,10],
+ productCounts:1,
+ currentTabsIndex:0,
+ cartTotalCounts:0,
+
+ },
+
+ onLoad: function () {
+ console.log(this.data.windowHeight)
+ this.setData({
+ fonts:app.globalData.font
+ })
+ },
+ /*添加到购物车*/
+ onAddingToCartTap:function(events){
+ // var currentFly = e.currentTarget.dataset.id
+ // this.setData({
+ // flayTo:currentFly
+ // });
+ //防止快速点击
+ if(this.data.flayTo){
+ return;
+ }
+ this._flyToCartEffect(events);
+
+ },
+
+ _flyToCartEffect:function(events){
+ //获得当前点击的位置,距离可视区域左上角
+ console.log(events);
+ var touches=events.touches[0];
+ var diff={
+ x:-touches.clientX*0.3+'px',
+ y:25+this.data.windowHeight-touches.clientY-140+'px',
+
+ },
+
+ style = 'display: block;-webkit-transform:translate('+diff.x+','+diff.y+') rotate(350deg) scale(0.3); opacity: 1;', //移动距离
+ style1 = '-webkit-transform:scale(1.1)'
+
+ this.setData({
+ flayTo:events.target.dataset.num,
+ //isFly:events.target.dataset.num,
+ translateStyle:style,
+ shoppingStyle:style1,
+ });
+ var that=this;
+ setTimeout(()=>{
+ that.setData({
+ flayTo:false,
+ translateStyle:'-webkit-transform: none;', //恢复到最初状态
+ isShake:true,
+
+ });
+ setTimeout(()=>{
+ var counts=that.data.cartTotalCounts+that.data.productCounts;
+ that.setData({
+ isShake:false,
+ cartTotalCounts:counts
+ });
+ },200);
+ },500);
+
+ },
+ confirmOrder:function(){
+ wx.navigateTo({
+ url: '/pages/confirmOrder/confirmOrder'
+ })
+ },
+ shopping:function(){
+ wx.redirectTo({
+ url:'/pages/Shopping/shopping'
+ })
+ },
+ sort:function(){
+ wx.redirectTo({
+ url:'/pages/Sort/sort'
+ })
+ },
+ index:function(){
+ wx.redirectTo({
+ url:'/pages/Index/index'
+ })
+ },
+ User:function(){
+ wx.redirectTo({
+ url:'/pages/User/user'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/Shopping/shopping.json b/LL/company1-master/pages/Shopping/shopping.json
new file mode 100644
index 0000000..15a72ea
--- /dev/null
+++ b/LL/company1-master/pages/Shopping/shopping.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "购物车"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/Shopping/shopping.wxml b/LL/company1-master/pages/Shopping/shopping.wxml
new file mode 100644
index 0000000..4676f81
--- /dev/null
+++ b/LL/company1-master/pages/Shopping/shopping.wxml
@@ -0,0 +1,127 @@
+
+
+
+
+
+
+
+
+
+
+
+ 网站建设
+ 个性化定制
+ ¥3999
+
+
+ -
+ 1
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 网站建设
+ 个性化定制
+ ¥3999
+
+
+ -
+ 1
+ +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 网站建设
+ 个性化定制
+ ¥3999
+
+
+ -
+ 1
+ +
+
+
+
+
+
+
+
+
+
+ 全选
+
+ 删除
+
+
+ 合计:
+
+
+ ¥3999
+
+
+
+
+ 结算
+ (1)
+
+
+
+
+
+
+
+
+
+
+
+ 首页
+
+
+
+
+
+
+
+ 分类
+
+
+
+
+
+
+ {{cartTotalCounts}}
+
+
+
+
+ 购物车
+
+
+
+
+
+ 我的
+
+
\ No newline at end of file
diff --git a/LL/company1-master/pages/Shopping/shopping.wxss b/LL/company1-master/pages/Shopping/shopping.wxss
new file mode 100644
index 0000000..e69b6f2
--- /dev/null
+++ b/LL/company1-master/pages/Shopping/shopping.wxss
@@ -0,0 +1,200 @@
+/**index.wxss**/
+#shopping{
+ padding:0rpx 4%;
+}
+.select_status{width:8%;height:152rpx;line-height:152rpx;}
+.select_status image{
+ width:29rpx;
+ height:29rpx;}
+.shopping_item{
+ margin-top:46rpx;
+ border-bottom:solid 1px #f5f5f5;
+ padding-bottom:35rpx;
+ position:relative;
+ align-items:center;
+}
+.shopping_img{width:24%;height:152rpx;text-align:left;}
+.shopping_img image{
+ width:152rpx;
+ height:152rpx;
+
+}
+.edit_number{
+ width:22.6%;
+ height:45rpx;
+ line-height:45rpx;
+ border:solid 1px #e5e5e5;
+ font-size:20rpx;
+}
+.edit_number .minus,.edit_number .add{
+ width:45rpx;
+ text-align:center;
+ color:#aeaeae;
+ font-size:40rpx;
+
+}
+.number{
+ width:72rpx;
+ text-align:center;
+ color:#878787;
+ border-right:solid 1px #e5e5e5;
+ border-left:solid 1px #e5e5e5;
+ }
+.shopping_name{
+ width:36.6%;
+ align-items:center;
+ overflow:hidden;
+ height:140rpx;
+}
+.shopping_name text{
+ display:block;
+}
+.shopping_name .text1{
+ font-size:30rpx;
+ color:#444;
+
+}
+.shopping_name .text2{
+ font-size:24rpx;
+ color:#999;
+}
+.shopping_name .price{
+ color:#21c3d4;
+ font-size:28rpx;
+}
+.shopping_name text{
+ height:33.33%;
+ align-items:center;
+}
+.total{
+ width:100%;
+ height:110rpx;
+ position:fixed;
+ bottom:110rpx;
+ left:0rpx;
+ align-items:center;
+ background:#f2f2f2;
+
+}
+.all_select image{
+ width:29rpx;
+ height:29rpx;
+}
+.total_price text{display:flex;}
+.select_c{
+ font-size:28rpx;
+ color:#444;
+}
+.del_shopping{color:#2c9fe1;font-size:30rpx;}
+.toalt1{font-size:30rpx;color:#333;}
+.priceNumber{
+ color:#21c3d4;
+ font-size:28rpx;
+}
+.submit_shopping{
+ width:160rpx;
+ height:60rpx;
+ border-radius:20rpx;
+
+ }
+.submit_shopping{
+ width:160rpx;
+ height:60rpx;
+ line-height:54rpx;
+ text-align:center;
+ background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));
+}
+.pay_note{
+ color:#fff;
+ font-size:34rpx;
+}
+.pay_note .text1{
+ font-size:30rpx;
+ color:#fff;
+}
+.pay_note .number_pay{
+ font-size:24rpx;
+ color:#fff;
+ margin-left:10rpx;
+
+}
+
+/*******addcart***********/
+.shopping{
+ font-size:30rpx;
+ position:absolute;
+ top:40%;
+}
+.circle{
+ width:50rpx;
+ height:50rpx;
+ background:#21c3d4;
+ border-radius:50%;
+ opacity:0;
+ position:absolute;
+ bottom:0rpx;
+ right:0rpx;
+ z-index:9999;
+}
+.circle.animate{
+
+ /*-webkit-transition:all 1000ms cubic-bezier(.4,.46,.3,1.31);*/
+ -webkit-transition:all 1000ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
+}
+.addCart{
+ width:100%;
+ height:80rpx;
+ position:absolute;
+ bottom:0rpx;
+ text-align:center;
+}
+.addCart image{
+ width:45rpx;
+ height:45rpx;
+ margin:0rpx auto;
+}
+.addCart image{
+ transition:all 0.5s;
+}
+.nav_img{
+ position:relative;
+
+}
+.cart_number{
+ position:absolute;
+ left:59%;
+ top:3rpx;
+ height:0rpx;
+ z-index:;
+}
+.fiexd-cart{
+
+ width:20rpx;height:20rpx;border-radius:50%;background:#21c3d4;margin:0rpx auto;text-align:center;line-height:20rpx;
+ z-index:3;
+}
+.jisster{
+ transition:all 1s;
+ transform:scale(1.1,1.1);
+ animation:jisster 0.5s;
+}
+@keyframes jisster{
+ 0%{
+ transform:rotate(3deg) scale(1.1,1.1);
+ }
+ 20%{
+ transform:rotate(-3deg) scale(1.1,1.1);
+ }
+ 40%{
+ transform:rotate(5deg) scale(1.1,1.1);
+ }
+ 60%{
+ transform:rotate(-5deg) scale(1.1,1.1);
+
+ }
+ 80%{
+ transform:rotate(3deg) scale(1.1,1.1);
+ }
+ 100%{
+ transform:rotate(-3deg) scale(1.1,1.1);
+ }
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/Sort/sort.js b/LL/company1-master/pages/Sort/sort.js
new file mode 100644
index 0000000..4ed6cdd
--- /dev/null
+++ b/LL/company1-master/pages/Sort/sort.js
@@ -0,0 +1,53 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ tapCurrent:0,
+ currentId:0
+ },
+
+ onLoad: function () {
+ this.setData({
+ fonts:app.globalData.font
+ })
+ },
+ menuTap:function(e){
+ var current=e.currentTarget.dataset.current;
+ this.setData({
+ tapCurrent:current
+ });
+ },
+ tabCont:function(e){
+ var currentId=e.currentTarget.dataset.id;
+ this.setData({
+ currentId:currentId
+ });
+ },
+ gongzhonghao:function(){
+ wx.navigateTo({
+ url:'/pages/gongzhonghao/gongzhonghao'
+ })
+ },
+ shopping:function(){
+ wx.redirectTo({
+ url:'/pages/Shopping/shopping'
+ })
+ },
+ sort:function(){
+ wx.redirectTo({
+ url:'/pages/Sort/sort'
+ })
+ },
+ index:function(){
+ wx.redirectTo({
+ url:'/pages/Index/index'
+ })
+ },
+ User:function(){
+ wx.redirectTo({
+ url:'/pages/User/user'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/Sort/sort.json b/LL/company1-master/pages/Sort/sort.json
new file mode 100644
index 0000000..1c03aaa
--- /dev/null
+++ b/LL/company1-master/pages/Sort/sort.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "商品分类"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/Sort/sort.wxml b/LL/company1-master/pages/Sort/sort.wxml
new file mode 100644
index 0000000..ae11ec3
--- /dev/null
+++ b/LL/company1-master/pages/Sort/sort.wxml
@@ -0,0 +1,220 @@
+
+
+
+
+
+
+
+
+
+
+ 官网定制
+
+
+
+ 模板类
+ vip定制
+
+
+
+
+
+
+
+ 小程序定制
+
+
+
+ 模板类
+ vip定制
+
+
+
+
+
+
+
+ 公众号
+
+
+
+ 模板类
+ vip定制
+
+
+
+
+
+
+
+
+
+ 官网定制-模板
+ 更多 >
+
+
+
+
+ 官网订制
+
+
+
+ 官网订制
+
+
+
+ 官网订制
+
+
+
+ 官网订制
+
+
+
+ 官网订制
+
+
+
+ 官网订制
+
+
+
+ 官网订制
+
+
+
+ 官网订制
+
+
+
+
+
+ 官网订制-vip定制
+ 更多 >
+
+
+
+
+
+ 小程序
+
+
+
+ 小程序
+
+
+
+
+
+
+ 小程序-模板
+ 更多 >
+
+
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+
+
+ 小程序-vip定制
+ 更多 >
+
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+
+
+ 公众号-模板
+ 更多 >
+
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+
+
+
+ 公众号-vip模板
+ 更多 >
+
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+ 公众号
+
+
+
+
+
+
+
+
+
+
+
+
+ 首页
+
+
+
+
+
+
+ 分类
+
+
+
+
+
+ 购物车
+
+
+
+
+
+ 我的
+
+
\ No newline at end of file
diff --git a/LL/company1-master/pages/Sort/sort.wxss b/LL/company1-master/pages/Sort/sort.wxss
new file mode 100644
index 0000000..5a5e849
--- /dev/null
+++ b/LL/company1-master/pages/Sort/sort.wxss
@@ -0,0 +1,121 @@
+/**index.wxss**/
+page{
+ width:100%;
+ min-height:100%;
+ background:#f5f5f5;
+}
+#sort{
+ background:#f5f5f5;
+ padding-top:35rpx;
+}
+.search{margin:0rpx 24rpx 22rpx;}
+.search input{
+ width:656rpx;
+ padding:0px 25rpx;
+ height:56rpx;
+ line-height:56rpx;
+ background:#e5e5e5;
+ border-radius:20rpx;
+ color:#979797;
+ font-size:24rpx;}
+.made_product{
+ margin-bottom:120rpx;
+}
+.made_sort{
+ width:27%;
+ text-align:center;
+ background:#fff;
+ min-height:100%;
+}
+.made_cont{
+ width:70%;
+ background:#fff;}
+.madeSort{
+ height:auto;
+ padding-bottom:12rpx;
+ }
+.left_bar{
+ width:100%;
+ text-align:center;
+}
+.lsort_LeftAll{
+ width:100%;
+ height:88rpx;
+ font-size:30rpx;
+ color:#666;
+}
+.madeSort .img_bg{
+ width:100%;
+ height:88rpx;
+ line-height:88rpx;
+
+ color:#666;
+
+ }
+.madeSort .text2{
+ font-size:22rpx;
+ color:#999;
+ height:70rpx;
+ line-height:70rpx;
+}
+.small_sort{
+ width:65%;
+ margin:0rpx auto;
+ border-top:solid 1px #666;
+ }
+.small_txt{
+ width:80%;
+ margin:0rpx auto;
+}
+.small_sort text{
+ display:block;
+}
+.madeSort .text3{
+ border-top:solid 1px #b1b1b1;
+}
+.made_bg .img_bg{background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));}
+
+.made_bg .active{color:#fff;}
+.madeContItem{display:none;}
+.madeShow{display:block}
+.made_name{
+ font-size:22rpx;
+ color:#222;
+
+}
+.made_tlt{
+ height:86rpx;
+ line-height:86rpx;
+ background:#fff;
+ }
+.made_tlt .made_name{
+ margin-left:4%;
+ color:#222;
+ font-size:28rpx;
+}
+.made_tlt .made_more{
+ font-size:24rpx;
+ color:#a3a3a3;
+ margin-right:4%;}
+.made_case{
+ border-radius:30rpx;
+ overflow:hidden;
+ padding:2%;
+}
+.made_item{
+ float:left;
+ width:44%;
+ height:200rpx;
+ float:left;
+ margin:3%;
+ text-align:center;
+}
+.made_item image{
+ width:100%;
+ height:80%;
+}
+.made_item .product_name{
+ font-size:24rpx;
+ color:#222;
+
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/User/user.js b/LL/company1-master/pages/User/user.js
new file mode 100644
index 0000000..21c6315
--- /dev/null
+++ b/LL/company1-master/pages/User/user.js
@@ -0,0 +1,55 @@
+//logs.js
+const util = require('../../utils/util.js')
+const app = getApp()
+
+
+Page({
+ data: {
+
+ },
+ onLoad: function () {
+ this.setData({
+ fonts:app.globalData.font
+ })
+ },
+ userInfo:function(){
+ wx.navigateTo({
+ url:'/pages/userInfo/userInfo'
+ })
+ },
+ discount:function(){
+ wx.navigateTo({
+ url:'/pages/discount/discount'
+ })
+ },
+ address:function(){
+ wx.navigateTo({
+ url:'/pages/manageAddress/manageAddress'
+ })
+ },
+ order:function(){
+ wx.navigateTo({
+ url:'/pages/order/order'
+ })
+ },
+ shopping:function(){
+ wx.redirectTo({
+ url:'/pages/Shopping/shopping'
+ })
+ },
+ sort:function(){
+ wx.redirectTo({
+ url:'/pages/Sort/sort'
+ })
+ },
+ index:function(){
+ wx.redirectTo({
+ url:'/pages/Index/index'
+ })
+ },
+ User:function(){
+ wx.redirectTo({
+ url:'/pages/User/user'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/User/user.json b/LL/company1-master/pages/User/user.json
new file mode 100644
index 0000000..1da73fa
--- /dev/null
+++ b/LL/company1-master/pages/User/user.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "我的"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/User/user.wxml b/LL/company1-master/pages/User/user.wxml
new file mode 100644
index 0000000..45211bd
--- /dev/null
+++ b/LL/company1-master/pages/User/user.wxml
@@ -0,0 +1,131 @@
+
+
+
+
+
+
+
+
+
+
+
+ 158767678
+
+
+
+ 签
+
+
+
+
+
+
+
+
+
+
+
+ 0
+ 我的收藏
+
+
+ 0
+ 我的积分
+
+
+
+
+
+
+ 我的订单
+
+
+
+
+ 查看订单
+
+
+
+
+
+
+
+
+ 待付款
+
+
+
+ 待发货
+
+
+
+ 待收货
+
+
+
+ 待评价
+
+
+
+ 退换货
+
+
+
+
+
+
+ 我的信息
+
+
+
+
+
+
+
+
+ 我的优惠劵
+
+
+
+
+
+
+
+
+ 我的地址
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 首页
+
+
+
+
+
+
+ 分类
+
+
+
+
+
+ 购物车
+
+
+
+
+
+ 我的
+
+
\ No newline at end of file
diff --git a/LL/company1-master/pages/User/user.wxss b/LL/company1-master/pages/User/user.wxss
new file mode 100644
index 0000000..0605c6e
--- /dev/null
+++ b/LL/company1-master/pages/User/user.wxss
@@ -0,0 +1,134 @@
+.users{
+ height:300rpx;
+ width:100%;
+ background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));
+ overflow:hidden;
+ align-items:center;}
+.user_info{
+ height:300rpx;
+ align-items:center;
+}
+.user_img{
+ width:140rpx;
+ height:140rpx;
+ border-radius:50%;
+ overflow:hidden;
+ margin:0 auto;
+}
+.user_word{
+ width:40%;
+ height:80rpx;
+}
+.user_name{
+ font-size:34rpx;
+ color:#fff;
+}
+
+.phone{
+ font-size:20rpx;
+ color:#fff;
+}
+.sign_up{
+
+ font-size:24rpx;
+ width:42rpx;
+ height:42rpx;
+ text-align:center;
+ line-height:42rpx;
+ background:#fff;
+ border-radius:50%;}
+.sign_up text{
+ font-size:24rpx;
+ color:#2988c8;
+}
+.consult{
+height:42rpx;
+line-height:42rpx;
+}
+.consult image{width:38rpx;height:40rpx;}
+#user{background:#f5f5f5;oerflow:hidden;padding-top:12rpx;}
+.user_credit{
+ width:50%;
+ text-align:center;
+ padding:14rpx 0px;
+}
+.user_two{
+ background:#fff;
+ font-size:26rpx;
+ color:#333;
+ padding: 30rpx 0rpx;
+}
+.user_collect{border-right:solid 1px #dcdcdc;}
+.order{
+ margin-top:12rpx;
+ padding:0rpx 30rpx;
+ overflow:hidden;
+ background:#fff;
+ border-bottom:solid 1px #dcdcdc;}
+.user_order{
+ height:96rpx;
+ align-items:center;
+ line-height:96rpx;
+}
+.order_left{
+ font-size:30rpx;
+ color:#333;
+ align-items:center;
+}
+.order_left image{
+ width:28rpx;
+ height:32rpx;
+
+ margin-right:16rpx;
+}
+.check_order image{
+ width:11rpx;
+ height:20rpx;
+ margin-left:8rpx;
+ margin-top:38rpx;
+}
+.check_order{
+ font-size:24rpx;
+ color:#333;
+}
+.process{
+ padding:26px 0;
+ background:#fff;
+}
+.peocess_item {
+ text-align:center;
+ width:25%;
+}
+.peocess_item image{
+ width:40rpx;
+ height:40rpx;}
+.item_other image{
+ width:50rpx;
+}
+.peocess_item text{color:#666;font-size:26rpx;display:block;}
+.user_left{
+ align-items:center;
+}
+.user_left image{
+ width:30rpx;
+ height:32rpx;
+ margin-right:12rpx;
+}
+.user_infor{
+ padding:0rpx 32rpx;
+ height:96rpx;
+ line-height:96rpx;
+ font-size:30rpx;
+ color:#333;
+ background:#fff;
+ border-bottom:solid 1px #dcdcdc;
+ align-items:center;
+ }
+.next_page image{
+ width:11rpx;
+ height:20rpx;
+}
+.user_all{
+ background:#fff;
+ margin-top:12rpx;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/about/about.js b/LL/company1-master/pages/about/about.js
new file mode 100644
index 0000000..1043c8d
--- /dev/null
+++ b/LL/company1-master/pages/about/about.js
@@ -0,0 +1,31 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ tapCurrent:0,
+ },
+
+ onLoad: function () {
+ this.setData({
+ fonts:app.globalData.font
+ })
+ },
+ userInfo:function(){
+ wx.navigateTo({
+ url:'/pages/userInfo/userInfo'
+ })
+ },
+ bindDateChange: function(e) {
+ this.setData({
+ date: e.detail.value
+ })
+ },
+ discount:function(e){
+ var current=e.currentTarget.dataset.current;
+ this.setData({
+ tapCurrent:current
+ })
+ }
+})
diff --git a/LL/company1-master/pages/about/about.json b/LL/company1-master/pages/about/about.json
new file mode 100644
index 0000000..d512d21
--- /dev/null
+++ b/LL/company1-master/pages/about/about.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "关于我们"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/about/about.wxml b/LL/company1-master/pages/about/about.wxml
new file mode 100644
index 0000000..cfaac18
--- /dev/null
+++ b/LL/company1-master/pages/about/about.wxml
@@ -0,0 +1,37 @@
+
+
+
+
+
+
+ 盼成图书销售,竭力为您提供最优质的服务
+
+
+
\ No newline at end of file
diff --git a/LL/company1-master/pages/about/about.wxss b/LL/company1-master/pages/about/about.wxss
new file mode 100644
index 0000000..f0f8aa2
--- /dev/null
+++ b/LL/company1-master/pages/about/about.wxss
@@ -0,0 +1,71 @@
+/**about.wxss**/
+.about_banner image{
+ width:100%;
+ height:252rpx;
+}
+.introduce{
+ font-size:28rpx;
+ color:#262626;
+}
+#about{
+ padding:0rpx 25rpx;
+ margin:42rpx 0rpx 50rpx;
+}
+.news_left{
+ width:59%;
+ overflow:hidden;
+ height:170rpx;
+ overflow:hidden;
+}
+.news_right{
+ width:41%;
+ text-align:right;
+ overflow:hidden;
+ height:170rpx;
+ overflow:hidden;
+}
+.service_tlt{
+ position:relative;
+ left:24rpx;
+ margin-bottom:26rpx;}
+.service_tlt image{
+ width:154rpx;
+ height:40rpx;}
+.service_tlt .text1{
+ position:absolute;
+ left:24rpx;
+ top:0rpx;
+ font-size:30rpx;
+ color:#fff;
+ }
+.news_list{
+ padding:32rpx 25rpx 28rpx;
+ border-bottom:solid 1px #ececec;
+ align-items:center;
+ height:160rpx;
+ overflow:hidden;
+}
+.news_cont{
+ font-size:26rpx;
+ color:#262626;
+ height:68%;
+ width:100%;
+ overflow:hidden;
+}
+.news_time{
+ font-size:22rpx;
+ color:#808080;
+ height:32%;
+ align-items:center;
+ overflow:hidden;
+}
+.news_data{
+ margin-left:18rpx;
+}
+.news_right image{
+ width:200rpx;
+ height:160rpx;
+}
+#news_cont{
+ border-top:solid 1px #ececec;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/commentOrder/commentOrder.js b/LL/company1-master/pages/commentOrder/commentOrder.js
new file mode 100644
index 0000000..0487bbe
--- /dev/null
+++ b/LL/company1-master/pages/commentOrder/commentOrder.js
@@ -0,0 +1,25 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ currentTap:0,
+
+ },
+
+ onLoad: function () {
+
+ },
+ order_status:function(e){
+ var current = e.currentTarget.dataset.current
+ this.setData({
+ currentTap:current
+ })
+ },
+ backOrder:function(){
+ wx.navigateTo({
+ url:'/pages/order/order'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/commentOrder/commentOrder.json b/LL/company1-master/pages/commentOrder/commentOrder.json
new file mode 100644
index 0000000..85457b5
--- /dev/null
+++ b/LL/company1-master/pages/commentOrder/commentOrder.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "评论订单"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/commentOrder/commentOrder.wxml b/LL/company1-master/pages/commentOrder/commentOrder.wxml
new file mode 100644
index 0000000..a3c4e81
--- /dev/null
+++ b/LL/company1-master/pages/commentOrder/commentOrder.wxml
@@ -0,0 +1,36 @@
+
+
+
+
+ 提交
+
\ No newline at end of file
diff --git a/LL/company1-master/pages/commentOrder/commentOrder.wxss b/LL/company1-master/pages/commentOrder/commentOrder.wxss
new file mode 100644
index 0000000..ab94358
--- /dev/null
+++ b/LL/company1-master/pages/commentOrder/commentOrder.wxss
@@ -0,0 +1,59 @@
+/**index.wxss**/
+
+#comment{
+ padding:0rpx 25rpx;
+}
+.orderlistShow{
+ padding:42rpx 0rpx 32rpx;
+ border-bottom:solid 1rpx #ececec;
+}
+.orderlistShow image{
+ width:160rpx;
+ height:160rpx;
+ margin-right:25rpx;}
+.order_name{width:520rpx;}
+.order_name .text1{
+ font-size:32rpx;
+}
+.orders{
+ font-size:28rpx;
+ color:#808080;
+ margin-top:90rpx;
+}
+.order_price{
+ color:#21c3d4;
+ font-size:32rpx;
+}
+.order_type{
+ width:340rpx;
+}
+.total_money{
+ font-size:28rpx;
+ color:#666;
+}
+.total_money .text2{
+ font-size:28rpx;
+ color:#21c3d4;
+ margin-left:10rpx;
+ font-weight:bold;
+}
+.write_comment{
+ margin-top:46rpx;
+}
+.write_comment text{
+ font-size:32rpx;
+ color:#333;
+}
+.write_comment textarea{
+ width:660rpx;
+ height:310rpx;
+ padding:35rpx 20rpx;
+ border-radius:10rpx;
+ background:#f2f2f2;
+ font-size:28rpx;
+ color:#999;
+ margin-top:38rpx;
+}
+.submit_info{
+ margin-top:70rpx;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/confirmOrder/confirmOrder.js b/LL/company1-master/pages/confirmOrder/confirmOrder.js
new file mode 100644
index 0000000..28579f2
--- /dev/null
+++ b/LL/company1-master/pages/confirmOrder/confirmOrder.js
@@ -0,0 +1,32 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ currentTap:0,
+
+ },
+
+ onLoad: function () {
+ this.setData({
+ fonts:app.globalData.font
+ })
+ },
+ order_status:function(e){
+ var current = e.currentTarget.dataset.current
+ this.setData({
+ currentTap:current
+ })
+ },
+ commentOrder:function(){
+ wx.navigateTo({
+ url:'/pages/commentOrder/commentOrder'
+ })
+ },
+ manageAddress:function(){
+ wx.navigateTo({
+ url:'/pages/manageAddress/manageAddress'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/confirmOrder/confirmOrder.json b/LL/company1-master/pages/confirmOrder/confirmOrder.json
new file mode 100644
index 0000000..544e7bb
--- /dev/null
+++ b/LL/company1-master/pages/confirmOrder/confirmOrder.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "我的订单"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/confirmOrder/confirmOrder.wxml b/LL/company1-master/pages/confirmOrder/confirmOrder.wxml
new file mode 100644
index 0000000..e8c53ca
--- /dev/null
+++ b/LL/company1-master/pages/confirmOrder/confirmOrder.wxml
@@ -0,0 +1,75 @@
+
+
+
+
+
+
+ 收货人:
+ 米桃子
+
+
+ 18888888888
+
+
+
+
+
+
+
+ 收货地址:陕西省西安市高新大都荟
+
+
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)高端网站建设(含小程序)高端网站建设(含小程序)
+ 个性化定制
+
+ ¥4999
+ X1
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+ 个性化定制
+
+ ¥4999
+ X1
+
+
+
+
+
+
+
+ 买家留言
+
+
+
+
+
diff --git a/LL/company1-master/pages/confirmOrder/confirmOrder.wxss b/LL/company1-master/pages/confirmOrder/confirmOrder.wxss
new file mode 100644
index 0000000..e167c61
--- /dev/null
+++ b/LL/company1-master/pages/confirmOrder/confirmOrder.wxss
@@ -0,0 +1,138 @@
+/**index.wxss**/
+#confirmOrder{
+ width:100%;
+ height:100%;
+ background:#f5f5f5;
+}
+.order_list{padding:0rpx 25rpx;background:#fff;}
+.order_user{
+ padding:0px 13%;
+ font-size:32rpx;
+ color:#262626;
+ height:90rpx;
+ line-height:90rpx;
+ background:#fff;
+ width:74%;
+}
+.order_confirm .orderlistShow{
+ width:100%;
+ height:160rpx;
+ padding:42rpx 0rpx 32rpx;
+ border-bottom:solid 1rpx #ececec;
+ align-items:center;
+}
+.order_confirm image{
+ width:160rpx;
+ height:160rpx;}
+.user_address{
+ padding:0px 25rpx 30rpx;
+ border-bottom:solid 1px #ececec;
+ background:#fff;
+}
+.user_address .address_icon{
+ width:30rpx;
+ height:31rpx;
+}
+.next_page image{
+ width:11rpx;
+ height:24rpx;
+ text-align:right
+}
+.detail_address{
+ font-size:24rpx;
+ color:#262626;
+ overflow:hidden;
+}
+.img_left{width:26%;}
+.order_name{
+ width:74%;
+ align-items:center;
+ overflow:hidden;
+ }
+.order_name .text1{
+ font-size:28rpx;
+ color:#262626;
+ width:100%;
+ overflow:hidden;
+}
+
+.order_price{
+ color:#21c3d4;
+ font-size:32rpx;
+}
+.order_type{
+ font-size:24rpx;
+ color:#808080;
+ line-height:50rpx;
+}
+.total_money{
+ font-size:28rpx;
+ color:#666;
+}
+.total_money .text2{
+ font-size:28rpx;
+ color:#21c3d4;
+ margin-left:10rpx;
+ font-weight:bold;
+}
+.order_number{
+ color:#6f6f6f;
+ font-size:26rpx;
+}
+.user_message{
+ background:#fff;
+ padding:52rpx 25rpx;
+ overflow:hidden;
+ border-bottom:solid 1px #ececec;
+ align-items:center;
+}
+.text1{
+ font-size:28rpx;
+ color:#262626;}
+textarea{
+ width:580rpx;
+ height:30rpx;
+ font-size:28rpx;
+ color:#999;
+}
+.pay_footer{
+ height:90rpx;
+ border-top:solid 1px #ececec;
+ position:absolute;
+ bottom:0rpx;
+ width:100%;
+}
+.pay_order{
+
+
+}
+.total_money{
+ color:#21c3d4;
+ font-size:28rpx;}
+.total_money .text2{
+ font-weight:bold;
+}
+.submit_order{
+ width:35%;
+ height:90rpx;
+ background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));
+
+ font-size:28rpx;
+ line-height:90rpx;
+ text-align:center;
+ color:#fff;
+}
+
+
+.total_money .text2{margin-left:30rpx;}
+.price_note{
+
+ font-size:16rpx;
+ color:#6f6f6f;}
+textarea{
+ position:none;
+}
+.recive{
+ width:100%;
+ align-items:center;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/detail/detail.js b/LL/company1-master/pages/detail/detail.js
new file mode 100644
index 0000000..a4144de
--- /dev/null
+++ b/LL/company1-master/pages/detail/detail.js
@@ -0,0 +1,54 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ tabCurrent:0,
+ isShow:false,
+ chooseType:0,
+ chooseType1:0,
+ },
+
+ onLoad: function () {
+ this.setData({
+ fonts:app.globalData.font
+ })
+ },
+ userInfo:function(){
+ wx.navigateTo({
+ url:'/pages/userInfo/userInfo'
+ })
+ },
+
+ select_this:function(e){
+ var current= e.currentTarget.dataset.current;
+ this.setData({
+ tabCurrent:current
+ })
+ },
+ goBuy:function(){
+ var isShow = !this.data.isShow;
+ this.setData({
+ isShow:isShow
+ })
+ },
+ close:function(){
+ this.setData({
+ isShow:false
+ })
+ },
+ chooseType:function(e){
+ var chooseType = e.currentTarget.dataset.type;
+ this.setData({
+ chooseType:chooseType
+ })
+ },
+ chooseType1:function(e){
+ var chooseType1 = e.currentTarget.dataset.type;
+ this.setData({
+ chooseType1:chooseType1
+ })
+
+ }
+})
diff --git a/LL/company1-master/pages/detail/detail.json b/LL/company1-master/pages/detail/detail.json
new file mode 100644
index 0000000..b5778ad
--- /dev/null
+++ b/LL/company1-master/pages/detail/detail.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "商品详情"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/detail/detail.wxml b/LL/company1-master/pages/detail/detail.wxml
new file mode 100644
index 0000000..891919d
--- /dev/null
+++ b/LL/company1-master/pages/detail/detail.wxml
@@ -0,0 +1,213 @@
+
+
+
+
+
+
+
+
+
+ 网站开发高端定制网站开发高端定制网站开发高端定制网站开发高端定制网站开发高端定制网站开发高端定制x
+
+
+
+
+
+
+ 【售后保障1】【售后保障1】
+
+
+
+ ¥5000.00元
+
+
+ 销量2888笔
+
+
+
+
+
+ 请选择
+ 基本展示 基本展示
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 客服
+
+
+
+ 收藏
+
+
+
+ 加入购物车
+
+
+ 立即购买
+
+
+
+
+
+
+
+
+
+
+ 公众号管理
+
+ 个性化定制
+
+
+ ¥3999
+
+
+
+
+
+
+
+
+ 类型
+
+
+ 模板
+
+
+ 定制
+
+
+
+
+ 售后
+
+
+ 有
+
+
+ 无
+
+
+
+
+ 数量
+
+
+ -
+ 1
+ +
+
+
+
+
+
+
diff --git a/LL/company1-master/pages/detail/detail.wxss b/LL/company1-master/pages/detail/detail.wxss
new file mode 100644
index 0000000..ad664d2
--- /dev/null
+++ b/LL/company1-master/pages/detail/detail.wxss
@@ -0,0 +1,319 @@
+/**detail.wxss**/
+.banner image{
+ width:100%;
+ height:420rpx;
+}
+.product_name{
+ font-size:32rpx;
+}
+.product_top{
+ padding:20rpx 35rpx 35rpx;
+ border-bottom:solid 1px #ececec;
+}
+.name_share image{
+ width:35rpx;
+ height:35rpx;
+
+}
+.name_share{
+ height:40rpx;
+ line-height:40rpx;
+}
+.guarantee{
+ width:265rpx;
+ font-size:20rpx;
+ color:#999;
+ margin:20rpx 0rpx 35rpx;
+}
+.price{
+ font-size:30rpx;
+ color:#21c3d4;
+}
+.sale{
+ font-size:26rpx;
+ color:#5b5b5b;
+ padding-top:5rpx;
+}
+.next_page image{
+ width:11rpx;
+ height:20rpx;
+}
+.choose{
+ padding:0rpx 35rpx;
+ height:64rpx;
+ line-height:64rpx;
+ border-bottom:solid 1px #ececec;
+}
+.choose_left text{
+ font-size:22rpx;
+ margin-right:16rpx;
+}
+.choose_left .text1{
+ margin-right:40rpx;
+ color:#999;
+}
+.choose_left input{
+font-size:22rpx;
+color:#262626;
+height:62rpx;
+line-height:62rpx;}
+.detail_comment{
+ font-size:24rpx;
+ color:#a1a1a1;
+ height:78rpx;
+ line-height:78rpx;
+ border-bottom:solid 1px #ececec;
+}
+.detail_select{
+ color:#21c3d4;
+}
+.detail_comment .detail{
+ width:50%;
+ text-align:center;}
+.comment{
+ border-left:solid 1px #ececec;
+ width:50%;text-align:center;}
+#detail image{
+ width:550rpx;
+ height:354rpx;
+ margin:60rpx auto 40rpx auto;
+}
+#detail{
+ text-align:center;
+}
+.good_percent image{
+ width:11rpx;
+ height:20rpx;
+}
+.good_com{
+ font-size:24rpx;
+ color:#3e3e3e;
+ padding:0rpx 35rpx;
+ height:68rpx;
+ line-height:68rpx;
+ border-bottom:solid 1px #ecece;}
+.percent{color:#ffb040;margin:0rpx 20rpx 0rpx 10rpx;}
+.comment_user image{
+ width:68rpx;
+ height:68rpx;
+ border-radius:50%;
+ margin-right:10rpx;
+ float:left;
+}
+.user_img{
+ height:68rpx;
+}
+.comment_list{
+ padding:22rpx 35rpx 14rpx;
+ border-bottom:solid 1px #ececec;
+ overflow:hihdden;
+}
+.star image{
+ width:15rpx;
+ height:15rpx;
+ margin-left:8rpx;
+
+}
+.comment_list{
+}
+.comment_user .text1{
+ font-size:24rpx;
+ color:#262626;
+}
+.comment_user .text2{
+ font-size:18rpx;
+ color:#808080;
+ display:block;
+}
+.comment_cont{
+ font-size:22rpx;
+ color:#696969;
+ margin-top:20rpx;}
+#buy{
+ border-top:solid 1px #ececec;
+ height:120rpx;
+ position:fixed;
+ bottom:0rpx;
+ overflow:hidden;
+ background:#fff;
+ z-index:999;
+ width:100%;
+ align-items:center;
+}
+.buy_click{
+ display:flex;
+ justify-content:center;
+ height:120rpx;
+ align-items:center;
+}
+.consult{
+ width:15%;
+ text-align:center;
+}
+.consult image{
+ width:35rpx;
+ height:34rpx;
+}
+.consult .text1{
+ font-size:18rpx;
+ color:#626262;
+}
+.go_buy{
+ width:66%;
+ margin-right:4%;
+ height:70rpx;
+ line-height:70rpx;
+ color:#fff;
+ font-size:28rpx;
+ font-weight:bold;
+ background:#fff;
+ border-radius:30rpx;
+ overflow:hidden;
+}
+.shoppingCart{
+ width:50%;
+
+ background:#49e3de;
+ text-align:center;
+ }
+.go_pay{
+ width:50%;
+
+ background:#2c9fe1;
+ text-align:center;
+
+}
+
+.mask{
+ position:absolute;
+ top:0rpx;
+ width:100%;
+ height:100%;
+ background:rgba(0,0,0,0.4);
+ transition:all 1s;
+}
+
+#details{
+ position:relative;
+ margin-bottom:120rpx;
+}
+#choose{
+ height:566rpx;
+ width:704rpx;
+ position:fixed;
+ bottom:-100rpx;
+ padding:32rpx 25rpx;
+ background:#fff;
+ z-index:99;
+}
+.sildeIn{
+ transition:all 1s;
+ transform:translateY(-120rpx);
+
+}
+.slideOut{
+ transition:all 1s;
+ transform:translateY(450rpx);
+
+}
+.pricity{
+ margin-bottom:55rpx;
+ width:100%;
+ height:135rpx;
+}
+.choose_pro{
+ width:25%;
+ height:
+}
+.choose_pro image{
+ width:160rpx;
+ height:135rpx;
+}
+.close{
+ width:10%;
+ text-align:right;
+}
+.close image{
+ width:34rpx;
+ height:34rpx;
+}
+.pro_name{
+ font-size:28rpx;
+ color:#333;
+}
+.pro_type{
+ font-size:22rpx;
+ color:#999;
+}
+.price_choose{
+ font-size:28rpx;
+ color:#21c3d4;
+}
+.product_txt{width:65%;}
+#type{
+ height:60rpx;
+ margin-bottom:28rpx;
+ width:350rpx;
+ align-items:center;
+}
+.pro_type{
+ font-size:26rpx;
+ color:#666;
+}
+.pro_types{
+ width:108rpx;
+ height:60rpx;
+ line-height:60rpx;
+ text-align:center;
+ font-size:28rpx;
+ color:#666;
+ background:#f7f7f7;
+ border-radius:3rpx;
+}
+.choose_number{
+ height:126rpx;
+ align-items:center;
+}
+.number_txt{
+ font-size:30rpx;
+ color:#444;
+}
+
+.edit_number{
+ width:166rpx;
+ height:50rpx;
+ line-height:52rpx;
+ border:solid 1px #e5e5e5;
+ font-size:20rpx;
+}
+.edit_number .minus,.edit_number .add{
+ width:50rpx;
+ text-align:center;
+ color:#aeaeae;
+ font-size:40rpx;
+ border-right:solid 1px #e5e5e5;
+ background:#e8e9e9;
+}
+.number{
+ width:72rpx;
+ text-align:center;
+ color:#878787;
+ border-right:solid 1px #e5e5e5;
+ }
+.video{
+ width:624rpx;
+ height:350rpx;
+ margin:0rpx auto 200rpx;
+ z-index:0;
+ overflow:hidden;
+ position:relative;
+}
+video{
+ width:624rpx;
+ height:350rpx;
+ margin:0rpx auto 200rpx;
+ z-index:0;
+ position:absolute;
+ top:0rpx;
+ left:0rpx;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/manageAddress/manageAddress.js b/LL/company1-master/pages/manageAddress/manageAddress.js
new file mode 100644
index 0000000..bf21055
--- /dev/null
+++ b/LL/company1-master/pages/manageAddress/manageAddress.js
@@ -0,0 +1,34 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ tapCurrent:0,
+ },
+
+ onLoad: function () {
+
+ },
+ userInfo:function(){
+ wx.navigateTo({
+ url:'/pages/userInfo/userInfo'
+ })
+ },
+ bindDateChange: function(e) {
+ this.setData({
+ date: e.detail.value
+ })
+ },
+ discount:function(e){
+ var current=e.currentTarget.dataset.current;
+ this.setData({
+ tapCurrent:current
+ })
+ },
+ newAddress:function(){
+ wx.navigateTo({
+ url:'/pages/newAddress/newAddress'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/manageAddress/manageAddress.json b/LL/company1-master/pages/manageAddress/manageAddress.json
new file mode 100644
index 0000000..1d7d662
--- /dev/null
+++ b/LL/company1-master/pages/manageAddress/manageAddress.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "管理收货地址"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/manageAddress/manageAddress.wxml b/LL/company1-master/pages/manageAddress/manageAddress.wxml
new file mode 100644
index 0000000..96f5cbd
--- /dev/null
+++ b/LL/company1-master/pages/manageAddress/manageAddress.wxml
@@ -0,0 +1,60 @@
+
+
+
+
+
+ 李雷
+
+
+ 科技路高新大都荟
+
+
+
+ 18888888888
+
+
+
+
+
+ 默认地址
+
+
+
+ 编辑
+
+
+
+ 删除
+
+
+
+
+
+ 李雷
+
+
+ 科技路高新大都荟
+
+
+
+ 18888888888
+
+
+
+
+
+ 设为默认地址
+
+
+
+ 编辑
+
+
+
+ 删除
+
+
+
+ 添加新地址
+
+
diff --git a/LL/company1-master/pages/manageAddress/manageAddress.wxss b/LL/company1-master/pages/manageAddress/manageAddress.wxss
new file mode 100644
index 0000000..c0ec95c
--- /dev/null
+++ b/LL/company1-master/pages/manageAddress/manageAddress.wxss
@@ -0,0 +1,52 @@
+/**index.wxss**/
+#address{
+ width:100%;
+ height:100%;
+ background:#f5f5f5}
+.address_item{
+ border-bottom:solid 1px #ececec;
+ padding:40rpx 25rpx;
+ background:#fff;
+}
+.address_left .text1{
+ color:#262626;
+ font-size:34rpx;}
+.text_other{
+ margin-top:30rpx;
+}
+.address_right{
+ font-size:30rpx;
+ color:#262626;
+}
+.address_set{
+ padding:20px 25rpx;
+ border-bottom:solid 1px #ececec;
+ background:#fff;
+ justify-content:center;
+ }
+.address_set text{font-size:24rpx;}
+.address_set .default{
+ color:#2c9fe1;
+ width:71%;
+ align-items:center;
+ height:30rpx;
+ display:flex;
+ align-items:center;
+ }
+.address_set .default image{
+ margin-right:15px;
+ width:29rpx;
+ height:29rpx;}
+.address_set .edit image{
+ width:26rpx;
+ height:26rpx;
+ margin-right:10rpx;
+}
+.edit{color:#7d7d7d;width:15%;display:flex;
+ align-items:center;}
+.de_color{color:#7d7d7d}
+.submit_info{
+margin-top:0rpx;
+ position:absolute;
+ bottom:120rpx;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/newAddress/newAddress.js b/LL/company1-master/pages/newAddress/newAddress.js
new file mode 100644
index 0000000..a4aaa32
--- /dev/null
+++ b/LL/company1-master/pages/newAddress/newAddress.js
@@ -0,0 +1,43 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ tapCurrent:0,
+ region: ['广东省', '广州市', '海珠区'],
+ },
+
+ onLoad: function () {
+
+ },
+ userInfo:function(){
+ wx.navigateTo({
+ url:'/pages/userInfo/userInfo'
+ })
+ },
+ backAddress:function(){
+ wx.navigateTo({
+ url:'/pages/manageAddress/manageAddress'
+ })
+ },
+ bindDateChange: function(e) {
+ this.setData({
+ date: e.detail.value
+ })
+ },
+ discount:function(e){
+ var current=e.currentTarget.dataset.current;
+ this.setData({
+ tapCurrent:current
+ })
+ },
+ bindDateChange: function(e) {
+ this.setData({
+ region: e.detail.value
+ })
+ },
+ switch2Change: function (e){
+
+ },
+})
diff --git a/LL/company1-master/pages/newAddress/newAddress.json b/LL/company1-master/pages/newAddress/newAddress.json
new file mode 100644
index 0000000..5e84ba0
--- /dev/null
+++ b/LL/company1-master/pages/newAddress/newAddress.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "新建收货地址"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/newAddress/newAddress.wxml b/LL/company1-master/pages/newAddress/newAddress.wxml
new file mode 100644
index 0000000..ab81a7f
--- /dev/null
+++ b/LL/company1-master/pages/newAddress/newAddress.wxml
@@ -0,0 +1,45 @@
+
+
+
+ 收货人:
+
+
+
+
+
+ 手机号码:
+
+
+ +86
+
+
+
+
+
+
+ 所在地区:
+
+
+ {{region[0]}},{{region[1]}},{{region[2]}}
+
+
+
+
+
+
+
+
+ 详细地址:
+
+
+
+
+ 设为默认地址
+
+
+
+
+
+ 保存
+
+
diff --git a/LL/company1-master/pages/newAddress/newAddress.wxss b/LL/company1-master/pages/newAddress/newAddress.wxss
new file mode 100644
index 0000000..5eb1863
--- /dev/null
+++ b/LL/company1-master/pages/newAddress/newAddress.wxss
@@ -0,0 +1,34 @@
+/**index.wxss**/
+.input_note{width:23%;
+ color:#363636;
+ font-size:32rpx;
+}
+.users_detail{
+ width:100%;
+ align-items:center;
+}
+.user_input{
+ height:90rpx;
+ line-height:90rpx;
+ border-bottom:solid 1px #e0e0e0;
+ padding:0px 25rpx;
+ align-items:center;
+ }
+.user_input input{
+ height:32rpx;
+ line-height:32rpx;
+ color:#b2b2b2;
+ font-size:30rpx;
+ width:77%;
+}
+.user_input image{
+ width:11rpx;
+ height:20rpx;
+}
+.address_right text{color:#b2b2b2;font-size:28rpx;}
+.address_right image{margin-left:15rpx;}
+.address_set{width:200rpx;}
+.submit_info{
+ position:absolute;
+ bottom:280rpx;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/order/order.js b/LL/company1-master/pages/order/order.js
new file mode 100644
index 0000000..327592d
--- /dev/null
+++ b/LL/company1-master/pages/order/order.js
@@ -0,0 +1,25 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ currentTap:0,
+
+ },
+
+ onLoad: function () {
+
+ },
+ order_status:function(e){
+ var current = e.currentTarget.dataset.current
+ this.setData({
+ currentTap:current
+ })
+ },
+ commentOrder:function(){
+ wx.navigateTo({
+ url:'/pages/commentOrder/commentOrder'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/order/order.json b/LL/company1-master/pages/order/order.json
new file mode 100644
index 0000000..544e7bb
--- /dev/null
+++ b/LL/company1-master/pages/order/order.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "我的订单"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/order/order.wxml b/LL/company1-master/pages/order/order.wxml
new file mode 100644
index 0000000..09eed12
--- /dev/null
+++ b/LL/company1-master/pages/order/order.wxml
@@ -0,0 +1,501 @@
+
+
+
+ 全部
+
+
+ 待付款
+
+
+ 待服务
+
+
+ 服务中
+
+
+ 待评价
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
+ 交易时间:
+ 2018-9-9
+
+
+ 等待商家付款
+
+
+
+
+
+
+
+
+
+
+ 高端网站建设(含小程序)
+
+ X1
+ 一对一vip定制
+ ¥3999
+
+
+
+
+
+
+
+
+ 合计:
+ ¥3999
+
+
+ (优惠券:-¥10.00)
+
+
+
+
+
+ 删除订单
+ 去评价
+
+
+
+
+
+
diff --git a/LL/company1-master/pages/order/order.wxss b/LL/company1-master/pages/order/order.wxss
new file mode 100644
index 0000000..cf44ebd
--- /dev/null
+++ b/LL/company1-master/pages/order/order.wxss
@@ -0,0 +1,125 @@
+/**index.wxss**/
+page{
+ width:100%;
+ height:100vh;
+ background:#f5f5f5;
+}
+.order_sort{
+ padding:0rpx 25rpx;
+ border-bottom:solid 1px #ececec;
+ height:87rpx;
+ line-height:84rpx;
+ background:#fff;}
+.order_item{
+ font-size:32rpx;
+ color:#333;
+}
+.order_this{
+ color:#21c3d4;
+ border-bottom:solid 3rpx #21c3d4;
+}
+.all_select image{
+ width:30rpx;
+ height:30rpx;
+}
+.order_left{width:26%;
+ text-align:left;
+}
+.order_all{
+ display:none;
+}
+.order_show{
+ display:block;
+}
+.order_list{
+
+ }
+.order_all .orderlistShow{
+ width:100%;
+ height:200rpx;
+
+ align-items:center;
+}
+.same_stroe{
+ padding:0rpx 25rpx;
+ overflow:hidden;
+ border-bottom:solid 1rpx #fff;
+}
+.order_tlt{
+ height:75rpx;
+ line-height:75rpx;
+ background:#fff;
+ font-size:28rpx;
+ padding:0rpx 25rpx;
+}
+.tlt_left{
+ color:#666;
+}
+.handle{
+ background:#fff;overflow:hidden;padding-bottom:30rpx;
+ margin-bottom:30rpx;
+ border-bottom:solid 1px #ececec;
+}
+.order_left image{
+ width:160rpx;
+ height:160rpx;
+}
+.order_name{
+ width:66%;
+ height:160rpx;
+ }
+.order_name .text1{
+ font-size:32rpx;
+ height:50%;
+
+}
+.orders{
+ height:50%;
+ align-items:center;
+ font-size:28rpx;
+ color:#808080;
+}
+.order_price{
+ color:#21c3d4;
+ font-size:32rpx;
+}
+.order_type{
+ width:340rpx;
+}
+.total_money{
+ font-size:28rpx;
+ color:#666;
+}
+.total_money .text2{
+ font-size:28rpx;
+ color:#21c3d4;
+ margin-left:10rpx;
+ font-weight:bold;
+}
+.user_discount{
+ color:#262626;
+ font-size:24rpx;
+}
+.total_order{
+ margin-top:16rpx;
+ wdith:475rpx;
+ float:right;
+ margin-right:15rpx;
+}
+.handle_order{
+ clear:both;
+ width:364rpx;
+ float:right;
+ margin-right:25rpx;
+ margin-top:20rpx;
+}
+.handle_orders{
+ width:138rpx;
+ height:50rpx;
+ border:solid 1px #aeaeae;
+ border-radius:10rpx;
+ text-align:center;
+ line-height:50rpx;
+ font-size:28rpx;
+ color:#636363;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.js b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.js
new file mode 100644
index 0000000..20b7d17
--- /dev/null
+++ b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.js
@@ -0,0 +1,26 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+ motto: 'Hello World',
+ userInfo: {},
+ hasUserInfo: false,
+ canIUse: wx.canIUse('button.open-type.getUserInfo')
+ },
+ //事件处理函数
+ bindViewTap: function() {
+ wx.navigateTo({
+ url: '../logs/logs'
+ })
+ },
+ onLoad: function () {
+
+ },
+ go_shopping:function(){
+ wx.switchTab({
+ url:'/pages/Sort/sort'
+ })
+ }
+})
diff --git a/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.json b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.json
new file mode 100644
index 0000000..15a72ea
--- /dev/null
+++ b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "购物车"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.wxml b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.wxml
new file mode 100644
index 0000000..8fe6e4d
--- /dev/null
+++ b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.wxml
@@ -0,0 +1,9 @@
+
+
+
+
+
+ 空空如也购物车没有任何商品
+ 去逛逛
+
+
diff --git a/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.wxss b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.wxss
new file mode 100644
index 0000000..0a6f79b
--- /dev/null
+++ b/LL/company1-master/pages/shoppingEmpty/shoppingEmpty.wxss
@@ -0,0 +1,34 @@
+/**index.wxss**/
+.shopping_cart{
+ width:228rpx;
+ height:228rpx;
+ background:#f2f2f2;
+ border-radius:50%;
+ line-heihgt:228rpx;
+ text-align:center;
+ margin:235rpx auto 0rpx;
+
+}
+.shopping_cart image{
+ width:103rpx;
+ height:96rpx;
+ margin-top:66rpx;
+}
+.note{
+ color:#808080;
+ font-size:32rpx;
+ margin-top:86rpx;
+ text-align:center;
+}
+.goShopping{
+ width:290rpx;
+ height:70rpx;
+ background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));
+ border-radius:20rpx;
+ text-align:center;
+ line-height:70rpx;
+ margin:0rpx auto;
+ color:#fff;
+ font-size:36rpx;
+ margin-top:48rpx;
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/userInfo/userInfo.js b/LL/company1-master/pages/userInfo/userInfo.js
new file mode 100644
index 0000000..8c777cf
--- /dev/null
+++ b/LL/company1-master/pages/userInfo/userInfo.js
@@ -0,0 +1,29 @@
+//index.js
+//获取应用实例
+const app = getApp()
+
+Page({
+ data: {
+
+ },
+
+ onLoad: function () {
+
+ },
+ userInfo:function(){
+ wx.navigateTo({
+ url:'/pages/userInfo/userInfo'
+ })
+ },
+ bindDateChange: function(e) {
+ this.setData({
+ date: e.detail.value
+ })
+ },
+ user:function(){
+ wx.switchTab({
+ url:'/pages/User/user'
+ })
+ }
+
+})
diff --git a/LL/company1-master/pages/userInfo/userInfo.json b/LL/company1-master/pages/userInfo/userInfo.json
new file mode 100644
index 0000000..eda21b7
--- /dev/null
+++ b/LL/company1-master/pages/userInfo/userInfo.json
@@ -0,0 +1,3 @@
+{
+ "navigationBarTitleText": "新建个人信息"
+}
\ No newline at end of file
diff --git a/LL/company1-master/pages/userInfo/userInfo.wxml b/LL/company1-master/pages/userInfo/userInfo.wxml
new file mode 100644
index 0000000..b391c32
--- /dev/null
+++ b/LL/company1-master/pages/userInfo/userInfo.wxml
@@ -0,0 +1,49 @@
+
+
+
+ 昵称:
+
+
+
+
+
+ 真实姓名:
+
+
+
+
+
+ 性别:
+
+
+
+
+
+ 出生日期:
+
+
+
+
+
+
+
+
+
+
+
+
+ 联系方式:
+
+
+
+
+
+ 住址:
+
+
+
+
+ 保存
+
+
+
diff --git a/LL/company1-master/pages/userInfo/userInfo.wxss b/LL/company1-master/pages/userInfo/userInfo.wxss
new file mode 100644
index 0000000..b9da068
--- /dev/null
+++ b/LL/company1-master/pages/userInfo/userInfo.wxss
@@ -0,0 +1,46 @@
+/**index.wxss**/
+.input_note{width:23%;
+ color:#363636;
+ font-size:32rpx;
+}
+.user_input{
+ height:90rpx;
+ line-height:90rpx;
+ border-bottom:solid 1px #e0e0e0;
+ padding:0px 25rpx;
+ align-items:center;
+ }
+.users_detail{
+ width:100%;
+ align-items:center;
+}
+.user_input input{
+ height:32rpx;
+ line-height:32rpx;
+ color:#b2b2b2;
+ font-size:30rpx;
+ width:77%;
+}
+.user_input image{
+ width:11rpx;
+ height:20rpx;
+ margin-top:35rpx;
+}
+.input_date{
+ font-size:32rpx;
+ color:#333;
+ margin-right:38rpx;
+}
+.submit_info{
+margin:0rpx 25rpx;
+width:700rpx;
+height:88rpx;
+line-height:88rpx;
+text-align:center;
+font-size:36rpx;
+color:#fff;
+background:linear-gradient(to right,rgba(72,222,223,1.00),rgba(42,154,225,1.00));
+border-radius:10rpx;margin-top:260rpx;}
+input{
+ font-family:''
+}
\ No newline at end of file
diff --git a/LL/company1-master/project.config.json b/LL/company1-master/project.config.json
new file mode 100644
index 0000000..1d8a556
--- /dev/null
+++ b/LL/company1-master/project.config.json
@@ -0,0 +1,119 @@
+{
+ "description": "项目配置文件。",
+ "packOptions": {
+ "ignore": []
+ },
+ "setting": {
+ "urlCheck": true,
+ "es6": true,
+ "postcss": true,
+ "minified": true,
+ "newFeature": true
+ },
+ "compileType": "miniprogram",
+ "libVersion": "2.2.0",
+ "appid": "wxd037e598f9fc428d",
+ "projectname": "cc",
+ "isGameTourist": false,
+ "condition": {
+ "search": {
+ "current": -1,
+ "list": []
+ },
+ "conversation": {
+ "current": -1,
+ "list": []
+ },
+ "plugin": {
+ "current": -1,
+ "list": []
+ },
+ "game": {
+ "currentL": -1,
+ "list": []
+ },
+ "miniprogram": {
+ "current": 12,
+ "list": [
+ {
+ "id": 0,
+ "name": "shopping",
+ "pathName": "pages/Shopping/shopping",
+ "query": ""
+ },
+ {
+ "id": 1,
+ "name": "order",
+ "pathName": "pages/order/order",
+ "query": ""
+ },
+ {
+ "id": 2,
+ "name": "user",
+ "pathName": "pages/User/user",
+ "query": ""
+ },
+ {
+ "id": 3,
+ "name": "1",
+ "pathName": "pages/detail/detail",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "index",
+ "pathName": "pages/Index/index",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "1",
+ "pathName": "pages/confirmOrder/confirmOrder",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "1",
+ "pathName": "pages/userInfo/userInfo",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "manne",
+ "pathName": "pages/manageAddress/manageAddress",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "sort",
+ "pathName": "pages/Sort/sort",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "datai",
+ "pathName": "pages/detail/detail",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "conf",
+ "pathName": "pages/confirmOrder/confirmOrder",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "userinfo",
+ "pathName": "pages/userInfo/userInfo",
+ "query": ""
+ },
+ {
+ "id": -1,
+ "name": "gg",
+ "pathName": "pages/gongzhonghao/gongzhonghao",
+ "query": ""
+ }
+ ]
+ }
+ }
+}
\ No newline at end of file
diff --git a/LL/company1-master/utils/util.js b/LL/company1-master/utils/util.js
new file mode 100644
index 0000000..dbadbb8
--- /dev/null
+++ b/LL/company1-master/utils/util.js
@@ -0,0 +1,19 @@
+const formatTime = date => {
+ const year = date.getFullYear()
+ const month = date.getMonth() + 1
+ const day = date.getDate()
+ const hour = date.getHours()
+ const minute = date.getMinutes()
+ const second = date.getSeconds()
+
+ return [year, month, day].map(formatNumber).join('/') + ' ' + [hour, minute, second].map(formatNumber).join(':')
+}
+
+const formatNumber = n => {
+ n = n.toString()
+ return n[1] ? n : '0' + n
+}
+
+module.exports = {
+ formatTime: formatTime
+}
diff --git a/江可飞/小程序开发/app.wxss b/江可飞/小程序开发/app.wxss
index 06c6fc9..1f0164d 100644
--- a/江可飞/小程序开发/app.wxss
+++ b/江可飞/小程序开发/app.wxss
@@ -1,4 +1,6 @@
/**app.wxss**/
+@import 'weui.wxss';
+@import "html-view/index.wxss";
.container {
height: 100%;
display: flex;
@@ -8,3 +10,11 @@
padding: 200rpx 0;
box-sizing: border-box;
}
+
+.containers {
+ height: 100%;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-between;
+ box-sizing: border-box;
+}
diff --git a/江可飞/小程序开发/html-view/each/default.js b/江可飞/小程序开发/html-view/each/default.js
new file mode 100644
index 0000000..604014b
--- /dev/null
+++ b/江可飞/小程序开发/html-view/each/default.js
@@ -0,0 +1,79 @@
+const html5Entities = require('../vendors/html5-entities')
+const { windowWidth } = wx.getSystemInfoSync()
+
+module.exports = item => {
+ // decode html entities
+ if (item.type === 'Text') {
+ item.content = html5Entities.decode(item.content)
+ return
+ }
+
+ //