WXL
9 天以前 c1f1ecb1045b0eaf2933e7279eabbbde17559eab
src/views/followvisit/record/detailpage/index.vue
@@ -727,6 +727,7 @@
                :picker-options="pickerOptions"
                align="right"
                v-model="form.date1"
                class="custom-disabled"
              ></el-date-picker>
            </el-form-item>
          </el-col>
@@ -852,6 +853,10 @@
        },
      },
      pickerOptions: {
        disabledDate(time) {
        // 禁用今天及之前的日期
        return time.getTime() < Date.now() - 24 * 60 * 60 * 1000;
      },
        shortcuts: [
          {
            text: "七天后",
@@ -1332,7 +1337,6 @@
          this.templateid = this.logsheetlist[0].templateid;
          const targetDate = new Date(this.form.longSendTime); // 目标日期
          const now = new Date(); // 当前时间
          this.form.endtime = this.formatTime(this.form.endtime);
          if (now < targetDate && this.form.sendstate == 2) {
            this.$confirm("当前服务未到发送时间请谨慎修改", "提示", {
              confirmButtonText: "确定",