|
@@ -259,6 +259,23 @@ export default {
|
|
|
duration: 1500,
|
|
|
});
|
|
|
}
|
|
|
+ if (
|
|
|
+ this.planInfo.eventVal == 1 ||
|
|
|
+ this.planInfo.eventVal == 2 ||
|
|
|
+ this.planInfo.eventVal == 3 ||
|
|
|
+ this.planInfo.eventVal == 9
|
|
|
+ ) {
|
|
|
+ uni.showModal({
|
|
|
+ title: "提示",
|
|
|
+ content: "该计划需要到web端配置区域",
|
|
|
+ success: (res) => {
|
|
|
+ if (res.confirm) {
|
|
|
+ }
|
|
|
+ if (res.cancel) {
|
|
|
+ }
|
|
|
+ },
|
|
|
+ });
|
|
|
+ }
|
|
|
});
|
|
|
},
|
|
|
handlePlanInfo() {
|