372 lines
14 KiB
Vue
372 lines
14 KiB
Vue
<template>
|
|
<div class="edit-popup">
|
|
|
|
<popup ref="popupRef" :title="popupTitle" :async="true" width="80%" @confirm="handleSubmit" @close="handleClose">
|
|
<el-form ref="formRef" :model="formData" label-width="auto" :rules="formRules">
|
|
<el-row :gutter="10">
|
|
|
|
|
|
<el-col :span="8">
|
|
<el-form-item label="项目名称" prop="contract_id" @click="showDialog1 = true"
|
|
:rules="[{ required: true, message: '不可为空', trigger: 'change' }]">
|
|
<el-input v-model="project_name" clearable placeholder="请选择项目" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="项目编码" prop="contract_id">
|
|
<el-input v-model="project_code" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="8">
|
|
<el-form-item label="合同编号" prop="contract_no">
|
|
<el-input v-model="contract_no" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="合同名称" prop="contract_name">
|
|
<el-input v-model="contract_name" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="客户名称" prop="customer_id">
|
|
<el-input v-model="custom_name" clearable disabled placeholder="系统自动填写" />
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="8">
|
|
<el-form-item label="退款日期" prop="refund_date"
|
|
:rules="[{ required: true, message: '不可为空', trigger: 'change' }]">
|
|
<el-date-picker class="flex-1 !flex" v-model="formData.refund_date" clearable type="date"
|
|
value-format="YYYY-MM-DD" placeholder="选择日期">
|
|
</el-date-picker>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="退款原因" prop="reason">
|
|
<el-input v-model="formData.reason" type='textarea' clearable placeholder="请输入退款原因" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="退款金额" prop="amount">
|
|
<el-input v-model="formData.amount" clearable placeholder="请输入退款金额" @input="amountinput" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="金额大写" prop="amount_daxie">
|
|
<el-input v-model="amount_daxie" clearable disabled placeholder="系统自动填写" />
|
|
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="退款方式" prop="contacts">
|
|
<el-select class="flex-1" v-model="formData.refund_type" clearable placeholder="请选择退款方式">
|
|
<el-option v-for="(item, index) in dictData.refund_type" :key="index" :label="item.name"
|
|
:value="parseInt(item.value)" />
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="退款人" prop="refund_user">
|
|
<el-input v-model="formData.refund_user" clearable placeholder="请输入退款人" />
|
|
|
|
</el-form-item>
|
|
</el-col>
|
|
|
|
<el-col :span="12">
|
|
<el-form-item label="备注" prop="remark">
|
|
<el-input v-model="formData.remark" type="textarea" clearable placeholder="请输入备注" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="24">
|
|
|
|
<el-form-item label="附件" prop="field127">
|
|
<el-upload
|
|
accept="doc, docx, xls, xlsx, ppt, pptx, pdf, txt, zip, rar, tar, jpg, png, gif, jpeg, webp, wmv, avi, mpg, mpeg, 3gp, mov, mp4, flv, f4v, rmvb, mkv"
|
|
class="upload-demo" :show-file-list="false" aria-hidden="true"
|
|
:headers="{ Token: userStore.token }" :action="base_url + '/upload/file'"
|
|
:on-success="handleAvatarSuccess_four" ref="upload">
|
|
<el-button type="primary">
|
|
上传
|
|
</el-button>
|
|
</el-upload>
|
|
|
|
<div>
|
|
<div v-for="(item, index) in formDataannex" style="margin-left: 5px;display: block;">
|
|
<a style="margin-left: 10px; color: #4a5dff; align-self: flex-start" :href="item.uri"
|
|
target="_blank">{{ item.name }}</a>
|
|
<span style="cursor: pointer;margin-left: 5px;" @click="delFileFn(index)">x</span>
|
|
</div>
|
|
</div>
|
|
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
<div style="margin: 20px 0;">客户收款信息</div>
|
|
|
|
<el-row :gutter="10">
|
|
<el-col :span="8">
|
|
<el-form-item label="收款账号" prop="collection_account">
|
|
<el-input v-model="formData.collection_account" clearable placeholder="请输入收款账号" />
|
|
</el-form-item>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="收款银行" prop="collection_bank">
|
|
<el-input v-model="formData.collection_bank" clearable placeholder="请输入收款银行" />
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-row>
|
|
|
|
<div style="margin: 20px 0;">付款银行信息</div>
|
|
<el-row :gutter="10">
|
|
<el-col :span="8">
|
|
<el-form-item label="账户编码" prop="collection_account">
|
|
<el-input v-model="formData.bank_account_info.account_sn" @click="showDialog = true" readonly
|
|
clearable placeholder="请输入收款账号" />
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
<el-col :span="8">
|
|
<el-form-item label="开户银行" prop="collection_bank">
|
|
<el-input v-model="formData.bank_account_info.deposit_bank" clearable readonly
|
|
placeholder="请输入收款银行" />
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-form-item label="开户名称" prop="collection_bank">
|
|
<el-input v-model="formData.bank_account_info.account_name" clearable readonly
|
|
placeholder="请输入收款银行" />
|
|
</el-form-item>
|
|
|
|
</el-col> <el-col :span="8">
|
|
<el-form-item label="开户账号" prop="collection_bank">
|
|
<el-input v-model="formData.bank_account_info.account" clearable readonly
|
|
placeholder="请输入收款银行" />
|
|
</el-form-item>
|
|
|
|
</el-col>
|
|
|
|
</el-row>
|
|
|
|
<el-dialog v-model="showDialog" title="选择收款银行" width="70%">
|
|
<bankaccountDialog @customEvent="customEvent"></bankaccountDialog>
|
|
</el-dialog>
|
|
<el-dialog v-model="showDialog1" title="选择合同" width="70%">
|
|
<contractDialog @customEvent="customEvent1"></contractDialog>
|
|
</el-dialog>
|
|
|
|
|
|
|
|
</el-form>
|
|
</popup>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="projectEdit">
|
|
import bankaccountDialog from '@/components/bankaccount/index.vue'
|
|
import type { FormInstance } from 'element-plus'
|
|
import Popup from '@/components/popup/index.vue'
|
|
import contractDialog from '@/components/contract/index.vue'
|
|
|
|
import { apirefundapplyAdd, apirefundapplyEdit, apirefundapplyDetail } from '@/api/refund'
|
|
import { toChinesNum } from "@/utils/util";
|
|
import { getAllProjectTypes } from '@/api/projecttype'
|
|
import { timeFormat } from '@/utils/util'
|
|
import { isEmail, isIdCard, isPhone } from '@/utils/validate'
|
|
import type { PropType } from 'vue'
|
|
import configs from "@/config"
|
|
import useUserStore from "@/stores/modules/user";
|
|
const protype = reactive([])
|
|
const base_url = configs.baseUrl + configs.urlPrefix
|
|
const userStore = useUserStore();
|
|
const active = ref(0)
|
|
const formDataannex = reactive([])
|
|
const contract_name = ref('')
|
|
const project_name = ref('')
|
|
const project_code = ref('')
|
|
const project_amount = ref('')
|
|
const contract_no = ref('')
|
|
const custom_name = ref('')
|
|
const bank_account_no = ref('')
|
|
const userInfo = userStore.userInfo
|
|
console.log(userInfo, '222222')
|
|
// 上传文件
|
|
const handleAvatarSuccess_four = (
|
|
response,
|
|
uploadFile
|
|
) => {
|
|
if (response.code == 0) {
|
|
ElMessage.error(response.msg);
|
|
return;
|
|
}
|
|
formDataannex.push(
|
|
{ uri: response.data.uri, name: response.data.name }
|
|
);
|
|
};
|
|
|
|
// 删除上传的文件
|
|
const delFileFn = (index: number) => {
|
|
formDataannex.splice(index, 1)
|
|
}
|
|
defineProps({
|
|
dictData: {
|
|
type: Object as PropType<Record<string, any[]>>,
|
|
default: () => ({})
|
|
}
|
|
})
|
|
const emit = defineEmits(['success', 'close'])
|
|
const formRef = shallowRef<FormInstance>()
|
|
const popupRef = shallowRef<InstanceType<typeof Popup>>()
|
|
const mode = ref('add')
|
|
const amount_daxie = ref('')
|
|
const showDialog = ref(false)
|
|
const showDialog1 = ref(false)
|
|
|
|
const customEvent = (e: any) => {
|
|
formData.bank_account_id = e.id;
|
|
formData.bank_account_info.account_sn = e.account_sn
|
|
formData.bank_account_info.deposit_bank = e.deposit_bank
|
|
formData.bank_account_info.account_name = e.account_name
|
|
formData.bank_account_info.account = e.account
|
|
showDialog.value = false;
|
|
|
|
};
|
|
const customEvent1 = (e: any) => {
|
|
formData.contract_id = e.id;
|
|
custom_name.value = e.custom_name;
|
|
project_name.value = e.project_name;
|
|
project_code.value = e.project_code;
|
|
contract_name.value = e.contract_name;
|
|
contract_no.value = e.contract_code
|
|
showDialog1.value = false;
|
|
};
|
|
|
|
|
|
|
|
//监听输入
|
|
const amountinput = (e) => {
|
|
// console.log(e)
|
|
if (e && e > 0) {
|
|
amount_daxie.value = toChinesNum(e)
|
|
}
|
|
}
|
|
// 弹窗标题
|
|
const popupTitle = computed(() => {
|
|
return mode.value == 'edit' ? '编辑退款申请表' : '新增退款申请表'
|
|
})
|
|
|
|
// 表单数据
|
|
const formData = reactive({
|
|
id: '',
|
|
contract_id: "",
|
|
refund_date: "",
|
|
reason: "",
|
|
amount: 0,
|
|
refund_type: "",
|
|
refund_user: '',
|
|
annex: "",
|
|
remark: "",
|
|
bank_account_id: "",
|
|
collection_bank: "",
|
|
collection_account: "",
|
|
"bank_account_info": {
|
|
"account_sn": "",
|
|
"deposit_bank": "",
|
|
"account_name": "",
|
|
"account": ""
|
|
}
|
|
|
|
|
|
})
|
|
|
|
|
|
// 表单验证
|
|
const formRules = reactive<any>({
|
|
|
|
})
|
|
|
|
|
|
// 获取详情
|
|
const setFormData = async (data: Record<any, any>) => {
|
|
if (data.annex && data.annex.length > 0) {
|
|
|
|
const arry1 = data.annex.map((item: any, index: any) => {
|
|
return {
|
|
name: `文件${index + 1}`,
|
|
uri: item
|
|
};
|
|
});
|
|
Object.assign(formDataannex, arry1)
|
|
|
|
|
|
}
|
|
|
|
|
|
for (const key in formData) {
|
|
if (data[key] != null && data[key] != undefined) {
|
|
//@ts-ignore
|
|
formData[key] = data[key]
|
|
}
|
|
}
|
|
console.log(formData, "fordATA")
|
|
custom_name.value = data.custom_name
|
|
project_name.value = data.project_name
|
|
project_code.value = data.project_code
|
|
project_amount.value = data.contract_amount
|
|
contract_name.value = data.contract_name;
|
|
contract_no.value = data.contract_code
|
|
|
|
bank_account_no.value = data.bank_account_info.account;
|
|
|
|
}
|
|
const getDetail = async (row: Record<string, any>) => {
|
|
const data = await apirefundapplyDetail({
|
|
id: row.id
|
|
})
|
|
setFormData(data)
|
|
}
|
|
|
|
|
|
// 提交按钮
|
|
const handleSubmit = async () => {
|
|
console.log(formDataannex)
|
|
if (formDataannex.length > 0) {
|
|
formData.annex = formDataannex
|
|
}
|
|
await formRef.value?.validate()
|
|
const data = { ...formData }
|
|
mode.value == 'edit'
|
|
? await apirefundapplyEdit(data)
|
|
: await apirefundapplyAdd(data)
|
|
popupRef.value?.close()
|
|
emit('success')
|
|
}
|
|
|
|
//打开弹窗
|
|
const open = (type = 'add') => {
|
|
mode.value = type
|
|
popupRef.value?.open()
|
|
|
|
getAllProjectTypes().then((res) => {
|
|
|
|
protype.splice(0, protype.length, ...res);
|
|
})
|
|
}
|
|
|
|
// 关闭回调
|
|
const handleClose = () => {
|
|
emit('close')
|
|
}
|
|
|
|
formData.refund_user = userInfo.name
|
|
|
|
defineExpose({
|
|
open,
|
|
setFormData,
|
|
getDetail
|
|
})
|
|
</script>
|