This commit is contained in:
weipengfei 2023-08-15 17:10:07 +08:00
parent 0786519038
commit 31e6dea192
5 changed files with 440 additions and 393 deletions

View File

@ -2,7 +2,7 @@ import type { App } from 'vue'
import 'highlight.js/styles/github.css' import 'highlight.js/styles/github.css'
import hljs from 'highlight.js/lib/common' import hljs from 'highlight.js/lib/common'
import hljsVuePlugin from '@highlightjs/vue-plugin' import hljsVuePlugin from '@highlightjs/vue-plugin'
console.log(hljs) // console.log(hljs)
export default (app: App<Element>) => { export default (app: App<Element>) => {
app.use(hljsVuePlugin) app.use(hljsVuePlugin)
} }

View File

@ -57,10 +57,14 @@
align="center" align="center"
> >
<template #default="{ row }"> <template #default="{ row }">
{{ row.company.company_name || '/' }} {{ row.company.company_name || "/" }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="所在乡镇" prop="street_name" min-width="120" /> <el-table-column
label="所在乡镇"
prop="street_name"
min-width="120"
/>
<el-table-column label="授权身份" prop="role_name" min-width="120" /> <el-table-column label="授权身份" prop="role_name" min-width="120" />
<el-table-column <el-table-column
label="是否签约" label="是否签约"
@ -69,11 +73,17 @@
min-width="120" min-width="120"
> >
<template #default="{ row }"> <template #default="{ row }">
<span v-if="row.is_contract == 1" style="color: #67c23a">已签约</span> <span v-if="row.is_contract == 1" style="color: #67c23a"
>已签约</span
>
<span v-else style="color: #fe0000">未签约</span> <span v-else style="color: #fe0000">未签约</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="最近登录时间" prop="login_time" min-width="180" /> <el-table-column
label="最近登录时间"
prop="login_time"
min-width="180"
/>
<el-table-column <el-table-column
label="创建时间" label="创建时间"
prop="create_time" prop="create_time"
@ -81,7 +91,11 @@
align="center" align="center"
/> />
<el-table-column label="最近登录IP" prop="login_ip" min-width="120" /> <el-table-column label="最近登录IP" prop="login_ip" min-width="120" />
<el-table-column label="账号状态" min-width="100" v-perms="['auth.admin/edit']"> <el-table-column
label="账号状态"
min-width="100"
v-perms="['auth.admin/edit']"
>
<template #default="{ row }"> <template #default="{ row }">
<el-switch <el-switch
v-if="row.root != 1" v-if="row.root != 1"
@ -93,7 +107,12 @@
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="操作" width="230" align="center" fixed="right"> <el-table-column
label="操作"
width="230"
align="center"
fixed="right"
>
<template #default="{ row }"> <template #default="{ row }">
<div style="display: flex"> <div style="display: flex">
<el-button <el-button
@ -171,10 +190,16 @@
确认签约短信将在60秒后发送,请注意查收,并点击短信链接进行线上合同签约 确认签约短信将在60秒后发送,请注意查收,并点击短信链接进行线上合同签约
</div> </div>
<p class="btn_menu"> <p class="btn_menu">
<el-button type="primary" size="large" v-if="showConctactPop" @click="creContct" <el-button
type="primary"
size="large"
v-if="showConctactPop"
@click="creContct"
>确认创建</el-button >确认创建</el-button
> >
<el-button type="primary" size="large" v-else @click="sendMsg">确认</el-button> <el-button type="primary" size="large" v-else @click="sendMsg"
>确认</el-button
>
<el-button type="info" size="large" @click="offPop">返回</el-button> <el-button type="info" size="large" @click="offPop">返回</el-button>
</p> </p>
</el-dialog> </el-dialog>
@ -188,48 +213,48 @@ import {
adminDelete, adminDelete,
generateGontract, generateGontract,
sendMsgApi, sendMsgApi,
abolition abolition,
} from '@/api/perms/admin' } from "@/api/perms/admin";
import { roleAll } from '@/api/perms/role' import { roleAll } from "@/api/perms/role";
import { useDictOptions } from '@/hooks/useDictOptions' import { useDictOptions } from "@/hooks/useDictOptions";
import { usePaging } from '@/hooks/usePaging' import { usePaging } from "@/hooks/usePaging";
import feedback from '@/utils/feedback' import feedback from "@/utils/feedback";
import EditPopup from './edit.vue' import EditPopup from "./edit.vue";
const route = useRoute() const route = useRoute();
const editRef = shallowRef<InstanceType<typeof EditPopup>>() const editRef = shallowRef<InstanceType<typeof EditPopup>>();
// //
const formData = reactive({ const formData = reactive({
name: '', name: "",
role_id: '', role_id: "",
company_id: '' company_id: "",
}) });
const contractId = ref('') const contractId = ref("");
// //
const showPop = ref(false) const showPop = ref(false);
const showConctactPop = ref(false) const showConctactPop = ref(false);
const offPop = () => { const offPop = () => {
showPop.value = false showPop.value = false;
showConctactPop.value = false showConctactPop.value = false;
} };
const creContct = () => { const creContct = () => {
// feedback.msgSuccess(""); // feedback.msgSuccess("");
generateGontract({ id: contractId.value }).then(() => { generateGontract({ id: contractId.value }).then(() => {
feedback.msgSuccess('发送成功') feedback.msgSuccess("发送成功");
}) });
offPop() offPop();
} };
const sendMsg = () => { const sendMsg = () => {
sendMsgApi({ id: contractId.value }).then((res) => { sendMsgApi({ id: contractId.value }).then((res) => {
feedback.msgSuccess('发送成功') feedback.msgSuccess("发送成功");
}) });
offPop() offPop();
} };
// //
const showEdit = ref(false) const showEdit = ref(false);
const { pager, getLists, resetParams, resetPage } = usePaging({ const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: adminLists, fetchFun: adminLists,
params: formData params: formData,
}) });
const changeStatus = (data: any) => { const changeStatus = (data: any) => {
adminEdit({ adminEdit({
@ -238,65 +263,65 @@ const changeStatus = (data: any) => {
name: data.name, name: data.name,
role_id: data.role_id, role_id: data.role_id,
disable: data.disable, disable: data.disable,
multipoint_login: data.multipoint_login multipoint_login: data.multipoint_login,
}).finally(() => { }).finally(() => {
getLists() getLists();
}) });
} };
// //
const isCheck = ref(false) const isCheck = ref(false);
const handleCheck = async (data: any) => { const handleCheck = async (data: any) => {
isCheck.value = true isCheck.value = true;
showEdit.value = true showEdit.value = true;
await nextTick() await nextTick();
editRef.value?.open('edit') editRef.value?.open("edit");
editRef.value?.setFormData(data) editRef.value?.setFormData(data);
} };
const handleAdd = async () => { const handleAdd = async () => {
isCheck.value = false isCheck.value = false;
showEdit.value = true showEdit.value = true;
await nextTick() await nextTick();
editRef.value?.open('add') editRef.value?.open("add");
} };
const handleEdit = async (data: any) => { const handleEdit = async (data: any) => {
isCheck.value = false isCheck.value = false;
showEdit.value = true showEdit.value = true;
await nextTick() await nextTick();
editRef.value?.open('edit') editRef.value?.open("edit");
editRef.value?.setFormData(data) editRef.value?.setFormData(data);
} };
const handleView = async (data: any) => { const handleView = async (data: any) => {
isCheck.value = false isCheck.value = false;
showEdit.value = true showEdit.value = true;
await nextTick() await nextTick();
editRef.value?.open('view') editRef.value?.open("view");
editRef.value?.setFormData(data) editRef.value?.setFormData(data);
} };
const handleDelete = async (id: number) => { const handleDelete = async (id: number) => {
await feedback.confirm('确定要删除?') await feedback.confirm("确定要删除?");
await adminDelete({ id }) await adminDelete({ id });
getLists() getLists();
} };
const handleAbolition = async (id: number) => { const handleAbolition = async (id: number) => {
await feedback.confirm('确定要废除合同?') await feedback.confirm("确定要废除合同?");
await abolition({ id }) await abolition({ id });
getLists() getLists();
} };
const { optionsData } = useDictOptions<{ const { optionsData } = useDictOptions<{
role: any[] role: any[];
}>({ }>({
role: { role: {
api: roleAll api: roleAll,
} },
}) });
if (route.query.company_id) { if (route.query.company_id) {
formData.company_id = route.query.company_id?.toString() formData.company_id = route.query.company_id?.toString();
} }
onMounted(() => { onMounted(() => {
getLists() getLists();
}) });
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
h1 { h1 {

View File

@ -3,7 +3,7 @@
<el-card class="!border-none" v-loading="loading" shadow="never"> <el-card class="!border-none" v-loading="loading" shadow="never">
<div style="display: flex; justify-content: space-between"> <div style="display: flex; justify-content: space-between">
<el-button <el-button
v-perms="['flow_type/add']" v-perms="['task.taskCalendar/add']"
type="primary" type="primary"
@click="handleAdd" @click="handleAdd"
> >

View File

@ -1,7 +1,12 @@
<template> <template>
<div> <div>
<el-card class="!border-none mb-4" shadow="never"> <el-card class="!border-none mb-4" shadow="never">
<el-form class="mb-[-16px] formtabel" :model="queryParams" inline label-width="100px"> <el-form
class="mb-[-16px] formtabel"
:model="queryParams"
inline
label-width="100px"
>
<el-form-item label="区域经理" prop="create_user_id"> <el-form-item label="区域经理" prop="create_user_id">
<el-input <el-input
class="w-[280px]" class="w-[280px]"
@ -19,7 +24,9 @@
/> />
</el-form-item> </el-form-item>
<el-form-item> <el-form-item>
<el-button class="el-btn" type="primary" @click="resetPage">查询</el-button> <el-button class="el-btn" type="primary" @click="resetPage"
>查询</el-button
>
<el-button @click="resetParams">重置</el-button> <el-button @click="resetParams">重置</el-button>
</el-form-item> </el-form-item>
</el-form> </el-form>
@ -46,8 +53,16 @@
<div class="mt-4"> <div class="mt-4">
<el-table :data="pager.lists" @selection-change="handleSelectionChange"> <el-table :data="pager.lists" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" /> <el-table-column type="selection" width="55" />
<el-table-column label="区域经理" prop="admin_name" show-overflow-tooltip /> <el-table-column
<el-table-column label="公司" prop="company_name" show-overflow-tooltip /> label="区域经理"
prop="admin_name"
show-overflow-tooltip
/>
<el-table-column
label="公司"
prop="company_name"
show-overflow-tooltip
/>
<el-table-column <el-table-column
label="公司类型" label="公司类型"
prop="company_type_name" prop="company_type_name"
@ -70,13 +85,13 @@
<el-table-column label="操作" width="120" fixed="right"> <el-table-column label="操作" width="120" fixed="right">
<template #default="{ row }"> <template #default="{ row }">
<el-button v-perms="['task.calendar']" type="primary" link> <el-button v-perms="['task.task_calendar']" type="primary" link>
<router-link <router-link
:to="{ :to="{
path: getRoutePath('task.calendar'), path: getRoutePath('task.task_calendar'),
query: { query: {
id: row.id id: row.id,
} },
}" }"
>任务日程</router-link >任务日程</router-link
> >
@ -100,65 +115,68 @@
</template> </template>
<script lang="ts" setup name="taskSchedulingLists"> <script lang="ts" setup name="taskSchedulingLists">
import { usePaging } from '@/hooks/usePaging' import { usePaging } from "@/hooks/usePaging";
import { useDictData } from '@/hooks/useDictOptions' import { useDictData } from "@/hooks/useDictOptions";
import { apiTaskSchedulingLists, apiTaskSchedulingEdit } from '@/api/task_scheduling' import {
import { timeFormat } from '@/utils/util' apiTaskSchedulingLists,
import feedback from '@/utils/feedback' apiTaskSchedulingEdit,
import EditPopup from './edit.vue' } from "@/api/task_scheduling";
import { dictDataLists } from '@/api/setting/dict' import { timeFormat } from "@/utils/util";
import { getRoutePath } from '@/router' import feedback from "@/utils/feedback";
import EditPopup from "./edit.vue";
import { dictDataLists } from "@/api/setting/dict";
import { getRoutePath } from "@/router";
const datalist = ref([]) const datalist = ref([]);
const editRef = shallowRef<InstanceType<typeof EditPopup>>() const editRef = shallowRef<InstanceType<typeof EditPopup>>();
// //
const showEdit = ref(false) const showEdit = ref(false);
// //
const queryParams = reactive({ const queryParams = reactive({
create_user_id: '', create_user_id: "",
template_id: '', template_id: "",
company_id: '', company_id: "",
type: '', type: "",
status: '' status: "",
}) });
// //
const selectData = ref<any[]>([]) const selectData = ref<any[]>([]);
// //
const handleSelectionChange = (val: any[]) => { const handleSelectionChange = (val: any[]) => {
selectData.value = val.map(({ id }) => id) selectData.value = val.map(({ id }) => id);
} };
// //
const { dictData } = useDictData('') const { dictData } = useDictData("");
// //
const { pager, getLists, resetParams, resetPage } = usePaging({ const { pager, getLists, resetParams, resetPage } = usePaging({
fetchFun: apiTaskSchedulingLists, fetchFun: apiTaskSchedulingLists,
params: queryParams params: queryParams,
}) });
// //
const handleAdd = async () => { const handleAdd = async () => {
showEdit.value = true showEdit.value = true;
await nextTick() await nextTick();
editRef.value?.open('add') editRef.value?.open("add");
} };
const changeStatus = (data: any) => { const changeStatus = (data: any) => {
apiTaskSchedulingEdit({ apiTaskSchedulingEdit({
id: data.id, id: data.id,
status: data.status status: data.status,
}).finally(() => { }).finally(() => {
getLists() getLists();
}) });
} };
dictDataLists({ type_id: 10 }).then((res) => { dictDataLists({ type_id: 10 }).then((res) => {
datalist.value = res.lists datalist.value = res.lists;
}) });
getLists() getLists();
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.formtabel { .formtabel {

View File

@ -100,7 +100,11 @@
fixed="right" fixed="right"
> >
<template #default="{ row }"> <template #default="{ row }">
<el-button v-perms="['flow/edit']" type="primary" link> <el-button
v-perms="['user_informationg.user_informationg/details']"
type="primary"
link
>
<router-link <router-link
:to="{ :to="{
path: 'user_informationg/details', path: 'user_informationg/details',