新增工会阿拉伯公会信息-推荐人字段
This commit is contained in:
@@ -9,6 +9,14 @@
|
|||||||
class="input"
|
class="input"
|
||||||
></el-input>
|
></el-input>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="inquire">
|
||||||
|
<span>推荐人</span>
|
||||||
|
<el-input
|
||||||
|
v-model="inquire.referrer"
|
||||||
|
placeholder=""
|
||||||
|
class="input"
|
||||||
|
></el-input>
|
||||||
|
</div>
|
||||||
<!-- 时间选择器 -->
|
<!-- 时间选择器 -->
|
||||||
<div class="inquire">
|
<div class="inquire">
|
||||||
<div class="block">
|
<div class="block">
|
||||||
@@ -38,6 +46,7 @@
|
|||||||
border
|
border
|
||||||
style="width: 100%; margin-top: 25px"
|
style="width: 100%; margin-top: 25px"
|
||||||
>
|
>
|
||||||
|
<el-table-column prop="referrer" align="center" label="推荐人" />
|
||||||
<el-table-column prop="ownerErbanNo" align="center" label="会长ID" />
|
<el-table-column prop="ownerErbanNo" align="center" label="会长ID" />
|
||||||
<el-table-column prop="ownerNick" align="center" label="会长昵称" />
|
<el-table-column prop="ownerNick" align="center" label="会长昵称" />
|
||||||
<el-table-column prop="name" align="center" label="公会昵称" />
|
<el-table-column prop="name" align="center" label="公会昵称" />
|
||||||
@@ -103,6 +112,18 @@
|
|||||||
class="input"
|
class="input"
|
||||||
></el-input>
|
></el-input>
|
||||||
</div>
|
</div>
|
||||||
|
<div style="margin-bottom: 25px">
|
||||||
|
<span
|
||||||
|
style="display: inline-block; margin-right: 20px; width: 100px"
|
||||||
|
class="col-sm-2 control-label"
|
||||||
|
>推荐人</span
|
||||||
|
>
|
||||||
|
<el-input
|
||||||
|
v-model="resource.referrer"
|
||||||
|
style="width: 75%"
|
||||||
|
class="input"
|
||||||
|
></el-input>
|
||||||
|
</div>
|
||||||
<!-- <div style="margin-bottom: 25px">
|
<!-- <div style="margin-bottom: 25px">
|
||||||
<span
|
<span
|
||||||
style="display: inline-block; margin-right: 20px; width: 100px"
|
style="display: inline-block; margin-right: 20px; width: 100px"
|
||||||
@@ -228,12 +249,14 @@ export default {
|
|||||||
//查询所需条件对象
|
//查询所需条件对象
|
||||||
inquire: {
|
inquire: {
|
||||||
userId: "",
|
userId: "",
|
||||||
|
referrer: "",
|
||||||
time: "",
|
time: "",
|
||||||
},
|
},
|
||||||
//新增所需对象
|
//新增所需对象
|
||||||
resource: {
|
resource: {
|
||||||
id: "",
|
id: "",
|
||||||
nick: "",
|
nick: "",
|
||||||
|
referrer: "",
|
||||||
},
|
},
|
||||||
// 表格
|
// 表格
|
||||||
tableData: [],
|
tableData: [],
|
||||||
@@ -270,6 +293,7 @@ export default {
|
|||||||
}
|
}
|
||||||
pageFamily({
|
pageFamily({
|
||||||
erbanNo: this.inquire.userId,
|
erbanNo: this.inquire.userId,
|
||||||
|
referrer: this.inquire.referrer,
|
||||||
familyName: this.inquire.nick,
|
familyName: this.inquire.nick,
|
||||||
startDate: startTime,
|
startDate: startTime,
|
||||||
endDate: endTime,
|
endDate: endTime,
|
||||||
@@ -286,6 +310,7 @@ export default {
|
|||||||
this.addDialog = false;
|
this.addDialog = false;
|
||||||
create({
|
create({
|
||||||
erbanNo: this.resource.id,
|
erbanNo: this.resource.id,
|
||||||
|
referrer: this.resource.referrer,
|
||||||
}).then((res) => {
|
}).then((res) => {
|
||||||
this.getData();
|
this.getData();
|
||||||
});
|
});
|
||||||
|
Reference in New Issue
Block a user