diff --git a/app.json b/app.json
index 6fd8919..bdcb130 100644
--- a/app.json
+++ b/app.json
@@ -2,6 +2,7 @@
"pages": [
"pages/index/index",
"pages/home_page/home_page",
+ "pages/regist/regist",
"pages/logs/logs"
],
"window": {
diff --git a/pages/home_page/home_page.js b/pages/home_page/home_page.js
index 2e19c62..727a728 100644
--- a/pages/home_page/home_page.js
+++ b/pages/home_page/home_page.js
@@ -64,7 +64,38 @@ Page({
}
})
},
+ class_begin(e){
+ this.pageRouter.navigateTo({
+ url: "../regist/regist"
+ })
+ },
+ modify_name(e){
+ const course = this.data.course
+ const modify_name = e.target.dataset.info
+ wx.showModal({
+ title: '修改',
+ editable: true,
+ placeholderText: "修改名称",
+ complete: (res) => {
+ if (res.cancel) {
+ }
+ if (res.confirm) {
+ console.log(modify_name)
+ console.log(course)
+ for(let i=0,ILen=course.length;i
-
+
-
+
diff --git a/pages/regist/regist.js b/pages/regist/regist.js
new file mode 100644
index 0000000..bda8f4c
--- /dev/null
+++ b/pages/regist/regist.js
@@ -0,0 +1,66 @@
+// pages/regist/regist.js
+Page({
+
+ /**
+ * 页面的初始数据
+ */
+ data: {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面加载
+ */
+ onLoad(options) {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面初次渲染完成
+ */
+ onReady() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面显示
+ */
+ onShow() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面隐藏
+ */
+ onHide() {
+
+ },
+
+ /**
+ * 生命周期函数--监听页面卸载
+ */
+ onUnload() {
+
+ },
+
+ /**
+ * 页面相关事件处理函数--监听用户下拉动作
+ */
+ onPullDownRefresh() {
+
+ },
+
+ /**
+ * 页面上拉触底事件的处理函数
+ */
+ onReachBottom() {
+
+ },
+
+ /**
+ * 用户点击右上角分享
+ */
+ onShareAppMessage() {
+
+ }
+})
\ No newline at end of file
diff --git a/pages/regist/regist.json b/pages/regist/regist.json
new file mode 100644
index 0000000..8835af0
--- /dev/null
+++ b/pages/regist/regist.json
@@ -0,0 +1,3 @@
+{
+ "usingComponents": {}
+}
\ No newline at end of file
diff --git a/pages/regist/regist.wxml b/pages/regist/regist.wxml
new file mode 100644
index 0000000..64b9e05
--- /dev/null
+++ b/pages/regist/regist.wxml
@@ -0,0 +1,36 @@
+
+
+ 点名系统
+
+ 某人姓名
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/pages/regist/regist.wxss b/pages/regist/regist.wxss
new file mode 100644
index 0000000..533c8bf
--- /dev/null
+++ b/pages/regist/regist.wxss
@@ -0,0 +1,97 @@
+/* pages/regist/regist.wxss */
+.container1{
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: space-around;
+}
+.title-block{
+ /* 设置尺寸色块 */
+ height: 50px;
+ width: 100%;
+ background-color: lightskyblue;
+ /* 制作文本样式 */
+ line-height: 50px;
+ text-align: center;
+ font-size: x-large;
+ font-weight: 600;
+ color: white;
+ letter-spacing: 3px;
+ /* 编辑位置样式 */
+ margin-top: 0px;
+ top: 0px;
+ /* position: fixed; */ /*如果固定页面则不算在布局里面*/
+}
+
+.tip-block{
+ width: 100%;
+ height: 60px;
+ background-color: lightskyblue;
+ line-height: 90px;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-around;
+ /* align-items: center; */
+ /* margin-top: 700px; */
+ bottom: 0px; /*置于底部之前需要设置一个标尺先,这里的标尺线是line-height*/
+ position: fixed;
+}
+
+.middle-block{
+ width: 90%;
+ height: 600px;
+ /* background-color: aqua; */
+ display: flex;
+ flex-direction: column;
+ justify-content: space-around;
+ align-items: center;
+ margin-top: 10px;
+}
+
+.name_style{
+ width: 60%;
+ height: 200px;
+ line-height: 200px;
+ text-align: center;
+ background-color: rgb(87, 170, 197);
+ border-radius: 50%;
+ font-size: xx-large;
+ font-weight: bold;
+ color: white;
+}
+.begin_tyle{
+ width: 60%;
+ height: 50px;
+ line-height: 45px;
+ text-align: center;
+ padding: 0px;
+ background-color: rgb(87, 170, 197);
+ font-size: 25px;
+ border-radius: 20px;
+ border: 1px solid white;
+ color: white;
+}
+.line_tyle{
+ width: 100%;
+ height: 1px;
+ background-color: gray;
+}
+.btn_layout{
+ width: 80%;
+ display: flex;
+ flex-direction: row;
+ justify-content: space-between;
+ align-items: center;
+}
+.btn_sytle{
+ width: 100px !important;
+ height: 35px;
+ line-height: 35px;
+ text-align: center;
+ padding: 0px 0px 0px 10px;
+ background-color: rgb(87, 170, 197);
+ letter-spacing: 10px;
+ font-size: 20px;
+ color: white;
+
+}
\ No newline at end of file