优化了表格操作功能,提升了用户体验,提高了操作效率。

This commit is contained in:
zmj 2024-06-01 16:54:35 +08:00
parent 301f621f2a
commit 3dded18dc7
3 changed files with 47 additions and 11 deletions

View File

@ -55,13 +55,16 @@
show-overflow-tooltip />
<el-table-column label="操作" width="150" fixed="right">
<template #default="{ row }">
<el-button v-perms="['contract.contract_negotiation/delete']" type="primary" link
@click="handleDetail(row)">
<el-button type="primary" link @click="handleDetail(row)">
详情
</el-button>
<el-button v-perms="['contract.contract_negotiation/detail']" link @click="handleDown(row.id)">
<el-button link @click="handleDown(row.id)">
下载
</el-button>
<el-button v-perms="['contract.contract_negotiation/settlement']" type="primary" link
v-if="row.refund_rate != '100%'" @click="handleSettlement(row)">
结算
</el-button>
</template>
</el-table-column>
</el-table>
@ -89,11 +92,15 @@ import {
import { apiManageProjectDetail } from '@/api/manage_project'
import { apiConsultProjectDetail } from '@/api/consult_project'
import { apiCostProjectDetail } from '@/api/cost_project'
import { useRouter } from "vue-router"
const targetDetail = ref({})
const detailRef = shallowRef<InstanceType<typeof EditPopup>>()
// //
const showDetail = ref(false)
const router = useRouter()
//
const queryParams = reactive({
@ -166,8 +173,8 @@ const getSummaries = (param) => {
Number(prev) + Number(curr), 0
);
sums[index]= sums[index].toFixed(2)
sums[index] = sums[index].toFixed(2)
}
else {
sums[index] = '';
@ -183,5 +190,11 @@ const handleDown = async (id: number | any[]) => {
a.href = res.url
a.click()
}
//
const handleSettlement = (row) => {
alert("没有接口")
router.push('/financial/invoice_and_receipt/financial_settlement')
}
getLists()
</script>

View File

@ -20,9 +20,6 @@
</el-option>
</el-select>
</el-form-item>
<!-- <el-form-item label="甲方签约单位">
<el-input class="w-[280px]" v-model="queryParams.part_a" clearable placeholder="请输入行业性质" />
</el-form-item> -->
<el-form-item>
<el-button type="primary" @click="resetPage">查询</el-button>
<el-button @click="resetParams">重置</el-button>
@ -74,6 +71,12 @@
@click="handledetail(row)">
详情
</el-button>
<el-button type="primary" link @click="handleContract(row)" v-if="false">
生成合同
</el-button>
<el-button type="primary" link @click="handleGoContract(row)" v-else>
已生成合同
</el-button>
</template>
</el-table-column>
</el-table>
@ -98,11 +101,14 @@ import feedback from '@/utils/feedback'
import EditPopup from './edit.vue'
import { deptLists } from "@/api/org/department"
import DetailPopup from './detail.vue'
import { useRouter } from "vue-router"
const detailRef = shallowRef<InstanceType<typeof DetailPopup>>()
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
const showEdit = ref(false)
const showDetail = ref(false)
const router = useRouter()
//
const queryParams = reactive({
@ -162,6 +168,18 @@ const handledetail = async (data: any) => {
detailRef.value?.setFormData(res)
}
//
const handleContract = (row: any) => {
alert("没有接口")
console.log(row)
}
//
const handleGoContract = (row) => {
return alert("没有接口")
router.push('/')
}
const deptList = ref([])
const getDeptList = async () => {
let res = await deptLists()

View File

@ -58,7 +58,6 @@
{{ (+formData.amount) - (+formData.enter_amount) }}
</el-descriptions-item>
<el-descriptions-item label="已到账金额(元)" label-align="left" align="left">
<!-- {{ formData.enter_amount }} -->
{{ formData.is_cash_text }}
</el-descriptions-item>
</el-descriptions>
@ -67,8 +66,9 @@
暂无更多到账记录点击 <el-button @click="handAdd">添加</el-button>
</template>
<el-table-column label="到账金额">
<template #default="{ row }">
<el-input v-model="row.amount" clearable placeholder="请输入报销金额" />
<template #default="{ row, $index }">
<el-input v-model="row.amount" clearable placeholder="请输入报销金额" type="number"
@change="amountChange($index)" />
</template>
</el-table-column>
<el-table-column label="到账日期">
@ -221,6 +221,11 @@ const fdz = async () => {
}
const amountChange = (index) => {
detail.value[index].amount = (+detail.value[index].amount).toFixed(2)
}
//
defineExpose({