Commit dbf31a4c by lichengming

修改了资质外分包查询

parent 3d578eec
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
<Form-item class="search-item" label="委托单位:"> <Form-item class="search-item" label="委托单位:">
<Input v-model="formObj.client" @on-enter="_formSearch" name="client" placeholder="请输入委托单位" clearable/> <Input v-model="formObj.client" @on-enter="_formSearch" name="client" placeholder="请输入委托单位" clearable/>
</Form-item> </Form-item>
<Form-item class="search-item" label="合同ID:"> <Form-item class="search-item" label="合同编号:">
<Input v-model="formObj.contractId" @on-enter="_formSearch" name="contractId" placeholder="请输入合同ID" clearable/> <Input v-model="formObj.salesCode" @on-enter="_formSearch" name="salesCode" placeholder="请输入合同编号" clearable/>
</Form-item> </Form-item>
<Form-item class="search-btn"> <Form-item class="search-btn">
<Button @click="_formSearch" type="primary">搜索</Button> <Button @click="_formSearch" type="primary">搜索</Button>
...@@ -91,14 +91,14 @@ export default { ...@@ -91,14 +91,14 @@ export default {
], ],
formObj: { formObj: {
client: undefined, client: undefined,
contractId: undefined salesCode: undefined
}, },
selectIds: [], selectIds: [],
getPage: {}, getPage: {},
pageColumns: [ pageColumns: [
{ title: '委托单位', key: 'client', width: 200 }, { title: '委托单位', key: 'client', width: 200 },
{ title: '委托时间', key: 'edate', width: 120, date: true }, { title: '委托时间', key: 'edate', width: 120, date: true },
{ title: '合同ID', key: 'contractId', width: 200 }, { title: '合同编号', key: 'salesCode', width: 200 },
{ title: '要求完成时间', key: 'odate', width: 120, date: true }, { title: '要求完成时间', key: 'odate', width: 120, date: true },
{ title: '分包方', key: 'subClient', width: 120 }, { title: '分包方', key: 'subClient', width: 120 },
{ title: '分包方联系人', key: 'subPerson', width: 120 }, { title: '分包方联系人', key: 'subPerson', width: 120 },
......
...@@ -11,8 +11,8 @@ ...@@ -11,8 +11,8 @@
<Form-item class="search-item" label="委托单位:"> <Form-item class="search-item" label="委托单位:">
<Input v-model="formObj.client" @on-enter="_formSearch" name="client" placeholder="请输入委托单位" clearable/> <Input v-model="formObj.client" @on-enter="_formSearch" name="client" placeholder="请输入委托单位" clearable/>
</Form-item> </Form-item>
<Form-item class="search-item" label="合同ID:"> <Form-item class="search-item" label="合同编号:">
<Input v-model="formObj.contractId" @on-enter="_formSearch" name="contractId" placeholder="请输入合同ID" clearable/> <Input v-model="formObj.salesCode" @on-enter="_formSearch" name="salesCode" placeholder="请输入合同编号" clearable/>
</Form-item> </Form-item>
<Form-item class="search-btn"> <Form-item class="search-btn">
<Button @click="_formSearch" type="primary">搜索</Button> <Button @click="_formSearch" type="primary">搜索</Button>
...@@ -87,14 +87,15 @@ export default { ...@@ -87,14 +87,15 @@ export default {
} }
], ],
formObj: { formObj: {
client: undefined client: undefined,
salesCode: undefined
}, },
selectIds: [], selectIds: [],
getPage: {}, getPage: {},
pageColumns: [ pageColumns: [
{ title: '委托单位', key: 'client', width: 200 }, { title: '委托单位', key: 'client', width: 200 },
{ title: '委托时间', key: 'edate', width: 120, date: true }, { title: '委托时间', key: 'edate', width: 120, date: true },
{ title: '合同ID', key: 'contractId', width: 200 }, { title: '合同编号', key: 'salesCode', width: 200 },
{ title: '要求完成时间', key: 'odate', width: 120, date: true }, { title: '要求完成时间', key: 'odate', width: 120, date: true },
{ title: '分包方', key: 'subClient', width: 120 }, { title: '分包方', key: 'subClient', width: 120 },
{ title: '分包方联系人', key: 'subPerson', width: 120 }, { title: '分包方联系人', key: 'subPerson', width: 120 },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment