@@ -21,7 +21,7 @@
resultField="records"
labelField="code"
valueField="id"
- :params="{ pageSize: -1 }"
+ :params="{ pageSize: -1,status:1 }"
optionFilterProp="label"
/>
</a-form-item>
+ :params="{ pageSize: -1 ,status:1}"
</a-col>
@@ -33,7 +33,7 @@
- :params='{pageSize:-1}'
+ :params='{pageSize:-1,status:1}'
:disabled="fatherProject!==''"
@@ -34,7 +34,7 @@
@@ -58,6 +58,7 @@
fixed:'right'
},
beforeFetch: (params) => {
+ queryParam.status = 1;
return Object.assign(params, queryParam);
}
@@ -245,7 +245,8 @@
partno:'',
orderno:'',
drawingno:'',
- virtualProduct:''
+ virtualProduct:'',
+ status:1
});
let pagination = ref({
current: 1,
@@ -308,7 +309,8 @@
pagination.value.current =1;
pagination.value.pageSize = 10;
@@ -319,7 +319,7 @@
function projectListList(){
- let params = {pageSize:-1}
+ let params = {pageSize:-1,status:1}
return defHttp.get({url:'/baseCode/baseProjectArchive/list',params});
defineExpose({
@@ -28,7 +28,7 @@
:disabled="fatherProject !== ''"
@@ -286,7 +286,7 @@
function customerListList(){
@@ -115,7 +115,7 @@ export const searchFormSchema: FormSchema[] = [
componentProps: {
// mode: 'multiple',//multiple: 多选;不填写为单选
//请求api,返回结果{ result: { records: [{'id':'1',name:'scott'},{'id':'2',name:'小张'}] }}
- api: () => defHttp.get({ url: 'baseCode/baseProjectArchive/list',params:{pageSize: -1}}),
+ api: () => defHttp.get({ url: 'baseCode/baseProjectArchive/list',params:{pageSize: -1,status:1}}),
//数值转成String
numberToString: false,
//标题字段
@@ -136,7 +136,7 @@ export const searchFormSchema: FormSchema[] = [
//值字段
valueField: 'id',
//请求参数
- params: { pageSize: -1 },
+ params: { pageSize: -1 ,status:1},
//返回结果字段
resultField: 'records',
filterOption: 'true',
- :params="{ pageSize: -1}"
+ :params="{ pageSize: -1,status:1}"