qinxianzhangyao
2024-03-18 e3a63203c823a4b7fcb12a52769c34acdc0b7a19
qxtj
22个文件已修改
152 ■■■■■ 已修改文件
src/views/count/chart/index.vue 33 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/count/disease/index.vue 6 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/doctor/check/index.vue 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hosp/fuzhen/index.vue 10 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hosp/ruleAdvice/index.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/hosp/teamAppLog/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mall/aftersale/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mall/cart/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mall/checklog/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mall/footprint/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mall/history/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/mall/timeConfig/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/record/record/index.vue 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/standard/renshunum/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/standard/tijiancom/index.vue 33 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/circle/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/comp/index.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/positive/index.vue 20 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/role/index.vue 3 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/system/visit/index.vue 4 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/team/reportresults/index.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
vue.config.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/views/count/chart/index.vue
@@ -1,25 +1,10 @@
<template>
  <div>
    <el-form
      :model="queryParams"
      ref="tableList"
      :inline="true"
      label-width="76px"
      style="margin: 10px 10px"
    >
    <el-form :model="queryParams" ref="tableList" :inline="true" label-width="76px" style="margin: 10px 10px">
      <el-form-item label="体检时间" prop="date">
        <el-date-picker
          v-model="value1"
          type="datetimerange"
          align="right"
          start-placeholder="开始日期"
          :picker-options="pickerOptions"
          end-placeholder="结束日期"
          :default-time="['00:00:00', '23:00:00']"
          format="yyyy-MM-dd HH:mm"
          value-format="yyyy-MM-dd HH:mm"
          @change="dateChangebirthday1"
        >
        <el-date-picker v-model="value1" type="datetimerange" align="right" start-placeholder="开始日期"
          :picker-options="pickerOptions" end-placeholder="结束日期" :default-time="['00:00:00', '23:00:00']"
          format="yyyy-MM-dd HH:mm" value-format="yyyy-MM-dd HH:mm" @change="dateChangebirthday1">
        </el-date-picker>
      </el-form-item>
      <el-form-item>
@@ -103,11 +88,18 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
        this.getList()
      });
    },
    getList() {
      if (this.value1) {
        this.queryParams.startDate = this.value1[0];
        this.queryParams.endDate = this.value1[1];
      } else {
      this.queryParams.startDate = this.startTime[0];
      this.queryParams.endDate = this.startTime[1];
      }
      GetChartByDate(this.queryParams).then((response) => {
        this.DateList = response;
        console.log(this.DateList);
@@ -171,6 +163,3 @@
  background-color: #fff;
}
</style>
src/views/count/disease/index.vue
@@ -164,8 +164,14 @@
    // 搜索
    submitForm() {
      this.queryParams.pageNum = 1;
      if(this.value1){
        this.queryParams.beginTime = this.value1[0];
      this.queryParams.endTime = this.value1[1];
      }else{
       this.queryParams.beginTime = this.startTime[0];
      this.queryParams.endTime = this.startTime[1];
      }
      let disesseName = this.queryParams.disesseName;
      if (disesseName) {
         illness(this.queryParams).then(response => {
src/views/doctor/check/index.vue
src/views/hosp/fuzhen/index.vue
@@ -383,7 +383,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getListEmer();
    this.getDictListEmer();
    this.getdate();
@@ -400,6 +400,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    dialogVisibles() {
@@ -461,8 +462,14 @@
    },
    /** 查询体检记录列表 */
    getList() {
      if(this.createTimeList){
        this.queryParams.djbeginTime = this.createTimeList[0];
      this.queryParams.djendTime = this.createTimeList[1];
      }else{
      this.queryParams.djbeginTime = this.startTime[0];
      this.queryParams.djendTime = this.startTime[1];
      }
      this.queryParams.bgbeginTime = this.startTime1[0];
      this.queryParams.bgendTime = this.startTime1[1];
      this.loading = true;
@@ -609,6 +616,7 @@
    /** 重置按钮操作 */
    resetQuery() {
      this.reportTimeList =[]
      this.createTimeList=[]
      this.startTime =[]
      this.startTime1 =[]
      this.resetForm("queryForm");
src/views/hosp/ruleAdvice/index.vue
@@ -13,7 +13,7 @@
            style="margin-bottom: 20px"
          />
        </div>
        <div class="head-tree">
        <div class="head-tree" style="height: 486px; overflow-y: scroll;">
          <el-tree
            ref="tree"
            node-key="id"
src/views/hosp/teamAppLog/index.vue
@@ -467,7 +467,7 @@
    };
  },
  created() {
    this.getList();
    this.getdate();
    // this.username = this.form.contactUserId;
@@ -479,6 +479,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    /** 查询小程序团队预约记录列表 */
src/views/mall/aftersale/index.vue
@@ -372,7 +372,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getdate();
  },
  methods: {
@@ -382,6 +382,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    // / 处理默认选中当前日期
src/views/mall/cart/index.vue
@@ -421,7 +421,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getdate();
  },
  methods: {
@@ -431,6 +431,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    // / 处理默认选中当前日期
src/views/mall/checklog/index.vue
@@ -333,7 +333,7 @@
  },
  created() {
    // this.getNowTime()
    this.getList();
    this.getdate();
  },
  methods: {
@@ -343,6 +343,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    getNowTime() {
src/views/mall/footprint/index.vue
@@ -307,7 +307,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getdate();
  },
  methods: {
@@ -317,6 +317,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    // / 处理默认选中当前日期
src/views/mall/history/index.vue
@@ -310,7 +310,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getdate();
  },
  methods: {
@@ -320,6 +320,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    // / 处理默认选中当前日期
src/views/mall/timeConfig/index.vue
@@ -363,7 +363,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getdate();
  },
  methods: {
@@ -373,6 +373,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    // / 处理默认选中当前日期
src/views/record/record/index.vue
@@ -359,6 +359,7 @@
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.queryParams.cateringId = ""
      this.resetForm("queryForm");
      this.handleQuery();
    },
src/views/standard/renshunum/index.vue
@@ -93,7 +93,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getdate();
  },
@@ -104,6 +104,7 @@
          moment(res.data).format("YYYY-MM-DD 00:00:00"),
          moment(res.data).format("YYYY-MM-DD 23:59:00"),
        ];
        this.getList();
      });
    },
    getList() {
src/views/standard/tijiancom/index.vue
@@ -1,25 +1,10 @@
<template>
  <div>
    <el-form
      :model="queryParams"
      ref="tableList"
      :inline="true"
      label-width="76px"
      style="margin: 10px 10px"
    >
    <el-form :model="queryParams" ref="tableList" :inline="true" label-width="76px" style="margin: 10px 10px">
      <el-form-item label="统计区间" prop="date">
        <el-date-picker
          v-model="value1"
          type="datetimerange"
          align="right"
          start-placeholder="开始日期"
          :picker-options="pickerOptions"
          end-placeholder="结束日期"
          :default-time="['00:00:00', '23:00:00']"
          format="yyyy-MM-dd HH:mm"
          value-format="yyyy-MM-dd HH:mm"
          @change="dateChangebirthday1"
        >
        <el-date-picker v-model="value1" type="datetimerange" align="right" start-placeholder="开始日期"
          :picker-options="pickerOptions" end-placeholder="结束日期" :default-time="['00:00:00', '23:00:00']"
          format="yyyy-MM-dd HH:mm" value-format="yyyy-MM-dd HH:mm" @change="dateChangebirthday1">
        </el-date-picker>
      </el-form-item>
      <el-form-item>
@@ -101,11 +86,18 @@
          moment(res.data).format("YYYY-MM-DD 00:00:00"),
          moment(res.data).format("YYYY-MM-DD 23:59:00"),
        ];
        this.getList()
      });
    },
    getList() {
      if (this.value1) {
        this.queryParams.startDate = this.value1[0];
        this.queryParams.endDate = this.value1[1];
      } else {
      this.queryParams.startDate = this.startTime[0];
      this.queryParams.endDate = this.startTime[1];
      }
      let myChart = this.$echarts.init(document.getElementById("main"));
      //你进入页面先把图表渲染了  然后才获取的数据把
      myChart.setOption({
@@ -185,6 +177,3 @@
  background-color: #fff;
}
</style>
src/views/system/circle/index.vue
@@ -393,7 +393,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.Company();
    this.getListEmer();
    this.getDictListEmer();
@@ -411,6 +411,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    dialogVisibles() {
@@ -590,6 +591,7 @@
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.createTimeList = []
      this.resetForm("queryForm");
      this.handleQuery();
    },
src/views/system/comp/index.vue
@@ -889,10 +889,15 @@
      })
    },
    submitrighr() {
      if(this.pacList.length >= 1){
      this.openss = false
      this.forms.pacName = this.pacList[0].pacName
      this.forms.price = this.queryParams.price
      this.forms.ysPrice = (this.forms.price * (this.forms.limits / 10)).toFixed(2);
      }else{
        this.$modal.msgError("请选择套餐");
      }
    },
    // 套餐单项获取
    handleChangeOne(selection) {
src/views/system/positive/index.vue
@@ -5,7 +5,7 @@
            <el-input v-model="queryParams.tjNumber" placeholder="请输入体检号" clearable @keyup.enter.native="handleQuery" />
          </el-form-item> -->
      <el-form-item label="登记时间" prop="createTimeList">
        <el-date-picker clearable v-model="queryParams.createTimeList"  :default-time="['00:00:00', '23:59:00']"
        <el-date-picker clearable v-model="createTimeList"  :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="开始日期" end-placeholder="结束日期"
@@ -223,6 +223,7 @@
      url: "",
      flag: true,
      tempId: null,
      createTimeList:[],
      bill: null,
      Treedata: [],
      defaultProps: {
@@ -327,17 +328,18 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.getListEmer();
    this.getdate();
  },
  methods: {
    getdate() {
      getNewDateList().then((res) => {
        this.queryParams.createTimeList = [
        this.createTimeList = [
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          ];
          this.getList();
      });
    },
    dialogVisibles() {
@@ -352,7 +354,7 @@
      var threeDays = curDate - dayNum;
      var sDay = this.getLocalTime(threeDays);
      var end = this.getLocalTime(curDate);
      this.queryParams.createTimeList = [sDay, end];
      this.createTimeList = [sDay, end];
    },
    add0(m) {
      return m < 10 ? "0" + m : m;
@@ -371,6 +373,13 @@
    /** 查询体检记录列表 */
    getList() {
      this.loading = true;
      if (this.createTimeList) {
        this.queryParams.createTime = this.createTimeList[0];
        this.queryParams.finishTime = this.createTimeList[1];
      } else {
        this.queryParams.createTime = null;
        this.queryParams.finishTime = null;
      }
      listOrder(this.queryParams).then((response) => {
        this.orderList = response.rows;
        response.rows.forEach((item, index) => {
@@ -479,6 +488,7 @@
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.createTimeList =[]
      this.resetForm("queryForm");
      this.handleQuery();
    },
src/views/system/role/index.vue
@@ -494,7 +494,7 @@
    };
  },
  created() {
    this.getList();
    this.getdate();
  },
  methods: {
@@ -504,6 +504,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    /** 查询角色列表 */
src/views/system/visit/index.vue
@@ -429,7 +429,7 @@
  },
  created() {
    // this.getNowTime();
    this.getList();
    this.Company();
    this.getListEmer();
    this.getdate();
@@ -446,6 +446,7 @@
            moment(res.data).format("YYYY-MM-DD 00:00:00"),
            moment(res.data).format("YYYY-MM-DD 23:59:00")
          ];;
          this.getList();
      });
    },
    dialogVisibles() {
@@ -615,6 +616,7 @@
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.createTimeList = []
      this.resetForm("queryForm");
      this.handleQuery();
    },
src/views/team/reportresults/index.vue
@@ -433,6 +433,11 @@
      /** 查询部门下拉树结构 */
      projectGetList().then((response) => {
        this.Treedata = response.data.list;
        this.Treedata.forEach(item => {
          if(item.proParentId == "0"){
            item.disabled = true
          }
        })
        this.loading = false;
      });
    },
vue.config.js
@@ -53,7 +53,7 @@
      // detail: https://cli.vuejs.org/config/#devserver-proxy
      [process.env.VUE_APP_BASE_API]: {
        //target: `https://ltpeis.xaltjdkj.cn:5501/prod-api/getInfo`,
        target: `http://192.168.0.112:5011`,
        target: `http://192.168.0.108:5011`,
        // // target: `http://192.168.0.99:8080/ltkj-admin`,
        // target: `https://ltpeis.xaltjdkj.cn:5011/ltkj-admin`,
        // target: `http://10.168.0.9:5011`,