优化了表格操作功能,提升了用户体验,提高了操作效率。
This commit is contained in:
parent
301f621f2a
commit
3dded18dc7
@ -55,13 +55,16 @@
|
|||||||
show-overflow-tooltip />
|
show-overflow-tooltip />
|
||||||
<el-table-column label="操作" width="150" fixed="right">
|
<el-table-column label="操作" width="150" fixed="right">
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<el-button v-perms="['contract.contract_negotiation/delete']" type="primary" link
|
<el-button type="primary" link @click="handleDetail(row)">
|
||||||
@click="handleDetail(row)">
|
|
||||||
详情
|
详情
|
||||||
</el-button>
|
</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>
|
||||||
|
<el-button v-perms="['contract.contract_negotiation/settlement']" type="primary" link
|
||||||
|
v-if="row.refund_rate != '100%'" @click="handleSettlement(row)">
|
||||||
|
结算
|
||||||
|
</el-button>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@ -89,11 +92,15 @@ import {
|
|||||||
import { apiManageProjectDetail } from '@/api/manage_project'
|
import { apiManageProjectDetail } from '@/api/manage_project'
|
||||||
import { apiConsultProjectDetail } from '@/api/consult_project'
|
import { apiConsultProjectDetail } from '@/api/consult_project'
|
||||||
import { apiCostProjectDetail } from '@/api/cost_project'
|
import { apiCostProjectDetail } from '@/api/cost_project'
|
||||||
|
import { useRouter } from "vue-router"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
const targetDetail = ref({})
|
const targetDetail = ref({})
|
||||||
const detailRef = shallowRef<InstanceType<typeof EditPopup>>()
|
const detailRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
// // 是否显示编辑框
|
// // 是否显示编辑框
|
||||||
const showDetail = ref(false)
|
const showDetail = ref(false)
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
// 查询条件
|
// 查询条件
|
||||||
const queryParams = reactive({
|
const queryParams = reactive({
|
||||||
@ -166,7 +173,7 @@ const getSummaries = (param) => {
|
|||||||
Number(prev) + Number(curr), 0
|
Number(prev) + Number(curr), 0
|
||||||
);
|
);
|
||||||
|
|
||||||
sums[index]= sums[index].toFixed(2)
|
sums[index] = sums[index].toFixed(2)
|
||||||
|
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
@ -183,5 +190,11 @@ const handleDown = async (id: number | any[]) => {
|
|||||||
a.href = res.url
|
a.href = res.url
|
||||||
a.click()
|
a.click()
|
||||||
}
|
}
|
||||||
|
// 结算
|
||||||
|
const handleSettlement = (row) => {
|
||||||
|
alert("没有接口")
|
||||||
|
router.push('/financial/invoice_and_receipt/financial_settlement')
|
||||||
|
}
|
||||||
|
|
||||||
getLists()
|
getLists()
|
||||||
</script>
|
</script>
|
||||||
|
@ -20,9 +20,6 @@
|
|||||||
</el-option>
|
</el-option>
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</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-form-item>
|
||||||
<el-button type="primary" @click="resetPage">查询</el-button>
|
<el-button type="primary" @click="resetPage">查询</el-button>
|
||||||
<el-button @click="resetParams">重置</el-button>
|
<el-button @click="resetParams">重置</el-button>
|
||||||
@ -74,6 +71,12 @@
|
|||||||
@click="handledetail(row)">
|
@click="handledetail(row)">
|
||||||
详情
|
详情
|
||||||
</el-button>
|
</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>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
@ -98,11 +101,14 @@ import feedback from '@/utils/feedback'
|
|||||||
import EditPopup from './edit.vue'
|
import EditPopup from './edit.vue'
|
||||||
import { deptLists } from "@/api/org/department"
|
import { deptLists } from "@/api/org/department"
|
||||||
import DetailPopup from './detail.vue'
|
import DetailPopup from './detail.vue'
|
||||||
|
import { useRouter } from "vue-router"
|
||||||
|
|
||||||
|
|
||||||
const detailRef = shallowRef<InstanceType<typeof DetailPopup>>()
|
const detailRef = shallowRef<InstanceType<typeof DetailPopup>>()
|
||||||
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
|
||||||
const showEdit = ref(false)
|
const showEdit = ref(false)
|
||||||
const showDetail = ref(false)
|
const showDetail = ref(false)
|
||||||
|
const router = useRouter()
|
||||||
|
|
||||||
// 查询条件
|
// 查询条件
|
||||||
const queryParams = reactive({
|
const queryParams = reactive({
|
||||||
@ -162,6 +168,18 @@ const handledetail = async (data: any) => {
|
|||||||
detailRef.value?.setFormData(res)
|
detailRef.value?.setFormData(res)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// 生成合同
|
||||||
|
const handleContract = (row: any) => {
|
||||||
|
alert("没有接口")
|
||||||
|
console.log(row)
|
||||||
|
}
|
||||||
|
|
||||||
|
// 已生成合同
|
||||||
|
const handleGoContract = (row) => {
|
||||||
|
return alert("没有接口")
|
||||||
|
router.push('/')
|
||||||
|
}
|
||||||
|
|
||||||
const deptList = ref([])
|
const deptList = ref([])
|
||||||
const getDeptList = async () => {
|
const getDeptList = async () => {
|
||||||
let res = await deptLists()
|
let res = await deptLists()
|
||||||
|
@ -58,7 +58,6 @@
|
|||||||
{{ (+formData.amount) - (+formData.enter_amount) }}
|
{{ (+formData.amount) - (+formData.enter_amount) }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
<el-descriptions-item label="已到账金额(元)" label-align="left" align="left">
|
<el-descriptions-item label="已到账金额(元)" label-align="left" align="left">
|
||||||
<!-- {{ formData.enter_amount }} -->
|
|
||||||
{{ formData.is_cash_text }}
|
{{ formData.is_cash_text }}
|
||||||
</el-descriptions-item>
|
</el-descriptions-item>
|
||||||
</el-descriptions>
|
</el-descriptions>
|
||||||
@ -67,8 +66,9 @@
|
|||||||
暂无更多到账记录,点击 <el-button @click="handAdd">添加</el-button>
|
暂无更多到账记录,点击 <el-button @click="handAdd">添加</el-button>
|
||||||
</template>
|
</template>
|
||||||
<el-table-column label="到账金额">
|
<el-table-column label="到账金额">
|
||||||
<template #default="{ row }">
|
<template #default="{ row, $index }">
|
||||||
<el-input v-model="row.amount" clearable placeholder="请输入报销金额" />
|
<el-input v-model="row.amount" clearable placeholder="请输入报销金额" type="number"
|
||||||
|
@change="amountChange($index)" />
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="到账日期">
|
<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({
|
defineExpose({
|
||||||
|
Loading…
x
Reference in New Issue
Block a user