diff --git a/packageA/center/applyDetail.vue b/packageA/center/applyDetail.vue
index e27209b..897ceec 100644
--- a/packageA/center/applyDetail.vue
+++ b/packageA/center/applyDetail.vue
@@ -94,7 +94,8 @@
- {{ item.name }} {{item.mobile}}
+
+ {{ item.name }}
身份证 {{ item.idnum }}
diff --git a/packageA/center/detail.vue b/packageA/center/detail.vue
index 8988edf..d6588c9 100644
--- a/packageA/center/detail.vue
+++ b/packageA/center/detail.vue
@@ -161,14 +161,19 @@
-
+
+
+
+
+
@@ -181,7 +186,7 @@
-
+
默认排序
-
+
-
+
- {{ item.name }} {{item.mobile}}
+ {{ item.name }} {{item.mobile}}
身份证 {{ item.idnum }}
@@ -216,8 +221,8 @@
-
-
+
+
-
+
-
+
-
+
@@ -470,7 +475,7 @@
return {
checkSortType: 0,
sortTypeShow: false,
- signPeopleList: [],//报名人信息列表
+ signPeopleList: [], //报名人信息列表
peopleNum: 0,
peopleParams: {
page: 1,
@@ -563,7 +568,7 @@
}
console.log(options.id)
this.getDetail();
- this.getSignPeople();
+ // this.getSignPeople();
// this.getPeople()
// this.getTime()
this.getShare()
@@ -849,7 +854,7 @@
}
}).catch(error => {});
},
-
+
//报名人信息列表
getSignPeople() {
uni.$u.http.get('/api/school.new_activity/people_list', {
@@ -862,7 +867,7 @@
}
}).then(res => {
if (res.code == 1) {
- console.log('peopleList',res.code,res.data);
+ console.log('peopleList', res.code, res.data);
this.signPeopleList = res.data.list;
this.peopleNum = res.data.count;
} else {
@@ -874,7 +879,7 @@
}
}).catch(error => {});
},
-
+
// 报名 0 支付 1 立即购买 2 预约 3确认时间
sign() {
@@ -1413,7 +1418,9 @@
}
.imgs {
- display: flex;
+ display: block;
+ width: 690rpx;
+ // display: flex;
// width: 690rpx;
}
@@ -1429,25 +1436,27 @@
}
.imgs {
+ display: block;
width: 690rpx;
+ // width: 690rpx;
// display: block;
}
}
.imgs {
- // display: block;
- // width: 690rpx;
+ display: block;
+ width: 690rpx;
}
}
-
+
.fourth {
width: 100%;
background: #ffffff;
margin-top: 20rpx;
border-radius: 44rpx;
-
+
.fourth-top {
font-family: PingFang SC, PingFang SC;
font-weight: bold;
@@ -1459,10 +1468,10 @@
position: relative;
z-index: 10;
}
-
+
span {
position: relative;
-
+
.icons {
width: 37rpx;
height: 20rpx;
@@ -1472,17 +1481,17 @@
z-index: -1;
}
}
-
+
.mgbot {
margin-bottom: 210rpx;
}
-
+
}
-
+
.yes {
background-color: #999999;
}
-
+
.line {
width: 690rpx;
height: 2rpx;
diff --git a/packageB/editAct.vue b/packageB/editAct.vue
index 026ebe4..7fce9f8 100644
--- a/packageB/editAct.vue
+++ b/packageB/editAct.vue
@@ -31,7 +31,7 @@
+ :maxCount="5">
diff --git a/packageB/editDraft.vue b/packageB/editDraft.vue
index 3a3f137..4425927 100644
--- a/packageB/editDraft.vue
+++ b/packageB/editDraft.vue
@@ -31,7 +31,7 @@
+ :maxCount="5">
diff --git a/packageB/team/index.vue b/packageB/team/index.vue
index 2979789..9fb501b 100644
--- a/packageB/team/index.vue
+++ b/packageB/team/index.vue
@@ -38,7 +38,7 @@
+ v-model="form.name"/>
@@ -48,11 +48,11 @@
+ v-model="form.idnum"/>
-
+
-
+
你的个人信息我们将严格保密并仅用于投保使用,详情可查看
《隐私政策》
@@ -79,9 +79,11 @@
- 确认
+ 确认
- 确认
+
@@ -124,15 +126,15 @@
this.form.name = item.name;
this.form.idnum = item.idnum;
this.form.ids = item.id;
- this.form.mobile = item.mobile;
- this.form.open = item.open;
+ // this.form.mobile = item.mobile;
+ // this.form.open = item.open;
this.show = true;
- if(this.form.open == 0) {
- this.privacyShow = true;
- }else {
- this.privacyShow = false;
- }
- this.checkFormValidity();
+ // if(this.form.open == 0) {
+ // this.privacyShow = true;
+ // }else {
+ // this.privacyShow = false;
+ // }
+ // this.checkFormValidity();
},
del(item) {
var that = this;
@@ -201,14 +203,14 @@
});
return;
}
- if (this.form.mobile == '') {
- uni.showToast({
- title: '请填写手机号',
- icon: 'none',
- duration: 2000
- });
- return;
- }
+ // if (this.form.mobile == '') {
+ // uni.showToast({
+ // title: '请填写手机号',
+ // icon: 'none',
+ // duration: 2000
+ // });
+ // return;
+ // }
//正则判断身份证
const reg = /^[1-9]\d{5}(18|19|20)\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/;
if (!reg.test(this.form.idnum)) {
@@ -219,20 +221,20 @@
});
return;
}
- if (!/^1[3-9]\d{9}$/.test(this.form.mobile)) {
- uni.showToast({
- title: '请输入正确的手机号',
- icon: 'none',
- duration: 2000
- })
- return;
- }
+ // if (!/^1[3-9]\d{9}$/.test(this.form.mobile)) {
+ // uni.showToast({
+ // title: '请输入正确的手机号',
+ // icon: 'none',
+ // duration: 2000
+ // })
+ // return;
+ // }
console.log('privacyShow', this.privacyShow);
- if (this.privacyShow == true) {
- this.form.open = 0
- } else {
- this.form.open = 1
- }
+ // if (this.privacyShow == true) {
+ // this.form.open = 0
+ // } else {
+ // this.form.open = 1
+ // }
var url = "/api/school.newactivity.activity_join/add";
if (this.isAdd == 0) {
url = "/api/school.newactivity.activity_join/edit";
diff --git a/pages/center/index.vue b/pages/center/index.vue
index 9936059..2814622 100644
--- a/pages/center/index.vue
+++ b/pages/center/index.vue
@@ -30,7 +30,7 @@
+ :maxCount="5">