wtt
2025-08-13 33722f91c3b9aca371201c9a713c0fc6aa4c940e
出战汇报单bug处理
3个文件已修改
19 ■■■■ 已修改文件
manifest.json 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
pages/gongxuOut/form.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
utils/getdateTime.js 13 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
manifest.json
@@ -2,8 +2,8 @@
    "name" : "智云LMES",
    "appid" : "__UNI__B002F49",
    "description" : "",
    "versionName" : "1.0.52",
    "versionCode" : 152,
    "versionName" : "1.0.53",
    "versionCode" : 153,
    "transformPx" : false,
    /* 5+App特有相关 */
    "app-plus" : {
pages/gongxuOut/form.vue
@@ -1462,7 +1462,7 @@
                                    this.hform.HRelBeginTime = getDateTime.dateTimeSetHoureStr(7, 40, 0, 0,'y-m-d h:i');
                                    this.hform.HWorkTimes=getDateTime.calculateHoursDiff(this.hform.HRelBeginTime,this.hform.HRelEndTime);
                                }else{
                                    this.hform.HRelBeginTime = maxDate.replace(/(:\d{2})(:\d{2}\.\d{3})/, '$1');//使用正则表达式去除秒和毫秒
                                    this.hform.HRelBeginTime = getDateTime.formatDate(maxDate);
                                    this.hform.HWorkTimes=getDateTime.calculateHoursDiff(this.hform.HRelBeginTime,this.hform.HRelEndTime);
                                }
                            }
utils/getdateTime.js
@@ -123,9 +123,22 @@
  
  return `${newYYYY}-${newMM}-${newDD} ${newHH}:${newMin}`;
}
/** 将时间转换成 YYYY-MM-DD HH:MM格式
 * @param {Object} date 时间
 */
function formatDate(date) {
  const year = date.getFullYear();
  const month = String(date.getMonth() + 1).padStart(2, '0');
  const day = String(date.getDate()).padStart(2, '0');
  const hours = String(date.getHours()).padStart(2, '0');
  const minutes = String(date.getMinutes()).padStart(2, '0');
  return `${year}-${month}-${day} ${hours}:${minutes}`;
}
module.exports = {
    dateTimeStr: dateTimeStr,
    dateTimeSetHoureStr:dateTimeSetHoureStr,
    calculateHoursDiff:calculateHoursDiff,
    addHoursToDate:addHoursToDate,
    formatDate:formatDate,
}