|
@@ -408,14 +408,14 @@ Vue.component('keep-component', {
|
|
|
}
|
|
|
if (type) {
|
|
|
$.post('/salesLeads/retainedCapital' + '?source=article_collection', { source: 'article_collection' }).done(function (r) {
|
|
|
- var checkKeys = ['name', 'phone', 'company', 'mail', 'branch', 'position']
|
|
|
+ var checkKeys = ['name', 'phone', 'company', 'mail', 'branch', 'position', 'companyType']
|
|
|
var result = checkRequiredKeys(checkKeys, r.info)
|
|
|
// 判断当前信息否在其他页面留资 如果全部留资 直接弹窗提交成功
|
|
|
- if (result) {
|
|
|
+ if (result || !window.isFree) {
|
|
|
return tempFn()
|
|
|
}
|
|
|
if (r && r.data) {
|
|
|
- if (r.data.retainedCapital) {
|
|
|
+ if (r.data.retainedCapital || !result) {
|
|
|
_this.$dialog.close()
|
|
|
_this.$dialog.confirm({
|
|
|
message: '重要项目一键创建标签收藏!请完善个人信息,为您匹配精准服务',
|