Commit c2d42b44 by 无尘

fix: 修改选择商户

parent a7d4b6e6
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* @Author: 无尘 * @Author: 无尘
* @Date: 2020-08-31 16:11:50 * @Date: 2020-08-31 16:11:50
* @LastEditors: 无尘 * @LastEditors: 无尘
* @LastEditTime: 2020-09-11 17:01:07 * @LastEditTime: 2020-09-11 17:06:28
--> -->
<!-- <!--
<check-name-dialog :sync-data="syncData" @closeSet="closeSet"></check-name-dialog> <check-name-dialog :sync-data="syncData" @closeSet="closeSet"></check-name-dialog>
...@@ -114,7 +114,7 @@ export default { ...@@ -114,7 +114,7 @@ export default {
const that = this; const that = this;
let params = { let params = {
enterpriseId: that.syncData.enterpriseId, enterpriseId: that.syncData.enterpriseId,
userName: that.ruleForm.userName userName: that.firstName + that.ruleForm.userName
}; };
checkName(params) checkName(params)
.then(res => { .then(res => {
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
* @Author: 无尘 * @Author: 无尘
* @Date: 2019-03-20 14:36:37 * @Date: 2019-03-20 14:36:37
* @LastEditors: 无尘 * @LastEditors: 无尘
* @LastEditTime: 2020-09-11 16:36:02 * @LastEditTime: 2020-09-11 17:13:00
--> -->
<template> <template>
<div class="my-customer-wrap common-set-wrap"> <div class="my-customer-wrap common-set-wrap">
...@@ -351,10 +351,14 @@ export default { ...@@ -351,10 +351,14 @@ export default {
/** /**
* @description: 选择商户,获取审核管理员 * @description: 选择商户,获取审核管理员
* @param {Object} item * @param {Object} item
* @returns {Boolean}
* @author: 无尘 * @author: 无尘
*/ */
getAdmin(item) { getAdmin(item) {
const that = this; const that = this;
if (that.authForm.enterpriseId == item.enterpriseId) {
return false;
}
that.syncData = item; // 显示检验姓名弹窗 that.syncData = item; // 显示检验姓名弹窗
that.checkShow = true; that.checkShow = true;
that.authForm.enterpriseId = ''; that.authForm.enterpriseId = '';
......
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