|
@@ -56,20 +56,23 @@
|
|
|
<u-popup :show="showModal" mode="center" @close="closeModal">
|
|
|
<view class="modalBox">
|
|
|
<u--form labelPosition="left" :model="modalList" ref="uForm">
|
|
|
- <u-form-item label="姓名" prop="modalList.name" borderBottom ref="item1">
|
|
|
- <u--input v-model="modalList.mname" border="none"></u--input>
|
|
|
+ <u-form-item style="width: 500rpx;" label="姓名" prop="modalList.name" borderBottom ref="item1">
|
|
|
+ <u--input class="modalInput" v-model="modalList.mname" border="none"></u--input>
|
|
|
</u-form-item>
|
|
|
- <u-form-item label="电话号" prop="modalList.mphone" borderBottom ref="item2">
|
|
|
- <u--input v-model="modalList.mphone" border="none"></u--input>
|
|
|
+ <u-form-item style="width: 500rpx;" label="电话号" prop="modalList.mphone" borderBottom ref="item2">
|
|
|
+ <u--input class="modalInput" v-model="modalList.mphone" border="none"></u--input>
|
|
|
</u-form-item>
|
|
|
- <u-form-item label="职务" prop="modalList.mpower" borderBottom ref="item3">
|
|
|
- <u--input v-model="modalList.mpower" border="none"></u--input>
|
|
|
+ <u-form-item style="width: 500rpx;" label="职务" prop="modalList.mpower" borderBottom ref="item3">
|
|
|
+ <u--input class="modalInput" v-model="modalList.mpower" border="none"></u--input>
|
|
|
</u-form-item>
|
|
|
- <u-form-item label="状态" prop="modalList.mstatus" borderBottom ref="item4">
|
|
|
- <u--input v-model="modalList.mstatus" border="none"></u--input>
|
|
|
+ <u-form-item style="width: 500rpx;" label="状态" prop="modalList.mstatus" borderBottom ref="item4">
|
|
|
+ <u--input class="modalInput" v-model="modalList.mstatus" border="none"></u--input>
|
|
|
</u-form-item>
|
|
|
</u--form>
|
|
|
- <button @click="sureUpdate">确认修改</button>
|
|
|
+ <div style="display: flex;justify-content: space-around;align-items: center;">
|
|
|
+ <button class="useBtn" @click="sureUpdate">确认修改</button>
|
|
|
+ <button class="useBtn" @click="showModal = false">关闭</button>
|
|
|
+ </div>
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
</div>
|
|
@@ -127,7 +130,7 @@
|
|
|
})
|
|
|
},
|
|
|
getAllPeople() {
|
|
|
- getListPage().then(res => {
|
|
|
+ getListPage({meetingId:this.meetId,pageNo:1,pageSize:10}).then(res => {
|
|
|
this.tableList = res.data.list
|
|
|
console.log(res, 'all');
|
|
|
})
|
|
@@ -270,12 +273,12 @@
|
|
|
}
|
|
|
},
|
|
|
onShow() {
|
|
|
- console.log(this.$route.query, '111');
|
|
|
- this.meetId = this.$route.query.metId
|
|
|
- },
|
|
|
- onLoad() {
|
|
|
this.getUser()
|
|
|
this.getAllPeople()
|
|
|
+ },
|
|
|
+ onLoad() {
|
|
|
+ console.log(this.$route.query, '111');
|
|
|
+ this.meetId = this.$route.query.metId
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -308,14 +311,15 @@
|
|
|
}
|
|
|
|
|
|
.modalBox {
|
|
|
- width: 500rpx;
|
|
|
- height: auto;
|
|
|
+ width: 600rpx;
|
|
|
+ height: 600rpx;
|
|
|
}
|
|
|
|
|
|
.text {
|
|
|
color: #4DB1B6;
|
|
|
}
|
|
|
- .useBox{
|
|
|
+
|
|
|
+ .useBox {
|
|
|
width: 90%;
|
|
|
height: auto;
|
|
|
margin: 20rpx auto;
|
|
@@ -323,7 +327,8 @@
|
|
|
justify-content: space-around;
|
|
|
align-items: center;
|
|
|
}
|
|
|
- .useBtn{
|
|
|
+
|
|
|
+ .useBtn {
|
|
|
width: 200rpx;
|
|
|
height: 60rpx;
|
|
|
background-color: #4DB1B6;
|
|
@@ -333,7 +338,8 @@
|
|
|
border-radius: 10rpx;
|
|
|
font-size: 20rpx;
|
|
|
}
|
|
|
- .editBtn{
|
|
|
+
|
|
|
+ .editBtn {
|
|
|
width: 100rpx;
|
|
|
height: 60rpx;
|
|
|
background-color: #4DB1B6;
|
|
@@ -344,4 +350,9 @@
|
|
|
font-size: 20rpx;
|
|
|
margin-bottom: 10rpx;
|
|
|
}
|
|
|
+
|
|
|
+ .modalInput {
|
|
|
+ width: 200rpx;
|
|
|
+ border: 1px solid #4DB1B6;
|
|
|
+ }
|
|
|
</style>
|