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/package.json
CHANGED
package/wotokol-edm.common.js
CHANGED
|
@@ -98608,8 +98608,8 @@ function moveBlogRel(data) {
|
|
|
98608
98608
|
}
|
|
98609
98609
|
|
|
98610
98610
|
// 刷新推广计划结果
|
|
98611
|
-
function refreshInboxCrm(
|
|
98612
|
-
return
|
|
98611
|
+
function refreshInboxCrm(data) {
|
|
98612
|
+
return request_post(`/edm/inbox/refreshInboxCrm`, data);
|
|
98613
98613
|
}
|
|
98614
98614
|
|
|
98615
98615
|
// 生成AI回信策略
|
|
@@ -106416,8 +106416,8 @@ var EmailIntention_component = normalizeComponent(
|
|
|
106416
106416
|
)
|
|
106417
106417
|
|
|
106418
106418
|
/* harmony default export */ var EmailIntention = (EmailIntention_component.exports);
|
|
106419
|
-
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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=
|
|
106420
|
-
var
|
|
106419
|
+
;// ./node_modules/babel-loader/lib/index.js??clonedRuleSet-40.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
|
|
106420
|
+
var EmailPlanvue_type_template_id_4fad5252_scoped_true_render = function render() {
|
|
106421
106421
|
var _vm = this,
|
|
106422
106422
|
_c = _vm._self._c;
|
|
106423
106423
|
return _c('el-dialog', {
|
|
@@ -106511,7 +106511,7 @@ var EmailPlanvue_type_template_id_97959786_scoped_true_render = function render(
|
|
|
106511
106511
|
staticClass: "el-icon-right"
|
|
106512
106512
|
})])])]], 2)])]);
|
|
106513
106513
|
};
|
|
106514
|
-
var
|
|
106514
|
+
var EmailPlanvue_type_template_id_4fad5252_scoped_true_staticRenderFns = [];
|
|
106515
106515
|
|
|
106516
106516
|
;// ./src/api/send/outbox2.js
|
|
106517
106517
|
|
|
@@ -106632,6 +106632,7 @@ function pagePlan(data) {
|
|
|
106632
106632
|
},
|
|
106633
106633
|
methods: {
|
|
106634
106634
|
close() {
|
|
106635
|
+
console.log("okkk");
|
|
106635
106636
|
this.$emit("update:visible", false);
|
|
106636
106637
|
},
|
|
106637
106638
|
getPlanList() {
|
|
@@ -106684,9 +106685,13 @@ function pagePlan(data) {
|
|
|
106684
106685
|
type: "success",
|
|
106685
106686
|
message: `${this.$t("inboxDetail.planVal")}${this.isHasPlan ? this.$t("inboxDetail.planMove") : this.$t("inboxDetail.planGL")}${this.$t("inboxDetail.success")}`
|
|
106686
106687
|
});
|
|
106687
|
-
|
|
106688
|
+
const planName = this.planOpts.find(item => item.planId === this.planId)?.name;
|
|
106689
|
+
refreshInboxCrm({
|
|
106690
|
+
maxId: this.maxId,
|
|
106691
|
+
planId: this.planId,
|
|
106692
|
+
planName: planName
|
|
106693
|
+
}).then(res => {
|
|
106688
106694
|
if (res && res.code === "0") {
|
|
106689
|
-
const planName = this.planOpts.find(item => item.planId === this.planId)?.name;
|
|
106690
106695
|
this.$emit("change", this.planId, planName);
|
|
106691
106696
|
this.close();
|
|
106692
106697
|
}
|
|
@@ -106707,7 +106712,6 @@ function pagePlan(data) {
|
|
|
106707
106712
|
}],
|
|
106708
106713
|
contactStatus: 1,
|
|
106709
106714
|
inviteStatus: 1,
|
|
106710
|
-
// contactUserId: this.detailData.userId,
|
|
106711
106715
|
latestSendTime: this.detailData.sendTime
|
|
106712
106716
|
}).then(res => {
|
|
106713
106717
|
if (res.code == "0") {
|
|
@@ -106716,12 +106720,14 @@ function pagePlan(data) {
|
|
|
106716
106720
|
message: res.message,
|
|
106717
106721
|
customClass: "custom-message"
|
|
106718
106722
|
});
|
|
106723
|
+
const planName = this.planOpts.find(item => item.planId === this.planId)?.name;
|
|
106719
106724
|
refreshOutboxDetail({
|
|
106720
106725
|
id: this.rowData.id,
|
|
106721
|
-
outboxId: this.rowData.outboxId
|
|
106726
|
+
outboxId: this.rowData.outboxId,
|
|
106727
|
+
planId: this.planId,
|
|
106728
|
+
planName: planName
|
|
106722
106729
|
}).then(res => {
|
|
106723
106730
|
if (res && res.code === "0") {
|
|
106724
|
-
const planName = this.planOpts.find(item => item.planId === this.planId);
|
|
106725
106731
|
this.$emit("change", this.planId, planName);
|
|
106726
106732
|
this.close();
|
|
106727
106733
|
}
|
|
@@ -106748,15 +106754,15 @@ function pagePlan(data) {
|
|
|
106748
106754
|
});
|
|
106749
106755
|
;// ./src/components/EmailPlan/index.vue?vue&type=script&lang=js
|
|
106750
106756
|
/* harmony default export */ var components_EmailPlanvue_type_script_lang_js = (EmailPlanvue_type_script_lang_js);
|
|
106751
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.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=
|
|
106757
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.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
|
|
106752
106758
|
// extracted by mini-css-extract-plugin
|
|
106753
106759
|
|
|
106754
|
-
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=0&id=
|
|
106760
|
+
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=0&id=4fad5252&prod&lang=scss&scoped=true
|
|
106755
106761
|
|
|
106756
|
-
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.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=
|
|
106762
|
+
;// ./node_modules/mini-css-extract-plugin/dist/loader.js??clonedRuleSet-22.use[0]!./node_modules/css-loader/dist/cjs.js??clonedRuleSet-22.use[1]!./node_modules/@vue/vue-loader-v15/lib/loaders/stylePostLoader.js!./node_modules/postcss-loader/dist/cjs.js??clonedRuleSet-22.use[2]!./node_modules/sass-loader/dist/cjs.js??clonedRuleSet-22.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
|
|
106757
106763
|
// extracted by mini-css-extract-plugin
|
|
106758
106764
|
|
|
106759
|
-
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=1&id=
|
|
106765
|
+
;// ./src/components/EmailPlan/index.vue?vue&type=style&index=1&id=4fad5252&prod&lang=scss
|
|
106760
106766
|
|
|
106761
106767
|
;// ./src/components/EmailPlan/index.vue
|
|
106762
106768
|
|
|
@@ -106770,11 +106776,11 @@ function pagePlan(data) {
|
|
|
106770
106776
|
|
|
106771
106777
|
var EmailPlan_component = normalizeComponent(
|
|
106772
106778
|
components_EmailPlanvue_type_script_lang_js,
|
|
106773
|
-
|
|
106774
|
-
|
|
106779
|
+
EmailPlanvue_type_template_id_4fad5252_scoped_true_render,
|
|
106780
|
+
EmailPlanvue_type_template_id_4fad5252_scoped_true_staticRenderFns,
|
|
106775
106781
|
false,
|
|
106776
106782
|
null,
|
|
106777
|
-
"
|
|
106783
|
+
"4fad5252",
|
|
106778
106784
|
null
|
|
106779
106785
|
|
|
106780
106786
|
)
|
package/wotokol-edm.common.js.gz
CHANGED
|
Binary file
|