|
@@ -2,13 +2,14 @@
|
|
<HcCard>
|
|
<HcCard>
|
|
<template #header>
|
|
<template #header>
|
|
<div class="w-36">
|
|
<div class="w-36">
|
|
- <el-select v-model="searchForm.projectType" block clearable placeholder="采购类型" size="large">
|
|
|
|
- <el-option v-for="item in projectType" :label="item.name" :value="item.key"/>
|
|
|
|
|
|
+ <el-select v-model="searchForm.purType" block clearable placeholder="采购类型" size="large">
|
|
|
|
+ <el-option v-for="item in purTypeData" :label="item.dictName" :value="item.dictValue"/>
|
|
</el-select>
|
|
</el-select>
|
|
</div>
|
|
</div>
|
|
<div class="w-72 ml-2">
|
|
<div class="w-72 ml-2">
|
|
- <el-select v-model="searchForm.projectType" block clearable placeholder="使用单位" size="large">
|
|
|
|
- <el-option v-for="item in projectType" :label="item.name" :value="item.key"/>
|
|
|
|
|
|
+ <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>
|
|
</div>
|
|
</div>
|
|
<div class="ml-4">
|
|
<div class="ml-4">
|
|
@@ -27,7 +28,7 @@
|
|
<template #extra>
|
|
<template #extra>
|
|
<el-button size="large" type="warning" hc-btn @click="draftsClick">
|
|
<el-button size="large" type="warning" hc-btn @click="draftsClick">
|
|
<HcIcon name="draft"/>
|
|
<HcIcon name="draft"/>
|
|
- <span>草稿箱(1)</span>
|
|
|
|
|
|
+ <span>草稿箱{{draftNum > 0 ? `(${draftNum})` : ''}}</span>
|
|
</el-button>
|
|
</el-button>
|
|
<el-button size="large" type="primary" hc-btn @click="addRowClick">
|
|
<el-button size="large" type="primary" hc-btn @click="addRowClick">
|
|
<HcIcon name="add"/>
|
|
<HcIcon name="add"/>
|
|
@@ -36,11 +37,15 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<HcTable :column="tableColumn" :datas="tableData" :loading="tableLoading">
|
|
<HcTable :column="tableColumn" :datas="tableData" :loading="tableLoading">
|
|
- <template #key="{row}">
|
|
|
|
- <span class="text-blue" @click="rowNameTap(row)">{{row.key}}</span>
|
|
|
|
- </template>
|
|
|
|
<template #action="{row,index}">
|
|
<template #action="{row,index}">
|
|
- <el-button size="small" type="primary">撤销</el-button>
|
|
|
|
|
|
+ <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>
|
|
</template>
|
|
</HcTable>
|
|
</HcTable>
|
|
|
|
|
|
@@ -49,13 +54,15 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<!--草稿箱-->
|
|
<!--草稿箱-->
|
|
- <HcDialog bgColor="#ffffff" isToBody isTable :footer="false" :show="draftsModal" title="草稿箱(1)" widths="62rem" @close="draftsCloseClick">
|
|
|
|
|
|
+ <HcDialog isToBody isTable bgColor="#ffffff" widths="62rem" :footer="false" :show="draftsModal"
|
|
|
|
+ :title="draftNum > 0 ? `草稿箱(${draftNum})` : '草稿箱'" @close="draftsCloseClick"
|
|
|
|
+ >
|
|
<el-alert title="3个月内未更新的草稿将被自动删除" type="warning" show-icon />
|
|
<el-alert title="3个月内未更新的草稿将被自动删除" type="warning" show-icon />
|
|
<div style="position: relative;height: calc(100% - 44px);">
|
|
<div style="position: relative;height: calc(100% - 44px);">
|
|
<HcTable :isIndex="false" :column="tableDraftsColumn" :datas="tableDraftsData">
|
|
<HcTable :isIndex="false" :column="tableDraftsColumn" :datas="tableDraftsData">
|
|
<template #action="{row,index}">
|
|
<template #action="{row,index}">
|
|
- <el-button size="small" type="primary">继续编辑</el-button>
|
|
|
|
- <el-button size="small" type="danger">删除</el-button>
|
|
|
|
|
|
+ <el-button size="small" type="primary" @click="editDraftClick(row)">继续编辑</el-button>
|
|
|
|
+ <el-button size="small" type="danger" @click="delDraftClick(row)">删除</el-button>
|
|
</template>
|
|
</template>
|
|
</HcTable>
|
|
</HcTable>
|
|
</div>
|
|
</div>
|
|
@@ -64,24 +71,39 @@
|
|
</template>
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
<script setup>
|
|
-import {ref} from "vue";
|
|
|
|
|
|
+import {onActivated, ref} from "vue";
|
|
import {useRouter} from 'vue-router'
|
|
import {useRouter} from 'vue-router'
|
|
|
|
+import {getDictInfo} from "~api/system/parameter";
|
|
|
|
+import mainApi from "~api/expense/purchaseRequest";
|
|
|
|
+import {getArrValue} from "js-fast-way";
|
|
|
|
+import {delMessage} from "~uti/tools";
|
|
|
|
|
|
const router = useRouter()
|
|
const router = useRouter()
|
|
|
|
|
|
-//项目类型
|
|
|
|
-const projectType = ref([
|
|
|
|
- {name: '二级路', key: '二级路'},
|
|
|
|
- {name: '国道', key: '国道'},
|
|
|
|
- {name: '水利水电', key: '水利水电'},
|
|
|
|
- {name: '市政', key: '市政'},
|
|
|
|
-])
|
|
|
|
|
|
+onActivated(() => {
|
|
|
|
+ getApi()
|
|
|
|
+})
|
|
|
|
+
|
|
|
|
+const getApi = () => {
|
|
|
|
+ getPurType()
|
|
|
|
+ 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 searchForm = ref({
|
|
|
|
- projectType: null, user: null, project: null,
|
|
|
|
- current: 1, size: 20, total: 0
|
|
|
|
-})
|
|
|
|
|
|
+const searchForm = ref({purType: null, useOrgName: null, current: 1, size: 20, total: 0})
|
|
|
|
|
|
//搜索
|
|
//搜索
|
|
const searchClick = () => {
|
|
const searchClick = () => {
|
|
@@ -104,35 +126,47 @@ const pageChange = ({current, size}) => {
|
|
//获取数据
|
|
//获取数据
|
|
const tableLoading = ref(false)
|
|
const tableLoading = ref(false)
|
|
const tableColumn = [
|
|
const tableColumn = [
|
|
- {key: 'key1', name: '申请事由', minWidth: '200'},
|
|
|
|
- {key: 'key2', name: '采购类型', width: '200', align: 'center'},
|
|
|
|
- {key: 'key3', name: '使用单位', minWidth: '200'},
|
|
|
|
- {key: 'key4', name: '期望交付日期', width: '160', align: 'center'},
|
|
|
|
- {key: 'key5', name: '总采购资金', width: '160', align: 'center'},
|
|
|
|
- {key: 'key6', name: '审批结果', width: '140', align: 'center'},
|
|
|
|
- {key: 'key7', name: '审批状态', width: '160', align: 'center'},
|
|
|
|
- {key: 'key8', name: '创建人', width: '140', align: 'center'},
|
|
|
|
- {key: 'key9', name: '创建时间', width: '160', align: 'center'},
|
|
|
|
|
|
+ {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: 'createUser', name: '创建人', width: '140', align: 'center'},
|
|
|
|
+ {key: 'createTime', name: '创建时间', width: '160', align: 'center'},
|
|
{key: 'action', name: '操作', width: '90', align: 'center', fixed: 'right'},
|
|
{key: 'action', name: '操作', width: '90', align: 'center', fixed: 'right'},
|
|
]
|
|
]
|
|
-const tableData = ref([
|
|
|
|
- {id: 1, key: 'YS-01', key1: 'xxxx', key2: 'xxxx', key3: '65632', key4: '35654', key5: '12312', key6: 'xxxx'},
|
|
|
|
- {id: 2, key: 'YS-01', key1: 'xxxx', key2: 'xxxx', key3: '65632', key4: '35654', key5: '12312', key6: 'xxxx'},
|
|
|
|
- {id: 3, key: 'YS-01', key1: 'xxxx', key2: 'xxxx', key3: '65632', key4: '35654', key5: '12312', key6: 'xxxx'},
|
|
|
|
- {id: 4, key: 'YS-01', key1: 'xxxx', key2: 'xxxx', key3: '65632', key4: '35654', key5: '12312', key6: 'xxxx'},
|
|
|
|
- {id: 5, key: 'YS-01', key1: 'xxxx', key2: 'xxxx', key3: '65632', key4: '35654', key5: '12312', key6: 'xxxx'},
|
|
|
|
- {id: 6, key: 'YS-01', key1: 'xxxx', key2: 'xxxx', key3: '65632', key4: '35654', key5: '12312', key6: 'xxxx'},
|
|
|
|
-])
|
|
|
|
-
|
|
|
|
-const getTableData = () => {
|
|
|
|
-
|
|
|
|
|
|
+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 rowNameTap = (row) => {
|
|
|
|
-
|
|
|
|
|
|
+//撤销
|
|
|
|
+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()
|
|
|
|
+ } else {
|
|
|
|
+ window.$message?.error(msg)
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+
|
|
//新增
|
|
//新增
|
|
const addRowClick = () => {
|
|
const addRowClick = () => {
|
|
router.push({
|
|
router.push({
|
|
@@ -150,11 +184,47 @@ const draftsCloseClick = () => {
|
|
}
|
|
}
|
|
|
|
|
|
//草稿箱数据
|
|
//草稿箱数据
|
|
|
|
+const draftNum = ref(0)
|
|
const tableDraftsColumn = [
|
|
const tableDraftsColumn = [
|
|
- {key: 'key1', name: '标题'},
|
|
|
|
- {key: 'key2', name: '更新时间', width: '200'},
|
|
|
|
|
|
+ {key: 'title', name: '标题'},
|
|
|
|
+ {key: 'updateTime', name: '更新时间', width: '200'},
|
|
{key: 'action', name: '操作', width: '170', align: 'center'},
|
|
{key: 'action', name: '操作', width: '170', align: 'center'},
|
|
]
|
|
]
|
|
-const tableDraftsData = ref([{id: 1, key1: 'xxxx', key2: 'xxxx'}, {id: 2, key1: 'xxxx', key2: 'xxxx'}, {id: 3, key1: 'xxxx', key2: 'xxxx'}])
|
|
|
|
|
|
+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}) => {
|
|
|
|
+ delMessage(async () => {
|
|
|
|
+ const {error, code, msg} = await mainApi.remove({groupId})
|
|
|
|
+ //判断状态
|
|
|
|
+ if (!error && code === 200) {
|
|
|
|
+ window.$message?.success(msg)
|
|
|
|
+ getDraftNum().then()
|
|
|
|
+ } else {
|
|
|
|
+ window.$message?.error(msg)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+}
|
|
</script>
|
|
</script>
|