|
@@ -305,7 +305,7 @@ const orderDefaultAction = [
|
|
|
}),
|
|
|
buttonDefault({
|
|
|
label: t("common.add"),
|
|
|
- power: 133,
|
|
|
+ power: 152,
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value;
|
|
|
},
|
|
@@ -315,7 +315,7 @@ const orderDefaultAction = [
|
|
|
}),
|
|
|
buttonDefault({
|
|
|
label: t("common.editText"),
|
|
|
- power: 133,
|
|
|
+ power: 152,
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value;
|
|
|
},
|
|
@@ -333,12 +333,12 @@ const orderDefaultAction = [
|
|
|
}),
|
|
|
buttonDefault({
|
|
|
label: t("common.delText"),
|
|
|
- power: 136,
|
|
|
+ power: 155,
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value;
|
|
|
},
|
|
|
disabledTextCallBack: (data: any) => {
|
|
|
- if (!CheckPower(136)) {
|
|
|
+ if (!CheckPower(155)) {
|
|
|
return "你没有【报价单-删除】的使用权限";
|
|
|
}
|
|
|
return "";
|
|
@@ -353,12 +353,12 @@ const orderDefaultAction = [
|
|
|
}),
|
|
|
buttonDefault({
|
|
|
label: t("common.auditText"),
|
|
|
- power: 134,
|
|
|
+ power: 153,
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value;
|
|
|
},
|
|
|
disabledTextCallBack: (data: any) => {
|
|
|
- if (!CheckPower(134)) {
|
|
|
+ if (!CheckPower(153)) {
|
|
|
return `你没有【报价单-${t("common.auditText")}】的使用权限`;
|
|
|
}
|
|
|
if (+data.flag === 1) {
|
|
@@ -375,12 +375,12 @@ const orderDefaultAction = [
|
|
|
}),
|
|
|
buttonDefault({
|
|
|
label: t("common.withdrawAuditText"),
|
|
|
- power: 135,
|
|
|
+ power: 154,
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value;
|
|
|
},
|
|
|
disabledTextCallBack: (data: any) => {
|
|
|
- if (!CheckPower(135)) {
|
|
|
+ if (!CheckPower(154)) {
|
|
|
return `你没有【报价单-${t("common.withdrawAuditText")}】的使用权限`;
|
|
|
}
|
|
|
if (+data.flag === 0) {
|