Browse Source

完善维修单查询

master
yunuo970428 10 months ago
parent
commit
9468b4fb64
  1. 2
      yxt-as-ui/src/router/index.js
  2. 8
      yxt-as-ui/src/views/operation/workorderquery/workorderquery.vue

2
yxt-as-ui/src/router/index.js

@ -96,7 +96,7 @@ export const constantRoutes = [{
path: '/workorderquery/workorderquery',
component: () => import('@/views/operation/workorderquery/workorderquery.vue'),
name: 'WorkOrderQuery',
meta: { title: '单查询', noCache: true }
meta: { title: '维修单查询', noCache: true }
},
{
path: '/workorderinvoicing/workorderinvoicing',

8
yxt-as-ui/src/views/operation/workorderquery/workorderquery.vue

@ -2,7 +2,7 @@
<div class="app-container">
<!--列表页面-->
<div v-show="viewState == 1">
<button-bar view-title="单查询" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/>
<button-bar view-title="维修单查询" ref="btnbar" :btndisabled="btndisabled" @btnhandle="btnHandle"/>
<!--Start查询列表部分-->
<div class="main-content">
<div class="searchcon">
@ -26,7 +26,7 @@
<span style="padding: 0 8px"></span>
<el-date-picker v-model="listQuery.params.endTime" value-format="yyyy-MM-dd" format="yyyy-MM-dd" type="date" placeholder="选择日期"></el-date-picker>
</el-form-item>
<el-form-item label="单类型">
<el-form-item label="维修单类型">
<el-select v-model="listQuery.params.billType" clearable placeholder="请选择" filterable>
<el-option v-for="item in billType_list" :key="item.dictKey" :label="item.dictValue" :value="item.dictValue">
</el-option>
@ -84,7 +84,7 @@
</div>
<!--End查询列表部分-->
<div class="listtop">
<div class="tit">单查询列表</div>
<div class="tit">维修单查询列表</div>
<pageye v-show="list.length > 0" :total="listQuery.total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/>
</div>
<!--Start 主页面主要部分 -->
@ -102,7 +102,7 @@
<el-table-column prop="dept" label="制单部门" align="center" width="120" />
<el-table-column prop="createByName" label="制单人" align="center" width="120" />
<el-table-column prop="createTime" label="制单日期" align="center" width="120" />
<el-table-column prop="billType" label="单类型" align="center" width="120" />
<el-table-column prop="billType" label="维修单类型" align="center" width="120" />
<el-table-column prop="subject" label="科目" align="center" width="100" />
<el-table-column prop="entryTime" label="进厂时间" align="center" width="160" />
<el-table-column prop="estimatedFinishTime" label="预计完工时间" align="center" width="160" />

Loading…
Cancel
Save