|
@@ -6,7 +6,8 @@
|
|
|
<div style="display: flex;justify-content: space-between;align-items: center;">
|
|
|
<div>
|
|
|
<text>姓名:{{item.ppName}}</text><br>
|
|
|
- <text>电话:{{ item.ppTel }}</text>
|
|
|
+ <text>电话:{{ item.ppTel }}</text><br>
|
|
|
+ <text>职务:{{item.ppDuty}}</text>
|
|
|
</div>
|
|
|
<div style="display: flex;justify-content: space-around;align-items: center;">
|
|
|
<button @click="delUser(item)" class="editBtn">删除</button>
|
|
@@ -18,20 +19,19 @@
|
|
|
<div class="useBox">
|
|
|
<!-- <button class="useBtn" @click="addNewPeople">新增参会人员</button> -->
|
|
|
<!-- <button class="useBtn" @click="sureAdd">确认新增</button> -->
|
|
|
- <button class="useBtn" @click="excelOut">导出excel</button>
|
|
|
+ <!-- <button class="useBtn" @click="excelOut">导出excel</button> -->
|
|
|
</div>
|
|
|
<div v-for="(person, index) in meetList" :key="index" class="addNewBox">
|
|
|
<u--form style="margin-left: 55rpx;">
|
|
|
<u-form-item class="typeStyle" :prop="'name' + (index + 1)">
|
|
|
- <p style="width: 150rpx;margin-left: 20rpx;">姓名{{(index + 1)}}</p>
|
|
|
+ <p style="width: 150rpx;margin-left: 20rpx;">姓名</p>
|
|
|
<u-input v-model="person.name" @blur="nameBlur" :placeholder="'请输入姓名'" />
|
|
|
<span class="erroring" v-if="nameRules">请输入名称</span>
|
|
|
</u-form-item>
|
|
|
- <u-form-item class="typeStyle" :prop="'age' + (index + 1)">
|
|
|
+ <!-- <u-form-item class="typeStyle" :prop="'age' + (index + 1)">
|
|
|
<p style="width: 150rpx;margin-left: 20rpx;">状态</p>
|
|
|
<u-input v-model="person.status" :placeholder="'请输入状态'" />
|
|
|
- <!-- <span class="erroring" v-if="userRules">身份证号有误</span> -->
|
|
|
- </u-form-item>
|
|
|
+ </u-form-item> -->
|
|
|
<!-- 其他人员信息字段 -->
|
|
|
<u-form-item class="typeStyle" :prop="'age' + (index + 1)">
|
|
|
<p style="width: 150rpx;margin-left: 20rpx;">电话号</p>
|
|
@@ -56,22 +56,22 @@
|
|
|
<u-popup :show="showModal" mode="center" @close="closeModal">
|
|
|
<view class="modalBox">
|
|
|
<u--form labelPosition="left" :model="modalList" ref="uForm">
|
|
|
- <u-form-item style="width: 500rpx;" label="姓名" prop="modalList.name" borderBottom
|
|
|
- ref="item1">
|
|
|
+ <u-form-item style="width: 500rpx;" prop="modalList.name" borderBottom ref="item1">
|
|
|
+ <span style="width: 100rpx;">姓名</span>
|
|
|
<u--input class="modalInput" v-model="modalList.mname" border="none"></u--input>
|
|
|
</u-form-item>
|
|
|
- <u-form-item style="width: 500rpx;" label="电话号" prop="modalList.mphone" borderBottom
|
|
|
- ref="item2">
|
|
|
+ <u-form-item style="width: 500rpx;" prop="modalList.mphone" borderBottom ref="item2">
|
|
|
+ <span style="width: 100rpx;">电话号</span>
|
|
|
<u--input class="modalInput" v-model="modalList.mphone" border="none"></u--input>
|
|
|
</u-form-item>
|
|
|
- <u-form-item style="width: 500rpx;" label="职务" prop="modalList.mpower" borderBottom
|
|
|
- ref="item3">
|
|
|
+ <u-form-item style="width: 500rpx;" prop="modalList.mpower" borderBottom ref="item3">
|
|
|
+ <span style="width: 100rpx;">职务</span>
|
|
|
<u--input class="modalInput" v-model="modalList.mpower" border="none"></u--input>
|
|
|
</u-form-item>
|
|
|
- <u-form-item style="width: 500rpx;" label="状态" prop="modalList.mstatus" borderBottom
|
|
|
+ <!-- <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-item> -->
|
|
|
</u--form>
|
|
|
<div style="display: flex;justify-content: space-around;align-items: center;">
|
|
|
<button class="useBtn" @click="sureUpdate">确认修改</button>
|
|
@@ -178,7 +178,7 @@
|
|
|
ppDuty: this.meetList[0].power,
|
|
|
ppName: this.meetList[0].name,
|
|
|
ppTel: this.meetList[0].phone,
|
|
|
- status: parseInt(this.meetList[0].status)
|
|
|
+ status: 1,
|
|
|
}).then(res => {
|
|
|
if (res.data) {
|
|
|
uni.showToast({
|
|
@@ -369,7 +369,8 @@
|
|
|
|
|
|
.modalBox {
|
|
|
width: 600rpx;
|
|
|
- height: 600rpx;
|
|
|
+ height: 400rpx;
|
|
|
+ margin-left: 60rpx;
|
|
|
}
|
|
|
|
|
|
.text {
|