123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- <template>
- <HcCard>
- <template #header>
- <div class="w-36">
- <el-select v-model="searchForm.purType" clearable block placeholder="采购类型" size="large">
- <el-option v-for="item in purTypeData" :label="item.dictName" :value="item.dictName" />
- </el-select>
- </div>
- <div class="ml-2 w-72">
- <!-- <el-select v-model="searchForm.useOrgName" block clearable placeholder="使用单位" size="large">
- <el-option label="暂无接口1" value="1"/>
- <el-option label="暂无接口2" value="2"/>
- </el-select> -->
- <el-select v-model="searchForm.useOrgName" clearable block placeholder="使用单位" size="large">
- <el-option v-for="item in useOrgNameData" :label="item" :value="item" />
- </el-select>
- </div>
- <div class="ml-4">
- <el-button type="primary" size="large" @click="searchClick">
- <HcIcon name="search-2" />
- <span>搜索</span>
- </el-button>
- </div>
- <div class="ml-2">
- <el-button size="large" @click="resetClick">
- <HcIcon name="close-circle" />
- <span>重置</span>
- </el-button>
- </div>
- </template>
- <template #extra>
- <el-button v-auth-btn="['expense-purchaseRequest-draft-btn']" size="large" type="warning" hc-btn @click="draftsClick">
- <HcIcon name="draft" />
- <span>草稿箱{{ draftNum > 0 ? `(${draftNum})` : '' }}</span>
- </el-button>
- <el-button v-auth-btn="['expense-purchaseRequest-add-btn']" size="large" type="primary" hc-btn @click="addRowClick">
- <HcIcon name="add" />
- <span>新增采购申请</span>
- </el-button>
- </template>
- <HcTable :column="tableColumn" :datas="tableData" :loading="tableLoading">
- <template #action="{ row, index }">
- <el-popconfirm title="是否确认撤销?" hide-icon @confirm="rowCancel(row)">
- <template #reference>
- <el-button
- size="small" type="primary"
- :disabled="row.status !== 1"
- :loading="row.isCancelLoading"
- >
- 撤销
- </el-button>
- </template>
- </el-popconfirm>
- </template>
- </HcTable>
- <template #action>
- <HcPages :pages="searchForm" @change="pageChange" />
- </template>
- <!-- 草稿箱 -->
- <HcDialog v-model="draftsModal" is-table widths="62rem" :footer="false" :title="draftNum > 0 ? `草稿箱(${draftNum})` : '草稿箱'" @close="draftsCloseClick">
- <el-alert title="3个月内未更新的草稿将被自动删除" type="warning" show-icon />
- <div style="position: relative;height: calc(100% - 44px);">
- <HcTable :is-index="false" :column="tableDraftsColumn" :datas="tableDraftsData">
- <template #action="{ row }">
- <el-button size="small" type="primary" @click="editDraftClick(row)">继续编辑</el-button>
- <el-button size="small" type="danger" @click="delDraftClick(row)">删除</el-button>
- </template>
- </HcTable>
- </div>
- </HcDialog>
- </HcCard>
- </template>
- <script setup>
- import { onActivated, ref } from 'vue'
- import { useRouter } from 'vue-router'
- import { getDictInfo } from '~api/other'
- import mainApi from '~api/expense/purchaseRequest'
- import { getArrValue } from 'js-fast-way'
- import { HcDelMsg } from 'hc-vue3-ui'
- const router = useRouter()
- onActivated(() => {
- getApi()
- })
- const getApi = () => {
- getPurType()
- getUseOrgNameData()
- getTableData()
- getDraftNum()
- }
- //采购类型字典
- const purTypeData = ref([])
- const getPurType = async () => {
- const { error, code, data } = await getDictInfo('purchase_type')
- //判断状态
- if (!error && code === 200) {
- purTypeData.value = getArrValue(data)
- } else {
- purTypeData.value = []
- }
- }
- //采购使用单位
- const useOrgNameData = ref([])
- const getUseOrgNameData = async () => {
- const { error, code, data } = await mainApi.getUseOrgNameList()
- //判断状态
- if (!error && code === 200) {
- useOrgNameData.value = getArrValue(data)
- } else {
- useOrgNameData.value = []
- }
- }
- //搜索表单
- const searchForm = ref({ purType: null, useOrgName: null, current: 1, size: 20, total: 0 })
- //搜索
- const searchClick = () => {
- searchForm.value.current = 1
- getTableData()
- }
- //重置搜索表单
- const resetClick = () => {
- searchForm.value = { current: 1, size: 20, total: 0 }
- }
- //分页被点击
- const pageChange = ({ current, size }) => {
- searchForm.value.current = current
- searchForm.value.size = size
- getTableData()
- }
- //获取数据
- const tableLoading = ref(false)
- const tableColumn = [
- { key: 'purDesc', name: '申请事由', minWidth: '200' },
- { key: 'purTypeName', name: '采购类型', width: '200', align: 'center' },
- { key: 'useOrgName', name: '使用单位', minWidth: '200' },
- { key: 'expectedDeliveryDate', name: '期望交付日期', width: '160', align: 'center' },
- { key: 'purPrice', name: '总采购资金', width: '160', align: 'center' },
- { key: 'approvalResultName', name: '审批结果', width: '140', align: 'center' },
- { key: 'approvalStatusName', name: '审批状态', width: '160', align: 'center' },
- { key: 'createName', name: '创建人', width: '140', align: 'center' },
- { key: 'createTime', name: '创建时间', width: '160', align: 'center' },
- { key: 'action', name: '操作', width: '90', align: 'center', fixed: 'right' },
- ]
- const tableData = ref([])
- const getTableData = async () => {
- tableLoading.value = true
- const { error, code, data } = await mainApi.page(searchForm.value)
- //判断状态
- tableLoading.value = false
- if (!error && code === 200) {
- tableData.value = getArrValue(data['records'])
- searchForm.value.total = data['total'] || 0
- } else {
- tableData.value = []
- searchForm.value.total = 0
- }
- }
- //撤销
- const rowCancel = async (row) => {
- row.isCancelLoading = true
- const { error, code, msg } = await mainApi.cancel({ id: row.id })
- //判断状态
- row.isCancelLoading = false
- if (!error && code === 200) {
- window.$message?.success(msg)
- getTableData().then()
- }
- }
- //新增
- const addRowClick = () => {
- router.push({
- name: 'expense-purchaseRequest-record',
- })
- }
- //草稿箱
- const draftsModal = ref(false)
- const draftsClick = () => {
- draftsModal.value = true
- }
- const draftsCloseClick = () => {
- draftsModal.value = false
- }
- //草稿箱数据
- const draftNum = ref(0)
- const tableDraftsColumn = [
- { key: 'title', name: '标题' },
- { key: 'updateTime', name: '更新时间', width: '200' },
- { key: 'action', name: '操作', width: '170', align: 'center' },
- ]
- const tableDraftsData = ref([])
- //获取草稿数量
- const getDraftNum = async () => {
- const { error, code, data } = await mainApi.draft()
- //判断状态
- if (!error && code === 200) {
- const res = getArrValue(data)
- tableDraftsData.value = res
- draftNum.value = res.length
- } else {
- tableDraftsData.value = []
- draftNum.value = 0
- }
- }
- //继续编辑
- const editDraftClick = ({ emdraftIds }) => {
- draftsModal.value = false
- router.push({
- name: 'expense-purchaseRequest-record',
- query: { id: emdraftIds },
- })
- }
- //删除草稿
- const delDraftClick = ({ groupId }) => {
- HcDelMsg(async (resolve) => {
- const { error, code, msg } = await mainApi.remove({ groupId })
- resolve()
- if (!error && code === 200) {
- window.$message?.success(msg)
- getDraftNum().then()
- }
- })
- }
- </script>
|