Commit 7e9517de authored by 罗林杰's avatar 罗林杰

修改bug

parent 4de8239a
This diff is collapsed.
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
style="width: 150px" style="width: 150px"
/> />
</el-form-item> </el-form-item>
<el-form-item label="用户" prop="userNickName"> <el-form-item label="发起用户" prop="userNickName">
<el-input <el-input
v-model="queryParams.userNickName" v-model="queryParams.userNickName"
placeholder="请输入用户" placeholder="请输入用户"
...@@ -53,6 +53,16 @@ ...@@ -53,6 +53,16 @@
style="width: 150px" style="width: 150px"
/> />
</el-form-item> </el-form-item>
<el-form-item label="发起用户会员" prop="userCode">
<el-input
v-model="queryParams.userCode"
placeholder="请输入会员号"
clearable
:maxlength="50"
size="small"
style="width: 150px"
/>
</el-form-item>
<el-form-item label="目标用户" prop="targetNickName"> <el-form-item label="目标用户" prop="targetNickName">
<el-input <el-input
v-model="queryParams.targetNickName" v-model="queryParams.targetNickName"
...@@ -63,6 +73,16 @@ ...@@ -63,6 +73,16 @@
style="width: 150px" style="width: 150px"
/> />
</el-form-item> </el-form-item>
<el-form-item label="目标用户会员号" prop="targetCode">
<el-input
v-model="queryParams.targetCode"
placeholder="请输入会员号"
clearable
:maxlength="50"
size="small"
style="width: 150px"
/>
</el-form-item>
<el-form-item> <el-form-item>
<el-button <el-button
:class="commonField.queryClass" :class="commonField.queryClass"
...@@ -118,12 +138,12 @@ ...@@ -118,12 +138,12 @@
</el-table-column> </el-table-column>
<el-table-column label="发起用户" prop="userNickName" :show-overflow-tooltip="true"> <el-table-column label="发起用户" prop="userNickName" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.userNickName || '-' }} {{ scope.row.userNickName || '' }}{{ scope.row.userCode ? '(' + scope.row.userCode + ')' : '' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="目标用户" prop="userNickName" :show-overflow-tooltip="true"> <el-table-column label="目标用户" prop="userNickName" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.targetNickName || '-' }} {{ scope.row.targetNickName || '' }}{{ scope.row.targetCode ? '(' + scope.row.targetCode + ')' : '' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="备注" prop="remarks" :show-overflow-tooltip="true"> <el-table-column label="备注" prop="remarks" :show-overflow-tooltip="true">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment