This commit is contained in:
weipengfei 2023-09-13 17:37:55 +08:00
commit 403ac68293
6 changed files with 559 additions and 0 deletions

26
src/api/shop_contract.ts Normal file
View File

@ -0,0 +1,26 @@
import request from '@/utils/request'
// 商户合同列表
export function apiShopContractLists(params: any) {
return request.get({ url: '/shop_contract/lists', params })
}
// 添加商户合同
export function apiShopContractAdd(params: any) {
return request.post({ url: '/shop_contract/add', params })
}
// 编辑商户合同
export function apiShopContractEdit(params: any) {
return request.post({ url: '/shop_contract/edit', params })
}
// 删除商户合同
export function apiShopContractDelete(params: any) {
return request.post({ url: '/shop_contract/delete', params })
}
// 商户合同详情
export function apiShopContractDetail(params: any) {
return request.get({ url: '/shop_contract/detail', params })
}

26
src/api/shop_merchant.ts Normal file
View File

@ -0,0 +1,26 @@
import request from '@/utils/request'
// 商城商户列表
export function apiShopMerchantLists(params: any) {
return request.get({ url: '/shop_merchant/lists', params })
}
// 添加商城商户
export function apiShopMerchantAdd(params: any) {
return request.post({ url: '/shop_merchant/add', params })
}
// 编辑商城商户
export function apiShopMerchantEdit(params: any) {
return request.post({ url: '/shop_merchant/edit', params })
}
// 删除商城商户
export function apiShopMerchantDelete(params: any) {
return request.post({ url: '/shop_merchant/delete', params })
}
// 商城商户详情
export function apiShopMerchantDetail(params: any) {
return request.get({ url: '/shop_merchant/detail', params })
}

View File

@ -0,0 +1,125 @@
<template>
<div class="edit-popup">
<popup
ref="popupRef"
:title="popupTitle"
:async="true"
width="550px"
@confirm="handleSubmit"
@close="handleClose"
>
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
<el-form-item label="合同编号" prop="contract_no">
<el-input v-model="formData.contract_no" clearable placeholder="请输入合同编号" />
</el-form-item>
<el-form-item label="1公司2个人" prop="type">
<el-input v-model="formData.type" clearable placeholder="请输入1公司2个人" />
</el-form-item>
<el-form-item label="签约后的合同" prop="contract_url">
<el-input v-model="formData.contract_url" clearable placeholder="请输入签约后的合同" />
</el-form-item>
<el-form-item label="证据包" prop="evidence_url">
<el-input v-model="formData.evidence_url" clearable placeholder="请输入证据包" />
</el-form-item>
<el-form-item label="合同多方链接" prop="url">
<el-input v-model="formData.url" clearable placeholder="请输入合同多方链接" />
</el-form-item>
<el-form-item label="签约计时器" prop="signing_timer">
<el-input v-model="formData.signing_timer" clearable placeholder="请输入签约计时器" />
</el-form-item>
</el-form>
</popup>
</div>
</template>
<script lang="ts" setup name="shopContractEdit">
import type { FormInstance } from 'element-plus'
import Popup from '@/components/popup/index.vue'
import { apiShopContractAdd, apiShopContractEdit, apiShopContractDetail } from '@/api/shop_contract'
import { timeFormat } from '@/utils/util'
import type { PropType } from 'vue'
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 popupTitle = computed(() => {
return mode.value == 'edit' ? '编辑商户合同' : '新增商户合同'
})
//
const formData = reactive({
id: '',
contract_no: '',
type: '',
contract_url: '',
evidence_url: '',
url: '',
signing_timer: '',
})
//
const formRules = reactive<any>({
})
//
const setFormData = async (data: Record<any, any>) => {
for (const key in formData) {
if (data[key] != null && data[key] != undefined) {
//@ts-ignore
formData[key] = data[key]
}
}
}
const getDetail = async (row: Record<string, any>) => {
const data = await apiShopContractDetail({
id: row.id
})
setFormData(data)
}
//
const handleSubmit = async () => {
await formRef.value?.validate()
const data = { ...formData, }
mode.value == 'edit'
? await apiShopContractEdit(data)
: await apiShopContractAdd(data)
popupRef.value?.close()
emit('success')
}
//
const open = (type = 'add') => {
mode.value = type
popupRef.value?.open()
}
//
const handleClose = () => {
emit('close')
}
defineExpose({
open,
setFormData,
getDetail
})
</script>

View File

@ -0,0 +1,143 @@
<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="1 发起合同2合同上传完成 ,3发送合同" prop="check_status">
<el-input class="w-[280px]" v-model="queryParams.check_status" clearable placeholder="请输入1 发起合同2合同上传完成 ,3发送合同" />
</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="合同编号" prop="contract_no" show-overflow-tooltip />
<el-table-column label="甲方" prop="party_a" show-overflow-tooltip />
<el-table-column label="乙方" prop="party_b" show-overflow-tooltip />
<el-table-column label="片区经理" prop="area_manager" show-overflow-tooltip />
<el-table-column label="1公司2个人" prop="type" show-overflow-tooltip />
<el-table-column label="证据包" prop="evidence_url" show-overflow-tooltip />
<el-table-column label="1 发起合同2合同上传完成 ,3发送合同" prop="check_status" show-overflow-tooltip />
<el-table-column label="操作" width="120" fixed="right">
<template #default="{ row }">
<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" />
</div>
</template>
<script lang="ts" setup name="shopContractLists">
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
import { apiShopContractLists, apiShopContractDelete } from '@/api/shop_contract'
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
import EditPopup from './edit.vue'
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
//
const showEdit = ref(false)
//
const queryParams = reactive({
contract_no: '',
party_a: '',
party_b: '',
check_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()
}
getLists()
</script>

View File

@ -0,0 +1,103 @@
<template>
<div class="edit-popup">
<popup
ref="popupRef"
:title="popupTitle"
:async="true"
width="550px"
@confirm="handleSubmit"
@close="handleClose"
>
<el-form ref="formRef" :model="formData" label-width="90px" :rules="formRules">
</el-form>
</popup>
</div>
</template>
<script lang="ts" setup name="shopMerchantEdit">
import type { FormInstance } from 'element-plus'
import Popup from '@/components/popup/index.vue'
import { apiShopMerchantAdd, apiShopMerchantEdit, apiShopMerchantDetail } from '@/api/shop_merchant'
import { timeFormat } from '@/utils/util'
import type { PropType } from 'vue'
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 popupTitle = computed(() => {
return mode.value == 'edit' ? '编辑商城商户' : '新增商城商户'
})
//
const formData = reactive({
id: '',
})
//
const formRules = reactive<any>({
})
//
const setFormData = async (data: Record<any, any>) => {
for (const key in formData) {
if (data[key] != null && data[key] != undefined) {
//@ts-ignore
formData[key] = data[key]
}
}
}
const getDetail = async (row: Record<string, any>) => {
const data = await apiShopMerchantDetail({
id: row.id
})
setFormData(data)
}
//
const handleSubmit = async () => {
await formRef.value?.validate()
const data = { ...formData, }
mode.value == 'edit'
? await apiShopMerchantEdit(data)
: await apiShopMerchantAdd(data)
popupRef.value?.close()
emit('success')
}
//
const open = (type = 'add') => {
mode.value = type
popupRef.value?.open()
}
//
const handleClose = () => {
emit('close')
}
defineExpose({
open,
setFormData,
getDetail
})
</script>

View File

@ -0,0 +1,136 @@
<template>
<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="master_name">
<el-input class="w-[280px]" v-model="queryParams.master_name" clearable placeholder="请输入主联系人姓名" />
</el-form-item>
<el-form-item label="主联系人手机" prop="master_phone">
<el-input class="w-[280px]" v-model="queryParams.master_phone" clearable placeholder="请输入主联系人手机" />
</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_merchant/add']" type="primary" @click="handleAdd">
<template #icon>
<icon name="el-icon-Plus" />
</template>
新增
</el-button>
<el-button
v-perms="['shop_merchant/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="公司名称" prop="company_name" show-overflow-tooltip />
<el-table-column label="组织机构代码" prop="organization_code" 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="操作" width="120" fixed="right">
<template #default="{ row }">
<el-button
v-perms="['shop_merchant/edit']"
type="primary"
link
@click="handleEdit(row)"
>
编辑
</el-button>
<el-button
v-perms="['shop_merchant/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" />
</div>
</template>
<script lang="ts" setup name="shopMerchantLists">
import { usePaging } from '@/hooks/usePaging'
import { useDictData } from '@/hooks/useDictOptions'
import { apiShopMerchantLists, apiShopMerchantDelete } from '@/api/shop_merchant'
import { timeFormat } from '@/utils/util'
import feedback from '@/utils/feedback'
import EditPopup from './edit.vue'
const editRef = shallowRef<InstanceType<typeof EditPopup>>()
//
const showEdit = ref(false)
//
const queryParams = reactive({
company_name: '',
master_name: '',
master_phone: '',
})
//
const selectData = ref<any[]>([])
//
const handleSelectionChange = (val: any[]) => {
selectData.value = val.map(({ id }) => id)
}
//
const { dictData } = useDictData('')
//
const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: apiShopMerchantLists,
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 apiShopMerchantDelete({ id })
getLists()
}
getLists()
</script>