Commit 82864649 by YuleiLan

feat: 工单列表添加流程信息。

parent 0f2c94f8
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
<!-- <el-table-column type="selection" width="55" align="center" /> --> <!-- <el-table-column type="selection" width="55" align="center" /> -->
<el-table-column label="ID" prop="id" width="120" /> <el-table-column label="ID" prop="id" width="120" />
<el-table-column label="标题" prop="title" :show-overflow-tooltip="true" /> <el-table-column label="标题" prop="title" :show-overflow-tooltip="true" />
<el-table-column label="流程" prop="process_name" :show-overflow-tooltip="true" />
<el-table-column label="当前状态" :show-overflow-tooltip="true"> <el-table-column label="当前状态" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
<el-select <el-select
v-model="listQuery.processor" v-model="listQuery.processor"
filterable filterable
clearable
remote remote
size="small" size="small"
reserve-keyword reserve-keyword
...@@ -47,6 +48,7 @@ ...@@ -47,6 +48,7 @@
<el-form-item label="创建时间"> <el-form-item label="创建时间">
<el-date-picker <el-date-picker
v-model="timeValue" v-model="timeValue"
clearable
size="small" size="small"
type="datetimerange" type="datetimerange"
:picker-options="pickerOptions" :picker-options="pickerOptions"
...@@ -54,6 +56,7 @@ ...@@ -54,6 +56,7 @@
start-placeholder="开始日期" start-placeholder="开始日期"
end-placeholder="结束日期" end-placeholder="结束日期"
align="right" align="right"
@change="getList"
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
<!-- <el-table-column type="selection" width="55" align="center" /> --> <!-- <el-table-column type="selection" width="55" align="center" /> -->
<el-table-column label="ID" prop="id" width="120" /> <el-table-column label="ID" prop="id" width="120" />
<el-table-column label="标题" prop="title" :show-overflow-tooltip="true" /> <el-table-column label="标题" prop="title" :show-overflow-tooltip="true" />
<el-table-column label="流程" prop="process_name" :show-overflow-tooltip="true" />
<el-table-column label="当前状态" :show-overflow-tooltip="true"> <el-table-column label="当前状态" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
<!-- <el-table-column type="selection" width="55" align="center" /> --> <!-- <el-table-column type="selection" width="55" align="center" /> -->
<el-table-column label="ID" prop="id" width="120" /> <el-table-column label="ID" prop="id" width="120" />
<el-table-column label="标题" prop="title" :show-overflow-tooltip="true" /> <el-table-column label="标题" prop="title" :show-overflow-tooltip="true" />
<el-table-column label="流程" prop="process_name" :show-overflow-tooltip="true" />
<el-table-column label="当前状态" :show-overflow-tooltip="true"> <el-table-column label="当前状态" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
......
...@@ -11,6 +11,7 @@ ...@@ -11,6 +11,7 @@
<!-- <el-table-column type="selection" width="55" align="center" /> --> <!-- <el-table-column type="selection" width="55" align="center" /> -->
<el-table-column label="ID" prop="id" width="120" /> <el-table-column label="ID" prop="id" width="120" />
<el-table-column label="标题" prop="title" :show-overflow-tooltip="true" /> <el-table-column label="标题" prop="title" :show-overflow-tooltip="true" />
<el-table-column label="流程" prop="process_name" :show-overflow-tooltip="true" />
<el-table-column label="当前状态" :show-overflow-tooltip="true"> <el-table-column label="当前状态" :show-overflow-tooltip="true">
<template slot-scope="scope"> <template slot-scope="scope">
<span> <span>
......
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 sign in to comment