|
@@ -106,8 +106,8 @@
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
- <a-form-model-item label="受邀人" prop="userPhone" :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol">
|
|
|
- <a-input v-model.trim="queryParam.userPhone" placeholder="请输入受邀人手机号或姓名" id="userManageList-userPhone" @pressEnter="$refs.table.refresh(true)" allowClear/>
|
|
|
+ <a-form-model-item label="邀请人" prop="userPhone" :label-col="formItemLayout.labelCol" :wrapper-col="formItemLayout.wrapperCol">
|
|
|
+ <a-input v-model.trim="queryParam.userPhone" placeholder="请输入邀请人手机号或姓名" id="userManageList-userPhone" @pressEnter="$refs.table.refresh(true)" allowClear/>
|
|
|
</a-form-model-item>
|
|
|
</a-col>
|
|
|
<a-col style="float: right">
|
|
@@ -206,14 +206,14 @@ export default {
|
|
|
labelNoList: [], // 网点标签
|
|
|
firstDeliveryStationNo: undefined, // 首次投递
|
|
|
introType: '', // 注册方式
|
|
|
- userPhone: '' // 受邀人
|
|
|
+ userPhone: '' // 邀请人
|
|
|
},
|
|
|
loading: false, // 导出loading
|
|
|
// 表头
|
|
|
columns: [{ title: '序号', dataIndex: 'no', width: 80, align: 'center', fixed: 'left' },
|
|
|
{ title: '用户手机', dataIndex: 'mobile', width: 150, align: 'center' },
|
|
|
{ title: '用户注册方式', dataIndex: 'introTypeDictValue', width: 150, align: 'center', customRender: (text) => { return text || '--' } },
|
|
|
- { title: '受邀人', dataIndex: 'person', width: 150, align: 'center', scopedSlots: { customRender: 'person' } },
|
|
|
+ { title: '邀请人', dataIndex: 'person', width: 150, align: 'center', scopedSlots: { customRender: 'person' } },
|
|
|
{ title: '用户身份', dataIndex: 'customerRoleDictValue', width: 100, align: 'center' },
|
|
|
{ title: '乐豆余额', dataIndex: 'currentGold', width: 100, align: 'center', customRender: (text) => { return text || 0 } },
|
|
|
{ title: '累计乐豆', dataIndex: 'totalGold', width: 100, align: 'center', customRender: (text) => { return text || 0 } },
|