334 lines
13 KiB
Vue
Raw Normal View History

2023-07-16 19:14:41 +08:00
<template>
2023-07-21 11:22:49 +08:00
<div>
<el-card class="!border-none mb-4" shadow="never">
<el-form class="mb-[-16px]" :model="queryParams" inline>
<el-form-item label="公司名称" prop="company_name">
<el-input
class="w-[280px]"
v-model="queryParams.company_name"
clearable
placeholder="请输入公司名称"
/>
</el-form-item>
<el-form-item label="区" prop="area" v-show="company_type_show">
<el-input
class="w-[280px]"
v-model="queryParams.area"
clearable
placeholder="请输入区"
/>
</el-form-item>
<el-form-item label="镇" prop="street" v-show="company_type_show">
<el-input
class="w-[280px]"
v-model="queryParams.street"
clearable
placeholder="请输入镇"
/>
</el-form-item>
<el-form-item label="公司类型" prop="company_type" v-show="company_type_show">
<el-select
v-model="queryParams.company_type"
placeholder="请选择公司类型"
clearable
:style="{ width: '100%' }"
>
<el-option
v-for="(item, index) in datas.dictTypeLists"
:key="index"
:label="item.name"
:value="item.id"
></el-option>
</el-select>
</el-form-item>
2023-07-21 11:22:49 +08:00
<el-form-item label="片区经理" prop="area_manager">
<el-input
class="w-[280px]"
v-model="queryParams.area_manager"
clearable
placeholder="请输入片区经理"
/>
</el-form-item>
2023-07-21 18:25:23 +08:00
<el-form-item label="是否签约" prop="is_contract">
2023-07-21 11:22:49 +08:00
<el-select
v-model="queryParams.is_contract"
placeholder="是否签约"
clearable
:style="{ width: '100%' }"
>
<el-option label="已签约" value="1"></el-option>
<el-option label="未签约" value="0"></el-option>
</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">
<router-link
2023-07-21 18:11:52 +08:00
v-perms="['company/add:edit']"
2023-07-21 11:22:49 +08:00
:to="{
2023-07-16 22:44:02 +08:00
path: getRoutePath('company/add:edit')
}"
2023-07-21 11:22:49 +08:00
>
<el-button type="primary" class="mb-4">
<template #icon>
<icon name="el-icon-Plus" />
</template>
创建
</el-button>
</router-link>
<div class="mt-4">
<el-table :data="pager.lists" @selection-change="handleSelectionChange">
<el-table-column label="id" prop="id" show-overflow-tooltip width="60" />
2023-07-23 18:02:22 +08:00
<el-table-column label="公司名称" prop="company_name" show-overflow-tooltip />
2023-07-21 11:22:49 +08:00
<el-table-column label="公司类型" prop="company_type" show-overflow-tooltip />
<el-table-column label="区县" prop="area" show-overflow-tooltip />
<el-table-column label="乡镇" prop="street" show-overflow-tooltip />
<el-table-column label="主联系人" prop="master_name" show-overflow-tooltip />
<el-table-column label="联系方式" prop="master_phone" show-overflow-tooltip />
<el-table-column label="片区经理" prop="area_manager" show-overflow-tooltip />
2023-07-23 18:02:22 +08:00
<el-table-column label="是否签约" prop="is_contract" show-overflow-tooltip>
<template #default="{ row }">
{{ row.is_contract == 1 ? '已签约' : '未签约' }}
</template></el-table-column
>
<el-table-column label="操作" align="center" width="500" fixed="right">
2023-07-21 11:22:49 +08:00
<template #default="{ row }">
<div style="display: flex">
<el-button type="primary" link>
<router-link
:to="{
path: getRoutePath('auth.admin/lists'),
query: {
company_id: row.id,
read: true
}
}"
>查看成员</router-link
>
</el-button>
<el-button type="primary" link>
<router-link
:to="{
path: getRoutePath('company/subordinate/lists'),
query: {
company_id: row.id,
read: true
}
}"
>下属公司</router-link
>
</el-button>
2023-07-21 18:11:52 +08:00
<el-button v-perms="['company/add:edit']" type="primary" link>
2023-07-21 11:22:49 +08:00
<router-link
:to="{
2023-07-18 14:55:27 +08:00
path: getRoutePath('company/add:edit'),
query: {
id: row.id,
read: true
}
}"
2023-07-21 11:22:49 +08:00
>详情</router-link
>
</el-button>
2023-07-21 18:11:52 +08:00
<el-button v-perms="['company/add:edit']" type="primary" link>
2023-07-21 11:22:49 +08:00
<router-link
:to="{
2023-07-18 14:55:27 +08:00
path: getRoutePath('company/add:edit'),
query: {
id: row.id,
edit: true
}
}"
2023-07-21 11:22:49 +08:00
>编辑</router-link
>
</el-button>
<el-button
v-perms="['company/delete']"
type="danger"
link
@click="handleDelete(row.id)"
>删除</el-button
>
<el-button
2023-07-23 18:02:22 +08:00
v-if="row.is_authentication == 0"
v-perms="['company/authentication']"
2023-07-21 11:22:49 +08:00
type="primary"
link
2023-07-23 18:02:22 +08:00
@click="handleAuthentication(row.id)"
>企业认证</el-button
2023-07-21 11:22:49 +08:00
>
2023-07-23 18:02:22 +08:00
<template v-if="row.is_contract == 0">
<el-button
v-perms="['company/Draftingcontracts']"
type="primary"
link
@click="showCreateConctPop(row)"
>生成合同</el-button
>
<el-button
v-perms="['company/postsms']"
type="primary"
link
@click=";(showPop = true), (contractId = row.id)"
>发送短信</el-button
>
</template>
2023-07-21 11:22:49 +08:00
</div>
</template>
</el-table-column>
</el-table>
</div>
<div class="flex mt-4 justify-end">
<pagination v-model="pager" @change="getLists" />
</div>
</el-card>
<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>
</div>
2023-07-16 19:14:41 +08:00
</template>
<script lang="ts" setup name="companyLists">
2023-07-21 11:22:49 +08:00
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
2023-07-23 18:02:22 +08:00
import useUserStore from '@/stores/modules/user'
import {
apiCompanyLists,
apiCompanyDelete,
generateGontract,
sendMsgApi,
authentication
} from '@/api/company'
2023-07-21 11:22:49 +08:00
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
import { dictDataLists } from '@/api/setting/dict'
import { getRoutePath } from '@/router'
2023-07-16 19:14:41 +08:00
2023-07-23 18:02:22 +08:00
const userStore = useUserStore()
2023-07-21 11:22:49 +08:00
const route = useRoute()
const company_type_show = ref(true)
2023-07-20 22:05:24 +08:00
// 创建合同与发送短信
//弹窗
2023-07-21 11:22:49 +08:00
const showPop = ref(false)
const showConctactPop = ref(false)
2023-07-20 22:05:24 +08:00
const offPop = () => {
2023-07-21 11:22:49 +08:00
showPop.value = false
showConctactPop.value = false
}
2023-07-20 22:05:24 +08:00
// 创建合同的id
2023-07-21 11:22:49 +08:00
const contractId = ref('')
2023-07-20 22:05:24 +08:00
const showCreateConctPop = (row) => {
2023-07-21 11:22:49 +08:00
;(showPop.value = true), (showConctactPop.value = true), (contractId.value = row.id)
}
2023-07-20 22:05:24 +08:00
const creContct = () => {
2023-07-21 11:22:49 +08:00
generateGontract({ id: contractId.value })
offPop()
}
2023-07-20 22:05:24 +08:00
const sendMsg = () => {
2023-07-21 11:22:49 +08:00
sendMsgApi({ id: contractId.value })
offPop()
}
2023-07-20 22:05:24 +08:00
// 创建合同与发送短信结束
2023-07-16 19:14:41 +08:00
// 查询条件
const queryParams = reactive({
2023-07-21 11:22:49 +08:00
company_name: '',
area: '',
street: '',
company_type: '',
area_manager: '',
// 是否签约
is_contract: ''
})
2023-07-16 19:14:41 +08:00
2023-07-18 14:55:27 +08:00
if (route.query.company_type) {
2023-07-21 11:22:49 +08:00
company_type_show.value = false
queryParams['company_type'] = route.query.company_type?.toString() || ''
2023-07-18 14:55:27 +08:00
}
const datas = reactive({
dictTypeLists: []
})
const getdictTypeLists = async () => {
const data = await dictDataLists({ type_id: 6 })
datas['dictTypeLists'] = data['lists']
}
getdictTypeLists()
2023-07-16 19:14:41 +08:00
// 选中数据
2023-07-21 11:22:49 +08:00
const selectData = ref<any[]>([])
2023-07-16 19:14:41 +08:00
// 表格选择后回调事件
const handleSelectionChange = (val: any[]) => {
2023-07-21 11:22:49 +08:00
selectData.value = val.map(({ id }) => id)
}
2023-07-16 19:14:41 +08:00
// 获取字典数据
2023-07-21 11:22:49 +08:00
const { dictData } = useDictData('')
2023-07-16 19:14:41 +08:00
// 分页相关
const { pager, getLists, resetParams, resetPage } = usePaging({
2023-07-21 11:22:49 +08:00
fetchFun: apiCompanyLists,
params: queryParams
})
2023-07-16 19:14:41 +08:00
// 删除
const handleDelete = async (id: number | any[]) => {
2023-07-21 11:22:49 +08:00
await feedback.confirm('确定要删除?')
await apiCompanyDelete({ id })
getLists()
}
2023-07-23 18:02:22 +08:00
const handleAuthentication = async (id: number | any[]) => {
await feedback.confirm('确定要认证?')
await authentication({ id })
getLists()
}
2023-07-16 19:14:41 +08:00
2023-07-21 11:22:49 +08:00
getLists()
2023-07-16 19:14:41 +08:00
</script>
2023-07-17 18:07:40 +08:00
<style lang="scss">
2023-07-18 14:55:27 +08:00
.btn {
2023-07-21 11:22:49 +08:00
position: absolute;
2023-07-17 18:07:40 +08:00
}
2023-07-19 21:16:50 +08:00
h1 {
2023-07-21 11:22:49 +08:00
text-align: center;
font-weight: bold;
font-size: 30px;
color: red;
margin-bottom: 10px;
2023-07-19 21:16:50 +08:00
}
.content {
2023-07-21 11:22:49 +08:00
font-size: 20px;
2023-07-19 21:16:50 +08:00
}
.info {
2023-07-21 11:22:49 +08:00
color: red;
font-weight: bold;
font-size: 18px;
display: inline-block;
margin: 0 5px;
2023-07-19 21:16:50 +08:00
}
.btn_menu {
2023-07-21 11:22:49 +08:00
margin-top: 10vh;
display: flex;
justify-content: space-around;
2023-07-19 21:16:50 +08:00
}
2023-07-17 18:07:40 +08:00
</style>