|
|
|
@ -4,13 +4,6 @@ |
|
|
|
<el-form-item label="序列号"> |
|
|
|
<el-input v-model="searchData.referenceNo" clearable style="width: 140px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="单据状态"> |
|
|
|
<el-select v-model="searchData.status" clearable style="width: 120px"> |
|
|
|
<el-option label="草稿" value="草稿"></el-option> |
|
|
|
<el-option label="审批中" value="审批中"></el-option> |
|
|
|
<el-option label="已完成" value="已完成"></el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="节点审批人"> |
|
|
|
<el-input v-model="searchData.currentApprover" clearable style="width: 120px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
@ -27,6 +20,27 @@ |
|
|
|
</el-option> |
|
|
|
</el-select> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="申请人"> |
|
|
|
<el-input v-model="searchData.applicant" clearable style="width: 120px"></el-input> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item label="申请日期"> |
|
|
|
<el-date-picker |
|
|
|
style="width: 120px" |
|
|
|
v-model="searchData.applicationStartDate" |
|
|
|
type="date" |
|
|
|
value-format="yyyy-MM-dd" |
|
|
|
placeholder="开始日期"> |
|
|
|
</el-date-picker> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="' '"> |
|
|
|
<el-date-picker |
|
|
|
style="width: 120px" |
|
|
|
v-model="searchData.applicationEndDate" |
|
|
|
type="date" |
|
|
|
value-format="yyyy-MM-dd" |
|
|
|
placeholder="结束日期"> |
|
|
|
</el-date-picker> |
|
|
|
</el-form-item> |
|
|
|
<el-form-item :label="' '"> |
|
|
|
<el-button v-if="authSearch" @click="getDataList">查询</el-button> |
|
|
|
<el-button v-if="authUpdate" @click="addOrUpdateHandle()">新增</el-button> |
|
|
|
@ -898,7 +912,9 @@ export default { |
|
|
|
searchData: { |
|
|
|
site: '', |
|
|
|
referenceNo: '', |
|
|
|
status: '', |
|
|
|
applicant: '', |
|
|
|
applicationStartDate: '', |
|
|
|
applicationEndDate: '', |
|
|
|
currentApprover: '', |
|
|
|
tester: '', |
|
|
|
nodeId: '' |
|
|
|
@ -2462,7 +2478,9 @@ export default { |
|
|
|
site: this.searchData.site || '', |
|
|
|
menuId: this.menuId, |
|
|
|
referenceNo: this.searchData.referenceNo, |
|
|
|
status: this.searchData.status, |
|
|
|
applicant: this.searchData.applicant, |
|
|
|
applicationStartDate: this.searchData.applicationStartDate, |
|
|
|
applicationEndDate: this.searchData.applicationEndDate, |
|
|
|
currentApprover: this.searchData.currentApprover, |
|
|
|
tester: this.searchData.tester, |
|
|
|
nodeId: this.searchData.nodeId |
|
|
|
|