431 lines
12 KiB
Vue
431 lines
12 KiB
Vue
<template>
|
|
<div>
|
|
<el-card class="!border-none mb-4" shadow="never">
|
|
<el-form class="mb-[-16px]" :model="queryParams" inline>
|
|
<el-form-item label="合同编号" prop="contract_no">
|
|
<el-input
|
|
class="w-[280px]"
|
|
v-model="queryParams.contract_no"
|
|
clearable
|
|
placeholder="请输入合同编号"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="甲方" prop="party_a">
|
|
<el-input
|
|
class="w-[280px]"
|
|
v-model="queryParams.party_a"
|
|
clearable
|
|
placeholder="请输入甲方"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="乙方" prop="party_b">
|
|
<el-input
|
|
class="w-[280px]"
|
|
v-model="queryParams.party_b"
|
|
clearable
|
|
placeholder="请输入乙方"
|
|
/>
|
|
</el-form-item>
|
|
<el-form-item label="签约状态" prop="status">
|
|
<el-select
|
|
v-model="queryParams.status"
|
|
clearable
|
|
placeholder="请选择状态"
|
|
>
|
|
<el-option
|
|
v-for="item in statusdata"
|
|
:key="item.label"
|
|
:value="item.id"
|
|
:label="item.name"
|
|
/>
|
|
</el-select>
|
|
</el-form-item>
|
|
|
|
<el-form-item>
|
|
<el-button type="primary" @click="resetPage">查询</el-button>
|
|
<el-button @click="resetParams">重置</el-button>
|
|
</el-form-item>
|
|
</el-form>
|
|
</el-card>
|
|
<el-card class="!border-none" v-loading="pager.loading" shadow="never">
|
|
<!-- <el-button
|
|
v-perms="['shop_contract/add']"
|
|
type="primary"
|
|
@click="handleAdd"
|
|
>
|
|
<template #icon>
|
|
<icon name="el-icon-Plus" />
|
|
</template>
|
|
新增
|
|
</el-button>
|
|
<el-button
|
|
v-perms="['shop_contract/delete']"
|
|
:disabled="!selectData.length"
|
|
@click="handleDelete(selectData)"
|
|
>
|
|
删除
|
|
</el-button> -->
|
|
<div class="mt-4">
|
|
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
|
|
<!-- <el-table-column type="selection" width="55" /> -->
|
|
<el-table-column
|
|
label="id"
|
|
width="100"
|
|
prop="id"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column
|
|
label="合同编号"
|
|
prop="contract_no"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column
|
|
label="甲方"
|
|
prop="party_a_name"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column
|
|
label="乙方"
|
|
prop="party_b_name"
|
|
show-overflow-tooltip
|
|
/>
|
|
<!-- <el-table-column
|
|
label="片区经理"
|
|
prop="area_manager_name"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column
|
|
label="合同类型"
|
|
prop="type_name"
|
|
show-overflow-tooltip
|
|
/>
|
|
<el-table-column
|
|
label="证据包"
|
|
prop="evidence_url"
|
|
show-overflow-tooltip
|
|
/> -->
|
|
<el-table-column label="签约状态" prop="status" show-overflow-tooltip>
|
|
<template #default="{ row }">
|
|
<span v-if="row.status" style="color: #67c23a">已签约</span>
|
|
<span v-else style="color: #fe0000">未签约</span>
|
|
</template>
|
|
</el-table-column>
|
|
<el-table-column label="备注" prop="notes" show-overflow-tooltip>
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" width="280" fixed="right">
|
|
<template #default="{ row }">
|
|
<el-button
|
|
type="primary"
|
|
v-perms="['shop_contract/details']"
|
|
link
|
|
>
|
|
<router-link
|
|
:to="{
|
|
path: '/contract/shop_contract_detail',
|
|
query: { id: row.id },
|
|
}"
|
|
>{{ row.status ? "详情" : "审核" }}</router-link
|
|
>
|
|
</el-button>
|
|
<el-button
|
|
type="primary"
|
|
v-perms="['shop_contract/details']"
|
|
link
|
|
@click="addNotes(row)"
|
|
>
|
|
设置备注
|
|
</el-button>
|
|
<template v-if="row.status == 0">
|
|
<el-button
|
|
v-perms="['shop_contract/details']"
|
|
v-if="row.check_status == 1"
|
|
type="warning"
|
|
link
|
|
>
|
|
<router-link
|
|
:to="{
|
|
path: '/contract/shop_contract_detail',
|
|
query: { id: row.id },
|
|
}"
|
|
>待审核</router-link
|
|
>
|
|
</el-button>
|
|
<el-button
|
|
v-else-if="row.check_status == 2"
|
|
v-perms="['shop_contract/contract_send']"
|
|
type="primary"
|
|
link
|
|
@click="showCreateConctPop(row)"
|
|
>发送合同</el-button
|
|
>
|
|
<el-button
|
|
v-else-if="row.check_status == 3"
|
|
v-perms="['shop_contract/contract_send_again']"
|
|
type="primary"
|
|
link
|
|
@click="(showPop = true), (contractId = row.party_b)"
|
|
>发送短信</el-button
|
|
>
|
|
</template>
|
|
<el-button
|
|
v-else
|
|
type="primary"
|
|
v-perms="['shop_contract/evidence']"
|
|
link
|
|
@click="loadContractZip(row)"
|
|
>
|
|
下载证据包
|
|
</el-button>
|
|
<!-- <el-button
|
|
v-perms="['shop_contract/edit']"
|
|
type="primary"
|
|
link
|
|
@click="handleEdit(row)"
|
|
>
|
|
编辑
|
|
</el-button>
|
|
<el-button
|
|
v-perms="['shop_contract/delete']"
|
|
type="danger"
|
|
link
|
|
@click="handleDelete(row.id)"
|
|
>
|
|
删除
|
|
</el-button> -->
|
|
</template>
|
|
</el-table-column>
|
|
</el-table>
|
|
</div>
|
|
<div class="flex mt-4 justify-end">
|
|
<pagination v-model="pager" @change="getLists" />
|
|
</div>
|
|
</el-card>
|
|
<edit-popup
|
|
v-if="showEdit"
|
|
ref="editRef"
|
|
:dict-data="dictData"
|
|
@success="getLists"
|
|
@close="showEdit = false"
|
|
/>
|
|
<el-dialog v-model="showPop" @close="offPop">
|
|
<h1>重要提醒</h1>
|
|
<div class="content" v-if="showConctactPop">
|
|
请确认信息是否有误,发送合同,请确认信息是否有误,发送电子合同后短时间内将不可再次发送.
|
|
</div>
|
|
<div class="content" v-else>
|
|
确认签约短信将在60秒后发送,请注意查收,并点击短信链接进行线上合同签约
|
|
</div>
|
|
<p class="btn_menu">
|
|
<el-button
|
|
type="primary"
|
|
size="large"
|
|
v-if="showConctactPop"
|
|
@click="creContct"
|
|
>确认</el-button
|
|
>
|
|
<el-button type="primary" size="large" v-else @click="sendMsg"
|
|
>确认</el-button
|
|
>
|
|
<el-button type="info" size="large" @click="offPop">返回</el-button>
|
|
</p>
|
|
</el-dialog>
|
|
<popup
|
|
ref="notesRef"
|
|
title="设置备注"
|
|
:async="true"
|
|
width="550px"
|
|
@confirm="handleSubmit"
|
|
>
|
|
<el-form :model="formData" :rules="noteRules">
|
|
<el-form-item label="备注" prop="notes">
|
|
<el-input v-model="formData.notes" type="textarea" />
|
|
</el-form-item>
|
|
</el-form>
|
|
</popup>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup name="shopContractLists">
|
|
import { usePaging } from "@/hooks/usePaging";
|
|
import { useDictData } from "@/hooks/useDictOptions";
|
|
import {
|
|
apiShopContractLists,
|
|
apiShopContractDelete,
|
|
apiShopDraftingcontracts,
|
|
apiShopSendMsgApi,
|
|
contractEvidence,
|
|
apiShopContractAddNotes,
|
|
} from "@/api/shop_contract";
|
|
import { timeFormat } from "@/utils/util";
|
|
import feedback from "@/utils/feedback";
|
|
import EditPopup from "./edit.vue";
|
|
import Popup from "@/components/popup/index.vue";
|
|
|
|
const statusdata = reactive([
|
|
{ id: "1", name: "已签约" },
|
|
{ id: "0", name: "未签约" },
|
|
]);
|
|
|
|
const editRef = shallowRef<InstanceType<typeof EditPopup>>();
|
|
// 是否显示编辑框
|
|
const showEdit = ref(false);
|
|
|
|
// 设置备注
|
|
const formData = ref({
|
|
id: "",
|
|
notes: "",
|
|
});
|
|
const noteRules = reactive({
|
|
notes: [
|
|
{
|
|
required: true,
|
|
message: "请输入备注",
|
|
trigger: ["blur"],
|
|
},
|
|
],
|
|
});
|
|
const notesRef = shallowRef();
|
|
const addNotes = (row: any) => {
|
|
let arr = Object.keys(formData.value);
|
|
arr.forEach((key: any) => {
|
|
formData.value[key] = row[key];
|
|
});
|
|
notesRef.value.open();
|
|
};
|
|
const handleSubmit = async () => {
|
|
await apiShopContractAddNotes({ ...formData.value });
|
|
getLists();
|
|
notesRef.value.close();
|
|
};
|
|
const handleClose = () => {
|
|
notesRef.value.close();
|
|
};
|
|
|
|
// 查询条件
|
|
const queryParams = reactive({
|
|
contract_no: "",
|
|
party_a: "",
|
|
party_b: "",
|
|
check_status: "",
|
|
status: "",
|
|
});
|
|
|
|
// 选中数据
|
|
const selectData = ref<any[]>([]);
|
|
|
|
// 表格选择后回调事件
|
|
const handleSelectionChange = (val: any[]) => {
|
|
selectData.value = val.map(({ id }) => id);
|
|
};
|
|
|
|
// 获取字典数据
|
|
const { dictData } = useDictData("");
|
|
|
|
// 分页相关
|
|
const { pager, getLists, resetParams, resetPage } = usePaging({
|
|
fetchFun: apiShopContractLists,
|
|
params: queryParams,
|
|
});
|
|
|
|
// 添加
|
|
const handleAdd = async () => {
|
|
showEdit.value = true;
|
|
await nextTick();
|
|
editRef.value?.open("add");
|
|
};
|
|
|
|
// 编辑
|
|
const handleEdit = async (data: any) => {
|
|
showEdit.value = true;
|
|
await nextTick();
|
|
editRef.value?.open("edit");
|
|
editRef.value?.setFormData(data);
|
|
};
|
|
|
|
// 删除
|
|
const handleDelete = async (id: number | any[]) => {
|
|
await feedback.confirm("确定要删除?");
|
|
await apiShopContractDelete({ id });
|
|
getLists();
|
|
};
|
|
// 下载证据包
|
|
const loadContractZip = (row: any) => {
|
|
contractEvidence({ id: row.id }).then((res) => {
|
|
downloadFile(res.url, "");
|
|
});
|
|
};
|
|
const downloadFile = (url: string, fileName: string) => {
|
|
let link = document.createElement("a");
|
|
link.href = url;
|
|
link.download = fileName;
|
|
document.body.appendChild(link);
|
|
link.click();
|
|
document.body.removeChild(link);
|
|
};
|
|
|
|
//弹窗
|
|
const showPop = ref(false);
|
|
const showConctactPop = ref(false);
|
|
// 发送合同的id
|
|
const contractId = ref("");
|
|
// 发送合同
|
|
const showCreateConctPop = (row) => {
|
|
(showPop.value = true),
|
|
(showConctactPop.value = true),
|
|
(contractId.value = row.party_b);
|
|
};
|
|
const offPop = () => {
|
|
showPop.value = false;
|
|
showConctactPop.value = false;
|
|
};
|
|
|
|
// 发送合同
|
|
const creContct = async () => {
|
|
// await generateGontract({ id: contractId.value });
|
|
await apiShopDraftingcontracts({ id: contractId.value });
|
|
getLists();
|
|
offPop();
|
|
};
|
|
|
|
// 发送短信
|
|
const sendMsg = async () => {
|
|
// await sendMsgApi({ id: contractId.value });
|
|
await apiShopSendMsgApi({ id: contractId.value });
|
|
getLists();
|
|
offPop();
|
|
};
|
|
|
|
getLists();
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.btn {
|
|
position: absolute;
|
|
}
|
|
h1 {
|
|
text-align: center;
|
|
font-weight: bold;
|
|
font-size: 30px;
|
|
color: red;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.content {
|
|
font-size: 20px;
|
|
}
|
|
|
|
.info {
|
|
color: red;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
display: inline-block;
|
|
margin: 0 5px;
|
|
}
|
|
|
|
.btn_menu {
|
|
margin-top: 10vh;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
}
|
|
</style> |