Commit 887702a9 by lichengming

修改了留存位置查询

parent 846d55c6
...@@ -11,6 +11,9 @@ ...@@ -11,6 +11,9 @@
<Form-item class="search-item" label="委托编号:"> <Form-item class="search-item" label="委托编号:">
<Input @on-enter="_formSearch" v-model="formObj.entrustCode" name="entrustCode" placeholder="请输入委托编号" clearable/> <Input @on-enter="_formSearch" v-model="formObj.entrustCode" name="entrustCode" placeholder="请输入委托编号" clearable/>
</Form-item> </Form-item>
<Form-item class="search-item" label="试样编号:">
<Input @on-enter="_formSearch" v-model="formObj.sampleCode" name="sampleCode" placeholder="请输入试样编号" clearable/>
</Form-item>
<Form-item class="search-btn"> <Form-item class="search-btn">
<Button @click="_formSearch" type="primary">搜索</Button> <Button @click="_formSearch" type="primary">搜索</Button>
</Form-item> </Form-item>
...@@ -85,6 +88,7 @@ export default { ...@@ -85,6 +88,7 @@ export default {
currentComponent: '', currentComponent: '',
formObj: { formObj: {
entrustCode: undefined, entrustCode: undefined,
sampleCode: undefined,
name: undefined name: undefined
}, },
btn: [ btn: [
...@@ -102,18 +106,14 @@ export default { ...@@ -102,18 +106,14 @@ export default {
pageColumns: [ pageColumns: [
{ title: '委托商', key: 'client', width: 200 }, { title: '委托商', key: 'client', width: 200 },
{ title: '委托编号', key: 'entrustCode', width: 120 }, { title: '委托编号', key: 'entrustCode', width: 120 },
{ title: '委托日期', key: 'entrustDate', width: 120, date: true }, { title: '试样编号', key: 'sampleCode', width: 100 },
{ title: '钻孔位置', key: 'boreholeLocation', width: 120 }, { title: '试样深度', key: 'sampleDepth', width: 95 },
{ title: '水深(米)', key: 'waterDepth', width: 120 }, { title: '现场编号', key: 'siteNo', width: 100 },
{ title: '钻孔名称', key: 'boreholeName', width: 120 }, { title: '接收人', key: 'receiver', width: 120 },
{ title: '进度', key: 'progress', width: 120, status: true }, { title: '接收时间', key: 'receiveTime', width: 140, date: true },
{ title: '平均容重', key: 'projectNo', width: 120 }, { title: '收样存储位置', key: 'receiveLocation', width: 140 },
{ title: '报告编号', key: 'reportCode', width: 120 }, { title: '土质描述', key: 'sampleDescribe', width: 185 },
{ title: '制表日期', key: 'tabulateDate', width: 120, date: true }, { title: '样品包装类型', key: 'samplePack', width: 120 }
{ title: '制表人', key: 'tabulater', width: 120 },
{ title: '批准日期', key: 'approveDate', width: 120, date: true },
{ title: '批准人', key: 'approver', width: 120 },
{ title: '检验类别', key: 'testType', width: 120 }
], ],
// 操作 // 操作
iconMsg: [ iconMsg: [
......
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