su
su1124
2024-03-08 7672bba9fc11315da4c42cba74504b7fd417df0c
src/views/hosp/teamAppLog/index.vue
@@ -49,8 +49,9 @@
      <el-form-item label="预约时间">
        <el-date-picker
          v-model="daterangeTjTime"
          style="width: 240px"
          value-format="yyyy-MM-dd"
          :default-time="['00:00:00', '23:59:00']"
          format="yyyy-MM-dd HH:mm"
          value-format="yyyy-MM-dd HH:mm"
          type="daterange"
          range-separator="-"
          start-placeholder="开始日期"
@@ -362,6 +363,10 @@
<script>
import {
  getNewDateList,
} from "@/api/hosp/order";
import moment from "moment";
import {
  listTeamAppLog,
  getTeamAppLog,
  goutongList,
@@ -463,10 +468,19 @@
  },
  created() {
    this.getList();
    this.getdate();
    // this.username = this.form.contactUserId;
  },
  methods: {
    getdate() {
      getNewDateList().then((res) => {
        this.daterangeTjTime = [
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
      });
    },
    /** 查询小程序团队预约记录列表 */
    getList() {
      this.loading = true;