|
@@ -101,7 +101,16 @@
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
</el-form-item>
|
|
|
-
|
|
|
+ <el-form-item v-if="showHideItem" label="作废状态" prop="cancellationStatus">
|
|
|
+ <el-select v-model="searchForm.cancellationStatus" placeholder="请选择" style="width:100%;" clearable>
|
|
|
+ <el-option
|
|
|
+ v-for="item in $dictUtils.getDictList('program_cancellation')"
|
|
|
+ :key="item.value"
|
|
|
+ :label="item.label"
|
|
|
+ :value="item.value">
|
|
|
+ </el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-button type="default" @click="showHide" :icon="showHideIcon">{{showHideName}}</el-button>
|
|
|
<el-button type="primary" @click="refreshList()" icon="el-icon-search">查询</el-button>
|
|
@@ -381,6 +390,7 @@
|
|
|
issuedStatus: '', // 签发单状态
|
|
|
archiveStatus: '', // 归档状态
|
|
|
reportNo:'', // 报告号
|
|
|
+ cancellationStatus:'', //作废状态
|
|
|
},
|
|
|
dataList: [],
|
|
|
tablePage: {
|