diff --git a/image/chazhao/chazhao.js b/image/chazhao/chazhao.js new file mode 100644 index 0000000..0f9d2b7 --- /dev/null +++ b/image/chazhao/chazhao.js @@ -0,0 +1,60 @@ +Page({ + shujichzhao: function (e) { + var that = this + wx.request({ + url: 'http://localhost:9528/zxbook/find1', + + data: { + 'search': e.detail.value.search, + }, + header: { + "Content-Type": "pplication/json" + }, + methods: { + method: "POST", + }, + success: function (res) { + if(res.data=='zhaobudao'){ + wx.showModal({ + title: '书籍查询', + content: '未找到该书籍', + confirmColor: "rgba(253, 153, 65, 1)" + }) + } + + else{ + var book=res.data + let bookstr = JSON.stringify(book); + console.log(book); + wx.navigateTo({ + url: '../shuji/shuji?bookstr=' + bookstr, + }) + } + } + }) + }, + fenlei:function(e){ + wx.request({ + url: 'http://localhost:9527/zxbook/find2', + data:{ + 'search':e.target.id, + + + }, + + header: { + "Content-Type": "application/json" + }, + methods: { + method: "POST", + }, + + }) + console.log(e.target.id); + var book = res.data + let bookstr = JSON.stringify(book); + console.log(book); + + } + +}) \ No newline at end of file diff --git a/image/chazhao/chazhao.json b/image/chazhao/chazhao.json new file mode 100644 index 0000000..e8cfaaf --- /dev/null +++ b/image/chazhao/chazhao.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git a/image/chazhao/chazhao.wxml b/image/chazhao/chazhao.wxml new file mode 100644 index 0000000..bfa6fab --- /dev/null +++ b/image/chazhao/chazhao.wxml @@ -0,0 +1,33 @@ + +
+ + + + + + + + + +
+ + 分类 + + + + + + + + + + + + + + + + 猜你喜欢 + + + diff --git a/image/chazhao/chazhao.wxss b/image/chazhao/chazhao.wxss new file mode 100644 index 0000000..d1ba0fd --- /dev/null +++ b/image/chazhao/chazhao.wxss @@ -0,0 +1,96 @@ + +.search{ + width: 70%; + color: rgb(0,0,0); +} +.search_arr { + border: 1px solid #d0d0d0; + border-radius: 10rpx; + margin-left: 50rpx; + margin-top: 30rpx; +} +.search_arr input{ + margin-left: 60rpx; + height: 60rpx; + border-radius: 5px; + +} +.bc_text { + line-height: 68rpx; + height: 68rpx; + margin-top: 20rpx; +} + +.sousuo { + margin-left: 15rpx; + width: 15%; + line-height: 150%; + text-align: center; + border: 1px solid #d0d0d0; + border-radius: 10rpx; + margin-top: 20rpx; +} +.page_row{ + display: flex; + flex-direction: row +} +.searchcion { + margin: 10rpx 10rpx 10rpx 10rpx; + position: absolute; + left:50rpx; + z-index: 2; + width: 20px; + height: 20px; + text-align: center; + margin-top: 10rpx; +} +.button1{ + width: 20%; + height: 60rpx; + text-align: center; + align-items: center; + justify-content: center; + display: flex; + background-color:#fff; + color: black; + margin-top: 32rpx; +} +.button1::after +{ + border: 1px solid #000; +} +.button2{ + width: 40%; + height: 80rpx; + text-align:left; + align-items: center; + justify-content: center; + display: flex; + background-color:rgba(253, 153, 65, 1); + color: white; + margin-top: 50rpx; +} +.font{ + font-family: "方正圆体"; + margin-top: 40rpx; + margin-left: 10rpx; + font-size:100%; +} +.image1{ + width:40rpx; + height:40rpx; + margin-top: 57rpx; + margin-left: 5rpx; +} + + + + +page { + text-align:center; +} + + + + + diff --git a/image/denglu/denglu.js b/image/denglu/denglu.js new file mode 100644 index 0000000..9c5257b --- /dev/null +++ b/image/denglu/denglu.js @@ -0,0 +1,58 @@ +Page({ + formSubmit: function (e) { + wx.request({ + url: 'http://localhost:9528/zxlogin/login', + data: { + 'userid': e.detail.value.userid, + 'userpassword': e.detail.value.userpassword, + }, + header: { + "Content-Type": "application/x-www-form-urlencoded" + }, + + methods: { + method: "POST", + }, + success: function (res) { + var user = res.data + let userstr = JSON.stringify(user); + + if (res.data == "100") { + wx.showModal({ + title: '登录消息', + content: '密码错误', + confirmColor: "rgba(253, 153, 65, 1)" + }) + } + + else if (res.data == "001") { + wx.showModal({ + title: '登录消息', + content: '用户名不存在', + confirmColor: "rgba(253, 153, 65, 1)" + }) + } + else { + wx.showModal({ + title: '登录消息', + content: '登录成功', + confirmColor: "rgba(253, 153, 65, 1)", + + success: function (res) { + wx.setStorageSync('userstr', userstr) + console.log(wx.getStorageSync('userstr')); + + + if (res.confirm) { + wx.switchTab({ + url: '../shouye/shouye', + }) + } + } + }) + } + } + }) + + } +}) \ No newline at end of file diff --git a/image/denglu/denglu.json b/image/denglu/denglu.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/image/denglu/denglu.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/image/denglu/denglu.wxml b/image/denglu/denglu.wxml new file mode 100644 index 0000000..1e66bca --- /dev/null +++ b/image/denglu/denglu.wxml @@ -0,0 +1,33 @@ +
+ + + + +
+ + diff --git a/image/denglu/denglu.wxss b/image/denglu/denglu.wxss new file mode 100644 index 0000000..7da8b31 --- /dev/null +++ b/image/denglu/denglu.wxss @@ -0,0 +1,82 @@ +page{ + height: 100%; +} + +.container { + height: 100%; + display: flex; + flex-direction: column; + padding: 0; + box-sizing: border-box; + background-color: #f2f2f2 +} + +/*登录图片*/ +.login-icon{ + flex: none; +} +.login-img{ + width: 750rpx; +} + +/*表单内容*/ +.login-from { + margin-top: 20px; + flex: auto; + height:100%; +} + +.inputView { + background-color: #fff; + line-height: 44px; +} +/*输入框*/ +.nameImage, .keyImage { + margin-left: 42px; + width: 14px; + height: 14px +} + +.loginLab { + margin: 15px 15px 15px 10px; + color: #545454; + font-size: 14px +} +.inputText { + flex: block; + float: right; + text-align: right; + margin-right: 22px; + margin-top: 11px; + width: 290px; + + color: #000; + + font-size: 14px; +} + +.line { + width: 100%; + height: 1px; + background-color: #cccccc; + margin-top: 1px; +} +/*按钮*/ +.loginBtnView { + width: 100%; + height: auto; + + + + margin-top: 0px; + margin-bottom: 0px; + padding-bottom: 0px; +} + +.loginBtn { + width: 80%; + margin-top: 35px; + + background-color:rgb(253, 153, 65); + +} diff --git a/image/gerenxinxi/gerenxinxi.js b/image/gerenxinxi/gerenxinxi.js new file mode 100644 index 0000000..94f3ed3 --- /dev/null +++ b/image/gerenxinxi/gerenxinxi.js @@ -0,0 +1,24 @@ + + +// 获取全局应用程序实例对象 +const app = getApp(); + +// 创建页面实例对象 +Page({ + onLoad: function () { + var userstr=wx.getStorageSync('userstr') + console.log(userstr); + let user = JSON.parse(userstr); + console.log(user); + var that = this + that.setData({ + userid: user.userid, + username: user.username, + userauthor: user.userpassword + + }) + } + + +}) + diff --git a/image/gerenxinxi/gerenxinxi.json b/image/gerenxinxi/gerenxinxi.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/image/gerenxinxi/gerenxinxi.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/image/gerenxinxi/gerenxinxi.wxml b/image/gerenxinxi/gerenxinxi.wxml new file mode 100644 index 0000000..e1f0eaa --- /dev/null +++ b/image/gerenxinxi/gerenxinxi.wxml @@ -0,0 +1,4 @@ + + 姓名:{{username}} + 学号:{{userid}} + 密码: \ No newline at end of file diff --git a/image/gerenxinxi/gerenxinxi.wxss b/image/gerenxinxi/gerenxinxi.wxss new file mode 100644 index 0000000..f90bb0e --- /dev/null +++ b/image/gerenxinxi/gerenxinxi.wxss @@ -0,0 +1,73 @@ +/* 基础样式 */ +view,scroll-view,swiper,swiper-item,icon,text,progress,button,checkbox-group,checkbox,form,input,label,picker,radio-group,radio,slider,switch,action-sheet,action-sheet-item,action-sheet-cancel,modal,toast,loading,navigator,audio,image,video,map,canvas { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +page { + height: 100%; + font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; +} + + + + +checkbox-group, +radio-group{ + display:block; +} + + + + +:before, +:after , +::before, +::after{ + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.c-minheight { + min-height: 80px; +} +.c-full { + width: 100%; + height: 100%; +} +.c-block { + display: block; +} +.c-autosize { + width: auto; + height: auto; +} +.c-fullwidth { + width: 100%; +} +.c-fullheight { + height: 100%; +} +.c-initHide{ + opacity:0 !important; +} +.c-ellipse{ + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + overflow:hidden; +} +/* 自定义样式 */ + + + + +.wx-image_TCMtbw{transition: All 0s ease; transform: rotate(0deg) scale(0.5) translate(22%,0%); -ms-transform: rotate(0deg) scale(0.5) translate(22%,0%); -o-transform: rotate(0deg) scale(0.5) translate(22%,0%); -moz-transform: rotate(0deg) scale(0.5) translate(22%,0%); -webkit-transform: rotate(0deg) scale(0.5) translate(22%,0%); -ms-transition: All 0s ease; -o-transition: All 0s ease; -moz-transition: All 0s ease; -webkit-transition: All 0s ease; } +.wx-text_3ayXhS{border-radius: 15px; transition: all; margin-right: 80px; margin-left: 100px; background-repeat: repeat; transform: rotate(0deg) scale(1.2) translate(0%, 0%); background-color: rgba(253, 153, 65, 0.67); } +.wx-text_cEEG0A{border-radius: 15px; transition: all; margin-right: 80px; margin-left: 100px; transform: rotate(0deg) scale(1.2) translate(0%, 152%); background-color: rgba(253, 153, 65, 0.67); border-bottom-right-radius: 15px; border-bottom-left-radius: 15px; border-top-right-radius: 15px; border-top-left-radius: 15px; } +.wx-text_lkXRAs{border-radius: 15px; transition: all; margin-right: 80px; margin-left: 100px; transform: rotate(0deg) scale(1.2) translate(0%, 304%); background-color: rgba(253, 153, 65, 0.67); border-bottom-right-radius: 15px; border-bottom-left-radius: 15px; border-top-right-radius: 15px; border-top-left-radius: 15px; } + + + + diff --git a/image/image/1.png b/image/image/1.png new file mode 100644 index 0000000..9421dc3 Binary files /dev/null and b/image/image/1.png differ diff --git a/image/image/123.jpg b/image/image/123.jpg new file mode 100644 index 0000000..7d605d9 Binary files /dev/null and b/image/image/123.jpg differ diff --git a/image/image/chazhao-hl.png b/image/image/chazhao-hl.png new file mode 100644 index 0000000..412caed Binary files /dev/null and b/image/image/chazhao-hl.png differ diff --git a/image/image/chazhao.png b/image/image/chazhao.png new file mode 100644 index 0000000..fb37d47 Binary files /dev/null and b/image/image/chazhao.png differ diff --git a/image/image/jieyue-hl.png b/image/image/jieyue-hl.png new file mode 100644 index 0000000..46dbc1c Binary files /dev/null and b/image/image/jieyue-hl.png differ diff --git a/image/image/jieyue.png b/image/image/jieyue.png new file mode 100644 index 0000000..1cb743b Binary files /dev/null and b/image/image/jieyue.png differ diff --git a/image/image/shouye-HL.png b/image/image/shouye-HL.png new file mode 100644 index 0000000..6d38cc6 Binary files /dev/null and b/image/image/shouye-HL.png differ diff --git a/image/image/shouye.png b/image/image/shouye.png new file mode 100644 index 0000000..4a58c84 Binary files /dev/null and b/image/image/shouye.png differ diff --git a/image/image/wode-hl.png b/image/image/wode-hl.png new file mode 100644 index 0000000..b64feee Binary files /dev/null and b/image/image/wode-hl.png differ diff --git a/image/image/wode.png b/image/image/wode.png new file mode 100644 index 0000000..d5306cd Binary files /dev/null and b/image/image/wode.png differ diff --git a/image/jieyue/jieyue.js b/image/jieyue/jieyue.js new file mode 100644 index 0000000..6c02beb --- /dev/null +++ b/image/jieyue/jieyue.js @@ -0,0 +1,9 @@ +Page({ + sss:function(e){ + wx.scanCode({ + + }) + } + + +}) \ No newline at end of file diff --git a/image/jieyue/jieyue.json b/image/jieyue/jieyue.json new file mode 100644 index 0000000..e8cfaaf --- /dev/null +++ b/image/jieyue/jieyue.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git a/image/jieyue/jieyue.wxml b/image/jieyue/jieyue.wxml new file mode 100644 index 0000000..956b08c --- /dev/null +++ b/image/jieyue/jieyue.wxml @@ -0,0 +1,7 @@ + + + + diff --git a/image/jieyue/jieyue.wxss b/image/jieyue/jieyue.wxss new file mode 100644 index 0000000..da93449 --- /dev/null +++ b/image/jieyue/jieyue.wxss @@ -0,0 +1,24 @@ +/* jieyue/jieyue.wxss */ +page { + background-image:url('https://photo.16pic.com/00/24/39/16pic_2439427_b.jpg'); + background-size: contain; + background-repeat: no-repeat; + background-position-y: center; + background-position-x: center; + +} +.button1{ + width: 50%; + margin-top: 450rpx; + background-color:rgba(253, 153, 65, 0.67); + color: white; + border-radius: 98rpx; + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; +} +.button1::after +{ + border: 0; +} diff --git a/image/jieyuejielu/yiwancheng/yiwancheng.js b/image/jieyuejielu/yiwancheng/yiwancheng.js new file mode 100644 index 0000000..d7acbbe --- /dev/null +++ b/image/jieyuejielu/yiwancheng/yiwancheng.js @@ -0,0 +1,66 @@ +// jieyuejielu/yiwancheng/yiwancheng.js +Page({ + + /** + * 页面的初始数据 + */ + data: { + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad: function (options) { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady: function () { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow: function () { + + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide: function () { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload: function () { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh: function () { + + }, + + /** + * 页面上拉触底事件的处理函数 + */ + onReachBottom: function () { + + }, + + /** + * 用户点击右上角分享 + */ + onShareAppMessage: function () { + + } +}) \ No newline at end of file diff --git a/image/jieyuejielu/yiwancheng/yiwancheng.json b/image/jieyuejielu/yiwancheng/yiwancheng.json new file mode 100644 index 0000000..8835af0 --- /dev/null +++ b/image/jieyuejielu/yiwancheng/yiwancheng.json @@ -0,0 +1,3 @@ +{ + "usingComponents": {} +} \ No newline at end of file diff --git a/image/jieyuejielu/yiwancheng/yiwancheng.wxml b/image/jieyuejielu/yiwancheng/yiwancheng.wxml new file mode 100644 index 0000000..9a8dd06 --- /dev/null +++ b/image/jieyuejielu/yiwancheng/yiwancheng.wxml @@ -0,0 +1,2 @@ + +jieyuejielu/yiwancheng/yiwancheng.wxml diff --git a/image/jieyuejielu/yiwancheng/yiwancheng.wxss b/image/jieyuejielu/yiwancheng/yiwancheng.wxss new file mode 100644 index 0000000..2227e04 --- /dev/null +++ b/image/jieyuejielu/yiwancheng/yiwancheng.wxss @@ -0,0 +1 @@ +/* jieyuejielu/yiwancheng/yiwancheng.wxss */ \ No newline at end of file diff --git a/image/jieyuejilu/jieyuezhong/jieyuezhong.js b/image/jieyuejilu/jieyuezhong/jieyuezhong.js new file mode 100644 index 0000000..0d307a6 --- /dev/null +++ b/image/jieyuejilu/jieyuezhong/jieyuezhong.js @@ -0,0 +1,25 @@ + +Page({ + onLoad: function (options) { + console.log(options); + let book = JSON.parse(options.bookstr); + console.log(book); + var that = this + that.setData({ + sname: book[0].s_name, + sid: book[0].s_id, + bookname: book[0].book_name, + bookid: book[0].book_id, + booknum: book[0].book_num + + + }) + + + + }, + + + + +}) \ No newline at end of file diff --git a/image/jieyuejilu/jieyuezhong/jieyuezhong.json b/image/jieyuejilu/jieyuezhong/jieyuezhong.json new file mode 100644 index 0000000..d086501 --- /dev/null +++ b/image/jieyuejilu/jieyuezhong/jieyuezhong.json @@ -0,0 +1,28 @@ +{ + "component": true, + "usingComponents": {}, + "pages": [ + "jieyuezhong/jieyuezhong", + "yiwancheng/yiwancheng" + ], + "tabBar": { + "color": "#000000", + "selectedColor": "#fd9941", + "borderStyle": "black", + "backgroundColor": "#ffffff", + "list": [ + { + "pagePath": "jieyuezhong/jieyuezhong", + "text": "借阅中", + "iconPath": "image/shouye.png", + "selectedIconPath": "image/shouye-hl.png" + }, + { + "pagePath": "yiwancheng/yiwancheng", + "text": "已完成", + "iconPath": "image/chazhao.png", + "selectedIconPath": "image/chazhao-hl.png" + } + ] + } +} diff --git a/image/jieyuejilu/jieyuezhong/jieyuezhong.wxml b/image/jieyuejilu/jieyuezhong/jieyuezhong.wxml new file mode 100644 index 0000000..967cc4e --- /dev/null +++ b/image/jieyuejilu/jieyuezhong/jieyuezhong.wxml @@ -0,0 +1,12 @@ + + +姓名: +{{sname}} +学号: +{{sid}} +书号: +{{bookid}} +书名: +{{bookname}} +库存: +{{booknum}} \ No newline at end of file diff --git a/image/jieyuejilu/jieyuezhong/jieyuezhong.wxss b/image/jieyuejilu/jieyuezhong/jieyuezhong.wxss new file mode 100644 index 0000000..90068fd --- /dev/null +++ b/image/jieyuejilu/jieyuezhong/jieyuezhong.wxss @@ -0,0 +1,84 @@ +/* 基础样式 */ +view,scroll-view,swiper,swiper-item,icon,text,progress,button,checkbox-group,checkbox,form,input,label,picker,radio-group,radio,slider,switch,action-sheet,action-sheet-item,action-sheet-cancel,modal,toast,loading,navigator,audio,image,video,map,canvas { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +page { + height: 100%; + font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; +} + + + + +checkbox-group, +radio-group{ + display:block; +} + + + + +:before, +:after , +::before, +::after{ + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.c-minheight { + min-height: 80px; +} +.c-full { + width: 100%; + height: 100%; +} +.c-block { + display: block; +} +.c-autosize { + width: auto; + height: auto; +} +.c-fullwidth { + width: 100%; +} +.c-fullheight { + height: 100%; +} +.c-initHide{ + opacity:0 !important; +} +.c-ellipse{ + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + overflow:hidden; +} +/* 自定义样式 */ +.borrow{ + width: 50%; + margin-top: 590rpx; + background-color:rgb(253, 153, 65); + color: white; + border-radius: 98rpx; + display: flex; + flex-direction: row; + align-items: center; + justify-content: center; +} +.image{ + width: 40%; + margin-top: 10px; +} + +.wx-view_3ZhLNq{transition: All 0s ease; margin-right: 150px; margin-left: 150px; transform: rotate(0deg) scale(1.6) translate(0%,43%); -ms-transform: rotate(0deg) scale(1.6) translate(0%,43%); -o-transform: rotate(0deg) scale(1.6) translate(0%,43%); -moz-transform: rotate(0deg) scale(1.6) translate(0%,43%); -webkit-transform: rotate(0deg) scale(1.6) translate(0%,43%); -ms-transition: All 0s ease; -o-transition: All 0s ease; -moz-transition: All 0s ease; -webkit-transition: All 0s ease; } +.wx-1{transition: All 0s ease; margin-right: 80px; margin-left: 80px; transform: rotate(0deg) scale(1.2) translate(0%,434%); -ms-transform: rotate(0deg) scale(1.2) translate(0%,434%); -o-transform: rotate(0deg) scale(1.2) translate(0%,434%); -moz-transform: rotate(0deg) scale(1.2) translate(0%,434%); -webkit-transform: rotate(0deg) scale(1.2) translate(0%,434%); -ms-transition: All 0s ease; -o-transition: All 0s ease; -moz-transition: All 0s ease; -webkit-transition: All 0s ease; } +.wx-2{transition: All 0s ease; margin-right: 80px; margin-left: 80px; transform: rotate(0deg) scale(1.2) translate(0%,543%); -ms-transform: rotate(0deg) scale(1.2) translate(0%,543%); -o-transform: rotate(0deg) scale(1.2) translate(0%,543%); -moz-transform: rotate(0deg) scale(1.2) translate(0%,543%); -webkit-transform: rotate(0deg) scale(1.2) translate(0%,543%); -ms-transition: All 0s ease; -o-transition: All 0s ease; -moz-transition: All 0s ease; -webkit-transition: All 0s ease; } + +.wx-3{transition: All 0s ease; margin-right: 80px; margin-left: 80px; transform: rotate(0deg) scale(1.2) translate(0%,652%); -ms-transform: rotate(0deg) scale(1.2) translate(0%,652%); -o-transform: rotate(0deg) scale(1.2) translate(0%,652%); -moz-transform: rotate(0deg) scale(1.2) translate(0%,652%); -webkit-transform: rotate(0deg) scale(1.2) translate(0%,652%); -ms-transition: All 0s ease; -o-transition: All 0s ease; -moz-transition: All 0s ease; -webkit-transition: All 0s ease; } +.wx-4{transition: All 0s ease; margin-right: 80px; margin-left: 80px; transform: rotate(0deg) scale(1.2) translate(0%,761%); -ms-transform: rotate(0deg) scale(1.2) translate(0%,761%); -o-transform: rotate(0deg) scale(1.2) translate(0%,761%); -moz-transform: rotate(0deg) scale(1.2) translate(0%,761%); -webkit-transform: rotate(0deg) scale(1.2) translate(0%,761%); -ms-transition: All 0s ease; -o-transition: All 0s ease; -moz-transition: All 0s ease; -webkit-transition: All 0s ease; } +.wx-5{transition: All 0s ease; margin-right: 80px; margin-left: 80px; transform: rotate(0deg) scale(1.2) translate(0%,870%); -ms-transform: rotate(0deg) scale(1.2) translate(0%,870%); -o-transform: rotate(0deg) scale(1.2) translate(0%,870%); -moz-transform: rotate(0deg) scale(1.2) translate(0%,870%); -webkit-transform: rotate(0deg) scale(1.2) translate(0%,870%); -ms-transition: All 0s ease; -o-transition: All 0s ease; -moz-transition: All 0s ease; -webkit-transition: All 0s ease; } diff --git a/image/jieyuejilu/yiwancheng/yiwancheng.js b/image/jieyuejilu/yiwancheng/yiwancheng.js new file mode 100644 index 0000000..6b355b0 --- /dev/null +++ b/image/jieyuejilu/yiwancheng/yiwancheng.js @@ -0,0 +1,68 @@ +// 获取全局应用程序实例对象 +const app = getApp(); + +// 创建页面实例对象 +Page({ + /** + * 页面名称 + */ + name: "index", + /** + * 页面的初始数据 + */ + + data: { + + + + }, + + /** + * 生命周期函数--监听页面加载 + */ + onLoad() { + + }, + + /** + * 生命周期函数--监听页面初次渲染完成 + */ + onReady() { + + }, + + /** + * 生命周期函数--监听页面显示 + */ + onShow() { + }, + + /** + * 生命周期函数--监听页面隐藏 + */ + onHide() { + + }, + + /** + * 生命周期函数--监听页面卸载 + */ + onUnload() { + + }, + + /** + * 页面相关事件处理函数--监听用户下拉动作 + */ + onPullDownRefresh() { + + }, + + jieyuezhongsubmit: function (e) { + wx.navigateTo({ + url: '../../jieyuejilu/jieyuezhong/jieyuezhong', + //以下为自定义点击事件 + + }) + }, +}) diff --git a/image/jieyuejilu/yiwancheng/yiwancheng.json b/image/jieyuejilu/yiwancheng/yiwancheng.json new file mode 100644 index 0000000..e8cfaaf --- /dev/null +++ b/image/jieyuejilu/yiwancheng/yiwancheng.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git a/image/jieyuejilu/yiwancheng/yiwancheng.wxml b/image/jieyuejilu/yiwancheng/yiwancheng.wxml new file mode 100644 index 0000000..028639f --- /dev/null +++ b/image/jieyuejilu/yiwancheng/yiwancheng.wxml @@ -0,0 +1,6 @@ + + \ No newline at end of file diff --git a/image/jieyuejilu/yiwancheng/yiwancheng.wxss b/image/jieyuejilu/yiwancheng/yiwancheng.wxss new file mode 100644 index 0000000..fc540c8 --- /dev/null +++ b/image/jieyuejilu/yiwancheng/yiwancheng.wxss @@ -0,0 +1,68 @@ +/* 基础样式 */ +view,scroll-view,swiper,swiper-item,icon,text,progress,button,checkbox-group,checkbox,form,input,label,picker,radio-group,radio,slider,switch,action-sheet,action-sheet-item,action-sheet-cancel,modal,toast,loading,navigator,audio,image,video,map,canvas { + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +page { + height: 100%; + font-family: -apple-system-font,Helvetica Neue,Helvetica,sans-serif; +} + + + + +checkbox-group, +radio-group{ + display:block; +} + + + + +:before, +:after , +::before, +::after{ + -webkit-box-sizing: border-box; + -moz-box-sizing: border-box; + box-sizing: border-box; +} +.c-minheight { + min-height: 80px; +} +.c-full { + width: 100%; + height: 100%; +} +.c-block { + display: block; +} +.c-autosize { + width: auto; + height: auto; +} +.c-fullwidth { + width: 100%; +} +.c-fullheight { + height: 100%; +} +.c-initHide{ + opacity:0 !important; +} +.c-ellipse{ + text-overflow: ellipsis; + display: -webkit-box; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; + overflow:hidden; +} +/* 自定义样式 */ + + + + +.wx-button_80jKCV{color: rgb(0, 0,0); margin-right: 187px; background-repeat: repeat-x; } +.wx-button_jdfM7E{color: rgb(253, 153,65);transition: all; margin-left: 187px; transform: rotate(0deg) scale(1) translate(0%, -100%); } + diff --git a/image/shouye/shouye.js b/image/shouye/shouye.js new file mode 100644 index 0000000..f7c37d6 --- /dev/null +++ b/image/shouye/shouye.js @@ -0,0 +1,23 @@ +// shouye/shouye.js +Component({ + /** + * 组件的属性列表 + */ + properties: { + + }, + + /** + * 组件的初始数据 + */ + data: { + + }, + + /** + * 组件的方法列表 + */ + methods: { + + } +}) diff --git a/image/shouye/shouye.json b/image/shouye/shouye.json new file mode 100644 index 0000000..e8cfaaf --- /dev/null +++ b/image/shouye/shouye.json @@ -0,0 +1,4 @@ +{ + "component": true, + "usingComponents": {} +} \ No newline at end of file diff --git a/image/shouye/shouye.wxml b/image/shouye/shouye.wxml new file mode 100644 index 0000000..82e894f --- /dev/null +++ b/image/shouye/shouye.wxml @@ -0,0 +1,5 @@ + +真香图书管理系统 +最新通知 +