|
@@ -335,7 +335,8 @@ var vm = new Vue({
|
|
|
},
|
|
|
defaultSource: function() {
|
|
|
// 默认提交成功不显示广告图和邮箱文案 如果是结构化数据则显示
|
|
|
- return this.source.indexOf('structed') === -1
|
|
|
+ var noEmailSource = ['structedData', 'pc_data_custom_export']
|
|
|
+ return noEmailSource.indexOf(this.source) === -1
|
|
|
},
|
|
|
showBranch: function () {
|
|
|
// 切换到总裁或总经理之后 把之前选择的部门清空
|
|
@@ -555,7 +556,7 @@ var vm = new Vue({
|
|
|
var _this = this
|
|
|
$.ajax({
|
|
|
type:'POST',
|
|
|
- url: source.indexOf('structedData') > -1 ? '/salesLeads/collectInfo' : '/salesLeads/official/notLogin',
|
|
|
+ url: '/salesLeads/collectInfo',
|
|
|
contentType: "application/json;charset=utf-8",
|
|
|
data: JSON.stringify(params),
|
|
|
success:function (res) {
|