|
@@ -1134,7 +1134,7 @@ const break_reason = (reason: string) => {
|
|
|
if (telStatusInfo.value.isRest !== 'resting') {
|
|
|
// 如果不在在小休中
|
|
|
const restReasons = state.restReasonOptions.find((item: any) => item.dicDataValue === reason);
|
|
|
- busyOn({ reason: restReasons.dicDataName }) // 开始小休 设置示忙 业务系统统计需要
|
|
|
+ busyOn({ reason: restReasons?.dicDataName ?? '' }) // 开始小休 设置示忙 业务系统统计需要
|
|
|
.then(() => {
|
|
|
console.log('业务系统调用示忙成功');
|
|
|
})
|