|
|
@@ -85,31 +85,6 @@
|
|
|
@pagination="getList"
|
|
|
/>
|
|
|
|
|
|
- <!-- 添加或修改医生会员搭销对话框 -->
|
|
|
- <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
- <el-form-item label="企业外部联系人id" prop="exId">
|
|
|
- <el-input v-model="form.exId" placeholder="请输入企业外部联系人id" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="会员id" prop="fsUserId">
|
|
|
- <el-input v-model="form.fsUserId" placeholder="请输入会员id" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="销售id" prop="companyUserId">
|
|
|
- <el-input v-model="form.companyUserId" placeholder="请输入销售id" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="销售公司" prop="companyId">
|
|
|
- <el-input v-model="form.companyId" placeholder="请输入销售公司" />
|
|
|
- </el-form-item>
|
|
|
- <el-form-item label="医生id" prop="doctorId">
|
|
|
- <el-input v-model="form.doctorId" placeholder="请输入医生id" />
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
- <el-button @click="cancel">取 消</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
-
|
|
|
<!-- 处理记录弹窗 -->
|
|
|
<el-dialog
|
|
|
title="处理记录"
|
|
|
@@ -165,7 +140,7 @@
|
|
|
</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="处理时间" align="center" prop="createTime" width="180" />
|
|
|
+ <el-table-column label="处理时间" align="center" prop="updateTime" width="180" />
|
|
|
</el-table>
|
|
|
|
|
|
<!-- 分页组件 -->
|
|
|
@@ -337,6 +312,7 @@ export default {
|
|
|
userName: row.userName,
|
|
|
phone: row.phone,
|
|
|
fsUserId: row.fsUserId,
|
|
|
+ doctorId: row.doctorId,
|
|
|
companyUserName: row.companyUserName,
|
|
|
baseInfo: row.baseInfo,
|
|
|
}
|
|
|
@@ -392,29 +368,6 @@ export default {
|
|
|
this.single = selection.length!==1
|
|
|
this.multiple = !selection.length
|
|
|
},
|
|
|
-
|
|
|
- /** 提交按钮 */
|
|
|
- submitForm() {
|
|
|
- this.$refs["form"].validate(valid => {
|
|
|
- if (valid) {
|
|
|
- if (this.form.id != null) {
|
|
|
- // 假设 updateMemberSales 函数存在
|
|
|
- // updateMemberSales(this.form).then(response => {
|
|
|
- // this.msgSuccess("修改成功");
|
|
|
- // this.open = false;
|
|
|
- // this.getList();
|
|
|
- // });
|
|
|
- } else {
|
|
|
- // 假设 addMemberSales 函数存在
|
|
|
- // addMemberSales(this.form).then(response => {
|
|
|
- // this.msgSuccess("新增成功");
|
|
|
- // this.open = false;
|
|
|
- // this.getList();
|
|
|
- // });
|
|
|
- }
|
|
|
- }
|
|
|
- });
|
|
|
- },
|
|
|
/** 导出按钮操作 */
|
|
|
handleExport() {
|
|
|
const queryParams = this.queryParams;
|