|
@@ -356,6 +356,12 @@ const orderDefaultAction = [
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value || LjDetailRef.value?._mainData.xd_flag == 1;
|
|
|
},
|
|
|
+ disabledTextCallBack: (data: any) => {
|
|
|
+ if (data.yw_flag == 1) {
|
|
|
+ return "已业务补充审核,无法修改";
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+ },
|
|
|
clickFunc: item => {
|
|
|
routeToEdit(1);
|
|
|
}
|
|
@@ -396,6 +402,12 @@ const orderDefaultAction = [
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value;
|
|
|
},
|
|
|
+ disabledTextCallBack: (data: any) => {
|
|
|
+ if (data.js1_flag == 1) {
|
|
|
+ return "已产品补充审核,无法修改";
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+ },
|
|
|
clickFunc: item => {
|
|
|
routeToEdit(2);
|
|
|
}
|
|
@@ -436,6 +448,12 @@ const orderDefaultAction = [
|
|
|
limited: () => {
|
|
|
return !!orderStatus.value;
|
|
|
},
|
|
|
+ disabledTextCallBack: (data: any) => {
|
|
|
+ if (data.js2_flag == 1) {
|
|
|
+ return "已清单补充审核,无法修改";
|
|
|
+ }
|
|
|
+ return "";
|
|
|
+ },
|
|
|
clickFunc: item => {
|
|
|
routeToEdit(3);
|
|
|
}
|