|
@@ -14,7 +14,7 @@
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
<a-form-item label="台账类型" name="tzType">
|
|
|
- <a-select v-model:value="searchFormState.tzType" placeholder="请选择台账类型" :options="tzTypeOptions" show-search allow-clear option-filter-prop="label"/>
|
|
|
+ <a-input v-model:value="searchFormState.tzType" placeholder="请输入台账类型" allow-clear/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
@@ -29,7 +29,7 @@
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
|
<a-form-item label="申报类型" name="sblx">
|
|
|
- <a-input v-model:value="searchFormState.sblx" placeholder="请输入申报类型" allow-clear/>
|
|
|
+ <a-select v-model:value="searchFormState.sblx" placeholder="请选择申报类型" :options="applyTypeOptions" show-search allow-clear option-filter-prop="label"/>
|
|
|
</a-form-item>
|
|
|
</a-col>
|
|
|
<a-col :span="6">
|
|
@@ -75,12 +75,12 @@
|
|
|
</a-space>
|
|
|
</template>
|
|
|
<template #bodyCell="{ column, record }">
|
|
|
- <template v-if="column.dataIndex === 'tzType'">
|
|
|
- {{ $TOOL.dictTypeData('tzlx', record.tzType) }}
|
|
|
- </template>
|
|
|
<template v-if="column.dataIndex === 'status'">
|
|
|
{{ $TOOL.dictTypeData('djzt', record.status) }}
|
|
|
</template>
|
|
|
+ <template v-if="column.dataIndex === 'sblx'">
|
|
|
+ {{ $TOOL.dictTypeData('qybalx', record.sblx) }}
|
|
|
+ </template>
|
|
|
<template v-if="column.dataIndex === 'action'">
|
|
|
<a-space>
|
|
|
<a @click="resultDetailRef.onOpen(record)" v-if="record.status == 3 || record.status == 4">查看回执</a>
|
|
@@ -272,6 +272,8 @@
|
|
|
}
|
|
|
const tzTypeOptions = tool.dictList('tzlx')
|
|
|
const statusOptions = tool.dictList('djzt')
|
|
|
+ const applyTypeOptions = tool.dictList('qybalx')
|
|
|
+
|
|
|
</script>
|
|
|
|
|
|
<style lang="less" scoped>
|