wotokol-edm 1.1.11 → 1.1.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/wotokol-edm.common.js +23 -17
- package/wotokol-edm.common.js.gz +0 -0
- package/wotokol-edm.css +1 -1
- package/wotokol-edm.css.gz +0 -0
- package/wotokol-edm.umd.js +23 -17
- package/wotokol-edm.umd.js.gz +0 -0
- package/wotokol-edm.umd.min.js +1 -1
- package/wotokol-edm.umd.min.js.gz +0 -0
package/wotokol-edm.css.gz
CHANGED
|
Binary file
|
package/wotokol-edm.umd.js
CHANGED
|
@@ -98618,8 +98618,8 @@ function moveBlogRel(data) {
|
|
|
98618
98618
|
}
|
|
98619
98619
|
|
|
98620
98620
|
// 刷新推广计划结果
|
|
98621
|
-
function refreshInboxCrm(
|
|
98622
|
-
return
|
|
98621
|
+
function refreshInboxCrm(data) {
|
|
98622
|
+
return request_post(`/edm/inbox/refreshInboxCrm`, data);
|
|
98623
98623
|
}
|
|
98624
98624
|
|
|
98625
98625
|
// 生成AI回信策略
|
|
@@ -106426,8 +106426,8 @@ var EmailIntention_component = normalizeComponent(
|
|
|
106426
106426
|
)
|
|
106427
106427
|
|
|
106428
106428
|
/* harmony default export */ var EmailIntention = (EmailIntention_component.exports);
|
|
106429
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/EmailPlan/index.vue?vue&type=template&id=
|
|
106430
|
-
var
|
|
106429
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-82.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/templateLoader.js??ruleSet[1].rules[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/EmailPlan/index.vue?vue&type=template&id=4fad5252&scoped=true
|
|
106430
|
+
var EmailPlanvue_type_template_id_4fad5252_scoped_true_render = function render() {
|
|
106431
106431
|
var _vm = this,
|
|
106432
106432
|
_c = _vm._self._c;
|
|
106433
106433
|
return _c('el-dialog', {
|
|
@@ -106521,7 +106521,7 @@ var EmailPlanvue_type_template_id_97959786_scoped_true_render = function render(
|
|
|
106521
106521
|
staticClass: "el-icon-right"
|
|
106522
106522
|
})])])]], 2)])]);
|
|
106523
106523
|
};
|
|
106524
|
-
var
|
|
106524
|
+
var EmailPlanvue_type_template_id_4fad5252_scoped_true_staticRenderFns = [];
|
|
106525
106525
|
|
|
106526
106526
|
;// ./src/api/send/outbox2.js
|
|
106527
106527
|
|
|
@@ -106642,6 +106642,7 @@ function pagePlan(data) {
|
|
|
106642
106642
|
},
|
|
106643
106643
|
methods: {
|
|
106644
106644
|
close() {
|
|
106645
|
+
console.log("okkk");
|
|
106645
106646
|
this.$emit("update:visible", false);
|
|
106646
106647
|
},
|
|
106647
106648
|
getPlanList() {
|
|
@@ -106694,9 +106695,13 @@ function pagePlan(data) {
|
|
|
106694
106695
|
type: "success",
|
|
106695
106696
|
message: `${this.$t("inboxDetail.planVal")}${this.isHasPlan ? this.$t("inboxDetail.planMove") : this.$t("inboxDetail.planGL")}${this.$t("inboxDetail.success")}`
|
|
106696
106697
|
});
|
|
106697
|
-
|
|
106698
|
+
const planName = this.planOpts.find(item => item.planId === this.planId)?.name;
|
|
106699
|
+
refreshInboxCrm({
|
|
106700
|
+
maxId: this.maxId,
|
|
106701
|
+
planId: this.planId,
|
|
106702
|
+
planName: planName
|
|
106703
|
+
}).then(res => {
|
|
106698
106704
|
if (res && res.code === "0") {
|
|
106699
|
-
const planName = this.planOpts.find(item => item.planId === this.planId)?.name;
|
|
106700
106705
|
this.$emit("change", this.planId, planName);
|
|
106701
106706
|
this.close();
|
|
106702
106707
|
}
|
|
@@ -106717,7 +106722,6 @@ function pagePlan(data) {
|
|
|
106717
106722
|
}],
|
|
106718
106723
|
contactStatus: 1,
|
|
106719
106724
|
inviteStatus: 1,
|
|
106720
|
-
// contactUserId: this.detailData.userId,
|
|
106721
106725
|
latestSendTime: this.detailData.sendTime
|
|
106722
106726
|
}).then(res => {
|
|
106723
106727
|
if (res.code == "0") {
|
|
@@ -106726,12 +106730,14 @@ function pagePlan(data) {
|
|
|
106726
106730
|
message: res.message,
|
|
106727
106731
|
customClass: "custom-message"
|
|
106728
106732
|
});
|
|
106733
|
+
const planName = this.planOpts.find(item => item.planId === this.planId)?.name;
|
|
106729
106734
|
refreshOutboxDetail({
|
|
106730
106735
|
id: this.rowData.id,
|
|
106731
|
-
outboxId: this.rowData.outboxId
|
|
106736
|
+
outboxId: this.rowData.outboxId,
|
|
106737
|
+
planId: this.planId,
|
|
106738
|
+
planName: planName
|
|
106732
106739
|
}).then(res => {
|
|
106733
106740
|
if (res && res.code === "0") {
|
|
106734
|
-
const planName = this.planOpts.find(item => item.planId === this.planId);
|
|
106735
106741
|
this.$emit("change", this.planId, planName);
|
|
106736
106742
|
this.close();
|
|
106737
106743
|
}
|
|
@@ -106758,15 +106764,15 @@ function pagePlan(data) {
|
|
|
106758
106764
|
});
|
|
106759
106765
|
;// ./src/components/EmailPlan/index.vue?vue&type=script&lang=js
|
|
106760
106766
|
/* harmony default export */ var components_EmailPlanvue_type_script_lang_js = (EmailPlanvue_type_script_lang_js);
|
|
106761
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/EmailPlan/index.vue?vue&type=style&index=0&id=
|
|
106767
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/EmailPlan/index.vue?vue&type=style&index=0&id=4fad5252&prod&lang=scss&scoped=true
|
|
106762
106768
|
// extracted by mini-css-extract-plugin
|
|
106763
106769
|
|
|
106764
|
-
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=0&id=
|
|
106770
|
+
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=0&id=4fad5252&prod&lang=scss&scoped=true
|
|
106765
106771
|
|
|
106766
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/EmailPlan/index.vue?vue&type=style&index=1&id=
|
|
106772
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-64.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-64.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-64.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-64.use[3]!./node_modules/@vue/vue-loader-v15/lib/index.js??vue-loader-options!./src/components/EmailPlan/index.vue?vue&type=style&index=1&id=4fad5252&prod&lang=scss
|
|
106767
106773
|
// extracted by mini-css-extract-plugin
|
|
106768
106774
|
|
|
106769
|
-
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=1&id=
|
|
106775
|
+
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=1&id=4fad5252&prod&lang=scss
|
|
106770
106776
|
|
|
106771
106777
|
;// ./src/components/EmailPlan/index.vue
|
|
106772
106778
|
|
|
@@ -106780,11 +106786,11 @@ function pagePlan(data) {
|
|
|
106780
106786
|
|
|
106781
106787
|
var EmailPlan_component = normalizeComponent(
|
|
106782
106788
|
components_EmailPlanvue_type_script_lang_js,
|
|
106783
|
-
|
|
106784
|
-
|
|
106789
|
+
EmailPlanvue_type_template_id_4fad5252_scoped_true_render,
|
|
106790
|
+
EmailPlanvue_type_template_id_4fad5252_scoped_true_staticRenderFns,
|
|
106785
106791
|
false,
|
|
106786
106792
|
null,
|
|
106787
|
-
"
|
|
106793
|
+
"4fad5252",
|
|
106788
106794
|
null
|
|
106789
106795
|
|
|
106790
106796
|
)
|
package/wotokol-edm.umd.js.gz
CHANGED
|
Binary file
|