MrShi
2025-05-21 e5e5a84d84e7a2b4715bd58096043e565ae0e107
提交
已修改6个文件
42 ■■■■ 文件已修改
admin/src/views/index.vue 28 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
h5/api/visitor.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
h5/pages/appointmentDetails/appointmentDetails.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
h5/pages/staff/vehicle/sendACarDetail.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
screen/src/views/TaskEfficiency.vue 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
screen/vite.config.js 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/index.vue
@@ -563,7 +563,15 @@
              // 这里输入线条的样式
              color: 'rgba(255,255,255,0.14)'
            }
          }
          },
          axisLabel: {
            formatter: function(value) {
              const intValue = Math.round(value);
              return intValue > 0 ? intValue : '';
            }
          },
          minInterval: 1,
          min: 1
        },
        yAxis: {
          type: 'category',
@@ -626,6 +634,14 @@
          nameTextStyle: {
            padding: [0, 0, 4, -30] // 四个数字分别为上右下左与原位置距离
          },
          axisLabel: {
            formatter: function(value) {
              const intValue = Math.round(value);
              return intValue > 0 ? intValue : '';
            }
          },
          minInterval: 1,
          min: 1,
          splitLine: {
            show: true,
            lineStyle: {
@@ -732,7 +748,15 @@
              // 这里输入线条的样式
              color: 'rgba(255,255,255,0.14)'
            }
          }
          },
          axisLabel: {
            formatter: function(value) {
              const intValue = Math.round(value);
              return intValue > 0 ? intValue : '';
            }
          },
          minInterval: 1,
          min: 1
        },
        grid: {
          top: '16%',
h5/api/visitor.js
@@ -88,9 +88,9 @@
  })
}
// 取消预约--访客
export const visitsSelfCancel = (visitId, memberId) => {
export const visitsSelfCancel = (visitId, openid) => {
  return http({
    url: `visitsAdmin/cloudService/web/visitor/visitsSelfCancel?visitId=${visitId}&memberId=${memberId}`,
    url: `visitsAdmin/cloudService/web/visitor/visitsSelfCancel?visitId=${visitId}&openid=${openid}`,
    method: 'get'
  })
}
h5/pages/appointmentDetails/appointmentDetails.vue
@@ -153,7 +153,7 @@
    // 取消预约
    cancel() {
        const member = uni.getStorageSync('member');
        visitsSelfCancel(this.id, member.id).then(res => {
        visitsSelfCancel(this.id, member.openId).then(res => {
            this.cancelShow = false
            this.getDetail(this.id)
        })
h5/pages/staff/vehicle/sendACarDetail.vue
@@ -130,7 +130,7 @@
                    <u-icon v-if="info.approveDateVO.driverParam == 1" class="ml12" name="arrow-right" color="#999999" />
                </view>
                <textarea v-model="param.checkInfo" :placeholder="
            param.status == 2 ? '同意说明,非必填' : '拒绝说明,必填'
            param.status == 2 ? '同意说明,非必填' : '拒绝说明,非必填'
          " placeholder-class="placeholder9" />
                <view class="main_footer">
                    <view class="btn" @click="showApprModal = false">取消</view>
screen/src/views/TaskEfficiency.vue
@@ -765,7 +765,7 @@
  cnplatformWorkData().then(res => {
    const result = res.data || []
    dataList5.value = result.map(i => {
      i.statusTemp = i.status == 0 ? '作业中' : i.status == 1 ? '空闲中' : '作业超时'
      i.statusTemp = i.status == 0 ? '作业中' : i.status == 1 ? '空闲中' : i.status == 2 ? '作业超时' : '叫号中'
      if (i.workTime) {
        // i.workTime = dayjs.duration(i.workTime * 1000).format('HH小时mm分')
        i.workTime = (i.workTime / 60).toFixed(0)
screen/vite.config.js
@@ -26,8 +26,8 @@
    proxy: {
      "/gateway_interface": {
        // target: "http://192.168.0.104:10010",
        target: "http://10.50.250.253:8088/gateway_interface",
        // target: "https://atwl.ahzyssl.com/zhyq_interface",
        // target: "http://10.50.250.253:8088/gateway_interface",
        target: "https://atwl.ahzyssl.com/zhyq_interface",
        changeOrigin: true,
        rewrite: (path) => path.replace(/^\/gateway_interface/, ""),
      },