|
@@ -146,6 +146,10 @@ interface DetailProps {
|
|
|
* @description 是否复制
|
|
|
*/
|
|
|
ifcopy?: boolean;
|
|
|
+ /**
|
|
|
+ * @description 是否取消业务员搜索限制
|
|
|
+ */
|
|
|
+ ifnotoutper?: number;
|
|
|
}
|
|
|
|
|
|
const props = withDefaults(defineProps<DetailProps>(), {
|
|
@@ -681,6 +685,9 @@ onMounted(async () => {
|
|
|
defaultColumnsValue.value.mattress_width = props?.mattressWidth;
|
|
|
defaultColumnsValue.value.mattress_length = props?.mattressLength;
|
|
|
}
|
|
|
+ if (props?.ifnotoutper) {
|
|
|
+ initParams.value.ifnotoutper = props?.ifnotoutper;
|
|
|
+ }
|
|
|
|
|
|
console.log("initParams.value :>> ", initParams.value);
|
|
|
});
|