addCustom.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743
  1. <template>
  2. <div class="addCustom_container">
  3. <el-form
  4. @submit.native.prevent
  5. inline
  6. :model="dataForm"
  7. :rules="formRule"
  8. hide-required-asterisk
  9. ref="dataForm"
  10. label-width="100px"
  11. class="demo-ruleForm">
  12. <el-form-item label="所属区域" prop="cuStatus" style="marginRight:120px;">
  13. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  14. <el-radio-group v-model="dataForm.area" size="medium" style="width:400px;">
  15. <el-radio border label="国内" style="width:184px;"></el-radio>
  16. <el-radio border label="海外" style="width:184px;marginLeft:0;"></el-radio>
  17. </el-radio-group>
  18. </el-form-item>
  19. <el-form-item label="客户全称" prop="custom_name">
  20. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  21. <!-- <el-autocomplete
  22. v-model="dataForm.custom_name"
  23. :fetch-suggestions="callbackHandle"
  24. placeholder="请输入公司全称"
  25. @input="getCompany(dataForm.custom_name)"
  26. @blur="checkCompany(dataForm.custom_name,'')"
  27. style="width:400px"
  28. clearable></el-autocomplete> -->
  29. <autocomplete
  30. ref="auto"
  31. v-model="dataForm.custom_name"
  32. :fetch-suggestions="callbackHandle"
  33. placeholder="请输入公司全称"
  34. @blur="checkCompany"
  35. @select="customNameSelect"
  36. @focus="checkCompanyfocus"
  37. :disabled='inquireSuccess'
  38. clearable
  39. value-key="value"
  40. style="width:400px"
  41. :popper-class="isCheck?'el-autocomplete-none':'el-autocomplete-suggestion-data-entry'"
  42. class="autocomplete-input"
  43. >
  44. <span v-if="dataForm.custom_name.length > 3" style="color:#409EFF;cursor: pointer;" slot="suffix" @click="$refs.auto.search(dataForm.custom_name)"> 查询</span>
  45. <template slot-scope="scope">
  46. <div v-if="scope.item.KeyNo" >
  47. {{scope.item.Name}}
  48. </div>
  49. <div v-else style="text-align:center">暂无数据</div>
  50. </template>
  51. </autocomplete>
  52. </el-form-item>
  53. <el-form-item label="社会信用码" prop="code" style="marginRight:120px;">
  54. <i style="color:#f00;fontSize:20px;position:absolute;left:-106px;top:10%;">*</i>
  55. <el-input
  56. v-model="dataForm.code"
  57. placeholder="请输入社会信用码"
  58. @blur="checkCompany"
  59. @focus="checkCompanyfocus"
  60. style="width:400px"
  61. disabled
  62. clearable></el-input>
  63. </el-form-item>
  64. <el-form-item v-if="dataForm.area==='海外'" label="所属国家" prop="Nation"
  65. :rules="[{required:true,message: '所属国家不能为空', trigger: 'change' }]">
  66. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  67. <el-select v-model="dataForm.Nation" placeholder="请选择" filterable style="width: 400px;">
  68. <el-option :label="item.cnName" :value="item.cnName" v-for="item in countryData" :key="item.code" >
  69. <div style="display: flex;justify-content: space-between;">
  70. <span>{{ item.cnName }}</span>
  71. <span style="color: #8492a6; font-size: 13px">{{ item.code }}</span>
  72. </div>
  73. </el-option>
  74. </el-select>
  75. </el-form-item>
  76. <el-form-item v-else label="客户地址" prop="city" :rules="[{
  77. required:true,
  78. message: '客户地址不能为空',
  79. trigger: 'change' }]">
  80. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  81. <search-dist-picker @selected="selectRegion"/>
  82. </el-form-item>
  83. <el-form-item label="客户状态" prop="cuStatus" style="marginRight:120px;">
  84. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  85. <el-radio-group v-model="dataForm.cuStatus" size="medium" style="width:400px;">
  86. <el-radio border label="试用" style="width:184px;">试用({{typeArr.includes('权益') ? 1 : 2}}个月)</el-radio>
  87. <el-radio border label="永续" style="width:184px;marginLeft:0;" v-if="Role=='admin'">永续</el-radio>
  88. </el-radio-group>
  89. </el-form-item>
  90. <el-form-item label="客户来源" prop="from">
  91. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  92. <el-select v-model="dataForm.from" placeholder="请选择客户来源" style="width:400px;" filterable>
  93. <el-option
  94. v-for="item in fromArr"
  95. :key="item.SourceId"
  96. :label="item.SourceName"
  97. :value="item.SourceName">
  98. </el-option>
  99. </el-select>
  100. </el-form-item>
  101. <el-form-item label="客户类型" prop="custype" style="marginRight:120px;">
  102. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  103. <el-select v-model="dataForm.custype" placeholder="请选择客户类型" style="width:400px;">
  104. <template>
  105. <el-option
  106. v-for="item in typeArr"
  107. :key="item"
  108. :label="item"
  109. :value="item">
  110. </el-option>
  111. </template>
  112. </el-select>
  113. </el-form-item>
  114. <el-form-item label="行业" prop="trade">
  115. <i style="color:#f00;fontSize:20px;position:absolute;left:-58px;top:10%;">*</i>
  116. <el-select v-model="dataForm.trade" placeholder="请选择行业" style="width:400px;" @focus="slideTrade">
  117. <el-option
  118. v-for="item in tradeArr"
  119. :key="item"
  120. :label="item.IndustryName"
  121. :value="item.IndustryId">
  122. </el-option>
  123. </el-select>
  124. </el-form-item>
  125. <el-form-item label="所属销售" prop="sales" style="marginRight:120px;">
  126. <i style="color:#f00;fontSize:20px;position:absolute;left:-90px;top:10%;">*</i>
  127. <el-select v-model="dataForm.sales" placeholder="请选择销售" style="width:400px;" filterable :disabled="Role=='rai_seller'||Role=='ficc_seller'||Role=='ficc_sell_director'">
  128. <el-option
  129. v-for="item in salesArr"
  130. :key="item.AdminId"
  131. :label="item.RealName"
  132. :value="item.AdminId">
  133. </el-option>
  134. </el-select>
  135. </el-form-item>
  136. <!-- <el-form-item prop="addreason" label="备注" >
  137. <i style="color:#f00;fontSize:20px;position:absolute;left:-58px;top:10%;">*</i>
  138. <el-input
  139. v-model="dataForm.addreason"
  140. placeholder="请输入备注"
  141. style="width:400px"
  142. clearable></el-input>
  143. </el-form-item> -->
  144. <el-form-item prop="money" style="disply:block" label="管理规模" v-if="dataForm.custype=='权益'" >
  145. <el-select style="width:400px" v-model="dataForm.money" clearable placeholder="请选择管理规模(选填)">
  146. <el-option
  147. v-for="item in optionsMoney"
  148. :key="item.value"
  149. :label="item.label"
  150. :value="item.value">
  151. </el-option>
  152. </el-select>
  153. </el-form-item>
  154. <el-form-item class="textarea_item" style="width:90%;paddingLeft:26px;">
  155. <label style="display:block;marginBottom:20px;fontSize:16px;position:relative;">
  156. <i style="color:#f00;fontSize:20px;position:absolute;left:-15px;top:10%;">*</i>
  157. 权限设置
  158. </label>
  159. <ul class="menu_lists">
  160. <li v-for="item in authList" :key="item.ClassifyName" class="menu_item">
  161. <el-checkbox :indeterminate="item.isIndeterminate" v-model="item.checkAll" :disabled="setSelectPerDisabled(item)" @change="handleCheckAll(item)" style="marginRight:30px;fontWeight:bold;minWidth:90px;">{{item.ClassifyName+':'}}</el-checkbox>
  162. <el-checkbox-group v-model="item.CheckList" @change="handleChecked(item)">
  163. <el-checkbox v-for="list in item.Items" :label="list.ChartPermissionId" :key="list.ChartPermissionId" class="list_item" :disabled="list.IsPublic==1">{{list.PermissionName}}</el-checkbox>
  164. </el-checkbox-group>
  165. </li>
  166. </ul>
  167. </el-form-item>
  168. <!-- <el-form-item class="textarea_item" style="width:90%;paddingLeft:26px;" v-if="dataForm.custype=='权益'">
  169. <label style="display:block;marginBottom:20px;fontSize:16px;position:relative;">
  170. <i style="color:#f00;fontSize:20px;position:absolute;left:-15px;top:10%;">*</i>
  171. 权限设置
  172. </label>
  173. <jurisdiction-check type="新增" :citiesEquity="citiesEquity" :citiesListEquity="citiesListEquity" ref="childrenCheck" />
  174. <ul class="menu_lists">
  175. <li v-for="item in authList" :key="item.ClassifyName" class="menu_item">
  176. <el-checkbox :indeterminate="item.isIndeterminate" v-model="item.checkAll" :disabled="item.ClassifyName === '宏观经济'" @change="handleCheckAll(item)" style="marginRight:30px;fontWeight:bold;minWidth:90px;">{{item.ClassifyName+':'}}</el-checkbox>
  177. <el-checkbox-group v-model="item.CheckList" @change="handleChecked(item)">
  178. <el-checkbox v-for="list in item.Items" :label="list.ChartPermissionId" :key="list.ChartPermissionId" class="list_item" :disabled="list.ChartPermissionId==1">{{list.PermissionName}}</el-checkbox>
  179. </el-checkbox-group>
  180. </li>
  181. </ul>
  182. </el-form-item> -->
  183. </el-form>
  184. <div style="display:flex;justify-content:center;margin:80px 0 0;">
  185. <el-button type="primary" style="width:80px;marginRight:24px;" @click="saveHandle">保存</el-button>
  186. <el-button type="primary" plain style="width:80px;" @click="$router.go(-1)">取消</el-button>
  187. </div>
  188. <!-- 添加联系人弹窗 -->
  189. <Contactdia
  190. :id="companyId"
  191. :title="'新增联系人'"
  192. :userForm="diaform"
  193. :custom_name="dataForm.custom_name"
  194. :isShowclose="isShowclose"
  195. :isAddContact="isAddContact"
  196. :regionType="regionType"
  197. :isAddUser="true"
  198. :needCard="true"
  199. @cancel="canceldialog">
  200. </Contactdia>
  201. <!-- 检查客户弹窗 -->
  202. <el-dialog
  203. :visible.sync="isCheck"
  204. :close-on-click-modal="false"
  205. :modal-append-to-body='false'
  206. :show-close="false"
  207. center
  208. width="560px">
  209. <div slot="title" style="display:flex;alignItems:center;">
  210. <span style="fontSize:16px;">提示</span>
  211. </div>
  212. <div style="textAlign:center;fontSize:16px;">
  213. <span v-if="codeRepeat==1">该客户属于{{repeatName}}客户,是否领取?</span>
  214. <span v-else>该客户已存在,请前往【客户检索】页面核实</span>
  215. </div>
  216. <div style="display:flex;justify-content:center;margin:75px 0 50px;">
  217. <el-button type="primary" style="width:80px;marginRight:24px;" @click="goPickHandle">{{codeRepeat==1 ?'去领取':'去核实'}}</el-button>
  218. <el-button type="primary" plain style="width:80px;" @click="closeDia">取消</el-button>
  219. </div>
  220. </el-dialog>
  221. </div>
  222. </template>
  223. <script>
  224. import { customInterence } from '@/api/api.js'
  225. import country from "@/utils/countryData"
  226. //import{province_sorce,city_sorce} from '@/utils/distpicker';
  227. import Contactdia from '../compontents/Contactdialog'
  228. // import JurisdictionCheck from '../compontents/jurisdictionCheck.vue';
  229. import autocomplete from "@/components/autocomplete.vue";
  230. import searchDistPicker from '@/components/searchDistPicker.vue';
  231. export default {
  232. name:'',
  233. components: {Contactdia,autocomplete,searchDistPicker},
  234. computed:{
  235. Role() {
  236. let role = localStorage.getItem('Role') || '';
  237. return role;
  238. },
  239. typeArr() {
  240. let type = localStorage.getItem('RoleType') || '';
  241. if(type == 'ficc') {
  242. return ['ficc']
  243. }else if(type == '权益') {
  244. return ['权益']
  245. }else {
  246. return ['ficc','权益']
  247. }
  248. }
  249. },
  250. data () {
  251. /* this.province_sorce=province_sorce
  252. this.city_sorce=city_sorce */
  253. this.countryData = country
  254. return {
  255. codeDisable:false,//是否可编辑社会信用码国内可
  256. companyList:[],
  257. dataForm:{
  258. area:'国内',
  259. custom_name:'',
  260. code:'',
  261. province:'',
  262. city:'',
  263. cuStatus:'试用',
  264. custype:'',
  265. trade:'',
  266. from:'',
  267. sales:'',
  268. addreason:'',
  269. money:''
  270. },
  271. optionsMoney:[{value:'1',label:'50亿以下'},{value:'2',label:'50~100亿'},{value:'3',label:'100亿以上'}],
  272. regionType:'',
  273. formRule:{
  274. /* 客户名称 */
  275. custom_name:[
  276. { required: true, message: '公司全称不能为空', trigger: 'change' },
  277. ],
  278. /* 社会信用码 */
  279. code:[
  280. { required: true, message: '社会信用码不能为空', trigger: 'blur' },
  281. ],
  282. /* 客户状态 */
  283. cuStatus:[
  284. { required: true, message: '客户状态不能为空', trigger: 'blur' },
  285. ],
  286. /* 客户类型 */
  287. custype:[
  288. { required: true, message: '客户类型不能为空', trigger: 'blur' },
  289. ],
  290. /* 行业 */
  291. trade:[
  292. { required: true, message: '行业不能为空', trigger: 'blur' },
  293. ],
  294. /* 客户来源 */
  295. from:[
  296. { required: true, message: '客户来源不能为空', trigger: 'blur' },
  297. ],
  298. /* 销售 */
  299. sales:[
  300. { required: true, message: '所属销售不能为空', trigger: 'blur' },
  301. ],
  302. /* 备注 */
  303. // addreason:[
  304. // { required: true, message: '备注不能为空', trigger: 'blur' },
  305. // ],
  306. },
  307. tradeArr:[],//行业分类
  308. fromArr:[],//客户来源
  309. salesArr:[],//销售列表
  310. authList:[],//权限列表
  311. diaform:{
  312. name:'',
  313. sex:1,
  314. telCode:'86',
  315. tel1:'',
  316. tel2:'',
  317. mail:'',
  318. post:'',
  319. desiger:'',
  320. depart:'',
  321. carte:'',
  322. mailQY:'',
  323. telQY:'',
  324. Source:'add_custom',
  325. },
  326. companyId:'',//新增成功生成的公司id
  327. isAddContact:false,//添加联系人
  328. isShowclose:false,//是否可取消
  329. isCheck:false,//检查客户弹窗
  330. repeatId:'',//重复公司id
  331. repeatName:'',//重复公司类型
  332. nameRepeat:false,
  333. codeRepeat:false,
  334. // equityCheckData:[], //权益复选框
  335. // citiesEquity:[], //
  336. // citiesListEquity:[], //
  337. isCheckCompanyInfo:false, //
  338. checkCompanyfocusIs:false, //
  339. inquireSuccess:false,
  340. };
  341. },
  342. watch: {
  343. 'dataForm.area': {
  344. handler(newval) {
  345. if(newval == '海外') {
  346. this.codeDisable = true;
  347. this.dataForm.code = 'HZ' + new Date().getTime();
  348. this.dataForm.province='海外'
  349. setTimeout(()=>{
  350. this.dataForm.city='其它市'
  351. },0)
  352. }else {
  353. this.codeDisable = false;
  354. this.dataForm.code = '';
  355. this.dataForm.province=''
  356. this.dataForm.city=''
  357. }
  358. }
  359. },
  360. 'dataForm.custype': {
  361. handler() {
  362. // this.dataForm.trade = '';
  363. this.getIndustry();
  364. this.getAuthBasic();
  365. }
  366. },
  367. },
  368. methods: {
  369. /* 获取客户来源数据 */
  370. getCustomerSourceList(){
  371. customInterence.customerSourceList({}).then(res=>{
  372. if(res.Ret===200){
  373. this.fromArr=res.Data.List
  374. }
  375. })
  376. },
  377. /* 获取客户名称 */
  378. getCompany(query) {
  379. if(query) {
  380. customInterence.companySearch({
  381. KeyWord:query
  382. }).then(res =>{
  383. if(res.Ret === 200) {
  384. let arr = [];
  385. if(res.Data.List) {
  386. res.Data.List.forEach(item => {
  387. let obj = {
  388. ...item,
  389. value:item.CompanyName
  390. }
  391. arr.push(obj)
  392. })
  393. }
  394. this.companyList = arr;
  395. }
  396. })
  397. }else {
  398. this.companyList = []
  399. }
  400. },
  401. checkCompanyfocus(){
  402. this.checkCompanyfocusIs =true;
  403. setTimeout(() => {
  404. this.checkCompanyfocusIs =false;
  405. },500)
  406. },
  407. /* 客户名称/信用码失焦时校验客户名称是否存在 存在就提示 */
  408. checkCompany() {
  409. setTimeout(()=>{
  410. if(this.checkCompanyfocusIs) return
  411. if((!this.dataForm.custom_name && !this.dataForm.code) || (this.isCheckCompanyInfo && this.dataForm.custom_name)) return
  412. customInterence.checkCompanyInfo({
  413. CompanyName:this.dataForm.custom_name,
  414. CreditCode:this.dataForm.code
  415. }).then(res =>{
  416. if(res.Ret === 200){
  417. if(res.Data.RepeatStatus > 0) {
  418. this.repeatId = res.Data.CompanyId;
  419. this.repeatName = res.Data.ProductName;
  420. this.nameRepeat = res.Data.RepeatStatus
  421. this.codeRepeat = res.Data.Status
  422. this.isCheck = true;
  423. }else {
  424. this.nameRepeat = 0
  425. this.isCheck = false;
  426. }
  427. }
  428. })
  429. },500)
  430. },
  431. /* 去领取 */
  432. goPickHandle() {
  433. this.$router.push({
  434. path:'/customSearch',
  435. query:{
  436. name: this.nameRepeat == 2 ? this.dataForm.custom_name :'',
  437. code: this.nameRepeat == 1 ? this.dataForm.code : ''
  438. }
  439. })
  440. },
  441. /* 关闭检查弹窗 */
  442. closeDia() {
  443. this.repeatId = '';
  444. this.repeatName = '';
  445. this.isCheck = false;
  446. },
  447. async callbackHandle(data,cb) {
  448. if (data) {
  449. this.isCheckCompanyInfo =true
  450. cb([]);
  451. let res = await customInterence.companyQccSearch({ KeyWord: data});
  452. if (res.Ret === 200) {
  453. this.isCheckCompanyInfo =false;
  454. if (res.Data && res.Data.length > 0) {
  455. let arr = res.Data.map((item) => {
  456. return { value:item.Name, ...item };
  457. });
  458. cb(arr);
  459. }else{
  460. cb([{}]);
  461. this.checkCompany()
  462. }
  463. }
  464. }
  465. },
  466. //选中后增加社会信用码
  467. customNameSelect(value) {
  468. this.dataForm.code = value.CreditCode
  469. this.inquireSuccess = true;
  470. setTimeout(async()=>{
  471. this.checkCompany()
  472. },10)
  473. },
  474. /* 获取基本权限信息 */
  475. getAuthBasic() {
  476. customInterence.authList({
  477. CompanyType:this.dataForm.custype,
  478. NoUpgrade:true
  479. }).then(res => {
  480. if(res.Ret === 200) {
  481. let newArr = [];
  482. res.Data.List.length&&res.Data.List.forEach(item => {
  483. item.Items=item.Items||[]
  484. const temarr=item.Items?item.Items.filter(_e=>_e.IsPublic==1):[]
  485. let obj = {
  486. ...item,
  487. // checkAll:false,
  488. // isIndeterminate:item.ClassifyName === '宏观经济'?true:false,
  489. // 修改为通过公有私有判断
  490. checkAll:item.Items.length>0?temarr.length==item.Items.length:false,
  491. isIndeterminate:item.Items.length>0?temarr.length==item.Items.length?false:item.Items.some(_e=>_e.IsPublic==1):false,
  492. CheckList:item.CheckList||[],
  493. }
  494. newArr.push(obj)
  495. })
  496. this.authList = newArr;
  497. console.log(this.authList);
  498. // if(this.dataForm.custype == '权益') {
  499. // this.citiesEquity = res.Data.ListType ? res.Data.ListType[0].Items : [];
  500. // this.citiesListEquity = res.Data.List ? res.Data.List[0].Items : [];
  501. // }else {
  502. // let newArr = [];
  503. // res.Data.List.length&&res.Data.List.forEach(item => {
  504. // let obj = {
  505. // checkAll:false,
  506. // isIndeterminate:item.ClassifyName === '宏观经济'?true:false,
  507. // ...item,
  508. // }
  509. // newArr.push(obj)
  510. // })
  511. // this.authList = newArr;
  512. // }
  513. }
  514. })
  515. },
  516. //控制权限设置是否禁用编辑
  517. setSelectPerDisabled(data){
  518. const arr=data.Items?data.Items.filter(_e=>_e.IsPublic==1):[]
  519. return arr.length==data.Items.length
  520. },
  521. /* 获取销售 */
  522. getSale() {
  523. customInterence.saleslist().then(res => {
  524. if(res.Ret === 200) {
  525. this.salesArr = res.Data.List;
  526. }
  527. })
  528. },
  529. /* 根据类型获取行业 */
  530. getIndustry() {
  531. customInterence.getindustry({
  532. Classify:this.dataForm.custype
  533. }).then(res => {
  534. if(res.Ret === 200) {
  535. this.tradeArr = res.Data.List || [];
  536. }
  537. })
  538. },
  539. /* 保存 */
  540. saveHandle() {
  541. this.$refs.dataForm.validate((valid) => {
  542. if (valid) {
  543. let checkArr = []
  544. checkArr = this.authList.map(item =>{
  545. if(item.CheckList.length) {
  546. return item.CheckList
  547. }
  548. })
  549. let [flatArr] = checkArr
  550. if(this.nameRepeat){
  551. this.$message.warning('客户已存在,请重新填写!')
  552. return
  553. }
  554. if(this.codeRepeat){
  555. this.$message.warning('社会信用码已存在!')
  556. return
  557. }
  558. this.regionType=this.dataForm.area
  559. this.isAddContact = true;
  560. }
  561. }
  562. )},
  563. /* 选择行业先校验是否选择了客户类型提示 */
  564. slideTrade(e) {
  565. if(!this.dataForm.custype) {
  566. this.$message.warning('请先选择客户类型!')
  567. }
  568. },
  569. canceldialog(type,id) {
  570. this.isAddContact = false;
  571. if(type == 1) {
  572. /* 新增联系人之后在新增客户 */
  573. let checkArr = [];
  574. this.authList.forEach(item => {
  575. if(item.CheckList.length) {
  576. checkArr.push(item.CheckList)
  577. }
  578. })
  579. let PermissionIds = checkArr.flat(2).join(',');
  580. // if(this.dataForm.custype==='权益'){
  581. // PermissionIds = this.equityCheckData.join(',')
  582. // }else {
  583. // PermissionIds = checkArr.flat(2).join(',');
  584. // }
  585. let params = {
  586. RegionType:this.dataForm.area,
  587. CompanyName:this.dataForm.custom_name,
  588. CreditCode:this.dataForm.code,
  589. Province:this.dataForm.province,
  590. City:this.dataForm.city,
  591. Status:this.dataForm.cuStatus,
  592. CompanyType:this.dataForm.custype,
  593. IndustryId:this.dataForm.trade,
  594. Source:this.dataForm.from,
  595. SellsId:this.dataForm.sales,
  596. Reasons:this.dataForm.addreason,
  597. PermissionIds,
  598. Scale:this.dataForm.money,
  599. UserId:Number(id),
  600. Nation:this.dataForm.area==='海外'?this.dataForm.Nation:''
  601. }
  602. customInterence.customAdd(params).then(res => {
  603. if(res.Ret === 200) {
  604. this.companyId = res.Data.CompanyId;
  605. // this.$message.success('新增客户成功,请添加联系人');
  606. this.$router.replace({
  607. path:'/customDetail',
  608. query:{
  609. id:this.companyId
  610. }
  611. })
  612. }
  613. })
  614. }else {
  615. this.$message.warning('新增失败')
  616. }
  617. },
  618. /* 地区选择 */
  619. selectRegion(data) {
  620. this.dataForm.province = data.province.value;
  621. this.dataForm.city = data.city.value =='市'?'':data.city.value;
  622. },
  623. //选地地区时 选则的省份改变重置city为空
  624. provinceChange(){
  625. this.dataForm.city=''
  626. },
  627. /* 选择全选或取消全选 */
  628. handleCheckAll(item) {
  629. // 取到所有的子菜单id
  630. //获取公有的id合集
  631. let publicIds=[]
  632. let ids = item.Items.map(item =>{
  633. if(item.IsPublic==1){
  634. publicIds.push(item.ChartPermissionId)
  635. }
  636. return item.ChartPermissionId
  637. })
  638. item.CheckList = item.checkAll ? ids : publicIds;
  639. item.isIndeterminate = publicIds.length>0&&!item.checkAll?true:false;
  640. },
  641. /* 复选框組选中时 */
  642. handleChecked(item) {
  643. let len = item.CheckList.length;
  644. item.checkAll = len === item.Items.length;
  645. item.isIndeterminate = len > 0 && len < item.Items.length;
  646. },
  647. },
  648. created() {
  649. this.getCustomerSourceList()
  650. },
  651. mounted() {
  652. /* 默认类型和默认销售 */
  653. this.dataForm.custype = this.typeArr[0];
  654. this.dataForm.sales = Number(localStorage.getItem('AdminId')) || '';
  655. this.getSale();
  656. }
  657. }
  658. </script>
  659. <style lang='scss'>
  660. .addCustom_container {
  661. min-height: calc(100vh - 160px);
  662. padding:30px 40px 60px 60px;
  663. background: #fff;
  664. position: relative;
  665. border: 1px solid #ECECEC;
  666. border-radius: 4px;
  667. box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
  668. font-size: 16px;
  669. color: #666;
  670. /* reset */
  671. .el-form-item {
  672. margin-bottom: 30px;
  673. &:last-child {
  674. margin-bottom: 0;
  675. }
  676. }
  677. .select-dist-picker{
  678. width:400px;
  679. }
  680. .textarea_item .el-form-item__content {
  681. width: 100%;
  682. }
  683. .el-checkbox-group {
  684. height: 40px;
  685. }
  686. .distpicker-address-wrapper select {
  687. width: 198px;
  688. }
  689. /* */
  690. .menu_lists {
  691. padding: 40px 18px;
  692. border: 1px dashed #AAB4CC;
  693. border-radius: 4px;
  694. .menu_item {
  695. display: flex;
  696. // align-items: center;
  697. margin-bottom: 40px;
  698. &:last-child {
  699. margin-bottom: 0;
  700. }
  701. .list_item {
  702. margin-right: 30px;
  703. &:last-child {
  704. margin-right: 0;
  705. }
  706. }
  707. }
  708. }
  709. }
  710. .el-autocomplete-suggestion-data-entry {
  711. width:auto !important;
  712. min-width: 400px;
  713. }
  714. .el-autocomplete-none {
  715. display: none !important;
  716. }
  717. .autocomplete-input {
  718. .el-input__inner {
  719. padding-right:65px ;
  720. }
  721. input {
  722. overflow: hidden; // 溢出隐藏
  723. text-overflow: ellipsis; // 显示省略号
  724. white-space: nowrap; // 不换行
  725. }
  726. }
  727. </style>