123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201 |
- <template>
- <HcCard>
- <template #header>
- <div class="w-36">
- <el-select v-model="searchForm.department" block clearable placeholder="选择部门" size="large">
- <el-option v-for="item in department" :label="item.name" :value="item.key"/>
- </el-select>
- </div>
- <div class="w-36 ml-4">
- <el-date-picker class="block" v-model="searchForm.planStartDate" type="month" value-format="YYYY-MM" placeholder="开始日期" clearable size="large"/>
- </div>
- <div class="mx-2">~</div>
- <div class="w-36">
- <el-date-picker class="block" v-model="searchForm.planEndDate" type="month" value-format="YYYY-MM" placeholder="结束日期" clearable size="large"/>
- </div>
- <div class="ml-4">
- <el-button size="large" type="primary" @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 size="large" type="primary" hc-btn @click="addRowClick">
- <HcIcon name="add"/>
- <span>新增预算计划</span>
- </el-button>
- </template>
- <HcTable :column="tableColumn" :datas="tableData" :loading="tableLoading">
- <template #planName="{row}">
- <span class="text-blue" @click="rowNameClick(row)">{{row.planName}}</span>
- </template>
- <template #key2="{row}">
- <span >{{row.planStartDate?row.planStartDate:''}}</span>
- <span v-if="row.planStartDate">~</span>
- <span >{{row.planStartDate?row.planStartDate:''}}</span>
- </template>
- <template #planTotal="{row}">
- <span>{{row.planTotal}}条</span>
- </template>
- <template #finishPlanTotal="{row}">
- <span>{{row.finishPlanTotal}}条</span>
- </template>
- <template #beginPlanTotal="{row}">
- <span>{{row.beginPlanTotal}}条</span>
- </template>
- <template #action="{row,index}">
- <el-button size="small" type="primary" @click="editRowClick(row)">编辑</el-button>
- <el-button size="small" type="danger">删除</el-button>
- </template>
- </HcTable>
- <template #action>
- <HcPages :pages="searchForm" @change="pageChange"/>
- </template>
- <!--选择计划所属月份-->
- <HcDialog bgColor="#ffffff" isToBody title="选择计划所属月份" widths="26rem" saveText="确认"
- :show="monthModal" @close="monthCloseClick" @save="monthSaveClick"
- >
- <el-form ref="formMonthRef" label-position="top" size="large" :model="formMonthModel" :rules="formMonthRules">
- <el-form-item label="选择部门" prop="section">
- <el-select v-model="formMonthModel.section" block placeholder="选择部门">
- <el-option v-for="item in department" :label="item.name" :value="item.key"/>
- </el-select>
- </el-form-item>
- <el-form-item label="选择月份" prop="month">
- <el-date-picker type="month" class="block" v-model="formMonthModel.month" format="YYYY-MM" value-format="YYYY-MM"/>
- </el-form-item>
- </el-form>
- </HcDialog>
- </HcCard>
- </template>
- <script setup>
- import {ref,onMounted,onActivated} from "vue";
- import {useRouter} from 'vue-router'
- import {getArrValue} from "js-fast-way"
- import sectionApi from '~api/program/section.js';
- const router = useRouter()
- onActivated(()=>{
- getTableData()
- })
- //选择部门
- const department = ref([
- {name: '研发部门', key: '1'},
- {name: '业务部门', key: '2'},
- {name: '人事部门', key: '3'},
- ])
- //搜索表单
- const searchForm = ref({
- planType: null, startTime: null, endTime: null, department: null, queryValue: '',
- 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: 'planName', name: '计划名称'},
- {key: 'key2', name: '计划起止日期', width: '220', align: 'center'},
- {key: 'planTotal', name: '计划数量', width: '120', align: 'center'},
- {key: 'finishPlanTotal', name: '已完成计划', width: '120', align: 'center'},
- {key: 'beginPlanTotal', name: '未完成计划', width: '120', align: 'center'},
- {key: 'planDesigner', name: '计划制定人', width: '120', align: 'center'},
- {key: 'action', name: '操作', width: '160', align: 'center'},
- ]
- const tableData = ref([
- {id: 1, key1: '2023年5月度计划', key2: '2022-07-01~2027-04-12', key3: '36', key4: '30', key5: '6', key6: '张三'},
- {id: 2, key1: '2023年5月度计划', key2: '2022-07-01~2027-04-12', key3: '36', key4: '30', key5: '6', key6: '张三'},
- {id: 3, key1: '2023年5月度计划', key2: '2022-07-01~2027-04-12', key3: '36', key4: '30', key5: '6', key6: '张三'},
- ])
- const getTableData = async() => {
- tableLoading.value = true
- const {error, code, data} = await sectionApi.getPage(searchForm.value)
- tableLoading.value = false
- if (!error && code === 200) {
- tableData.value = getArrValue(data)
- searchForm.value.total = data['total'] || 0
- } else {
- tableData.value = []
- searchForm.value.total = 0
- }
- }
- //表格名称被点击
- const rowNameClick = (row) => {
- }
- //新增计划
- const addRowClick = () => {
- monthModal.value = true
- }
- //获取所属部门列表
- const getDepartmentDict=()=>{
-
- }
- //选择月份
- const monthModal = ref(false)
- //选择月份的表单数据
- const formMonthRef = ref(null)
- const formMonthModel = ref({
- section: '', month: null
- })
- const formMonthRules = {
- section: [{required: true, message: '请选择部门', trigger: 'blur'}],
- month: [{required: true, message: '请选择月份', trigger: 'blur'}],
- }
- const monthCloseClick = () => {
- monthModal.value = false
- }
- //确认下一步
- const monthSaveClick = () => {
- monthModal.value = false
- router.push({
- name: 'program-section-form',
- query: formMonthModel.value
- })
- }
- //编辑预算
- const editRowClick = (row) => {
- router.push({
- name: 'program-index-info',
- query: {
- id: row.id
- }
- })
- }
- </script>
|