Commit f0d0bd2e authored by 罗超's avatar 罗超

2

parent cb0b6f9b
......@@ -5,30 +5,79 @@
<div class="page-search row items-center">
<div class="col row wrap q-mr-lg q-col-gutter-md">
<div class="col-3">
<q-input @change="resetSearch" clearable standout="bg-primary text-white" v-model="msg.OrderId" label="订单id"
@clear="resetSearch" maxlength="30" />
<q-input
@change="resetSearch"
clearable
standout="bg-primary text-white"
v-model="msg.OrderId"
label="订单id"
@clear="resetSearch"
maxlength="30"
/>
</div>
<div class="col-3">
<q-select @input="resetSearch" standout="bg-primary text-white" option-value="Id" option-label="Name"
v-model="msg.CType" :options="CTypeList" emit-value map-options label="类型" />
<q-select
@input="resetSearch"
standout="bg-primary text-white"
option-value="Id"
option-label="Name"
v-model="msg.CType"
:options="CTypeList"
emit-value
map-options
label="类型"
/>
</div>
<div class="col-3">
<q-select @input="resetSearch" standout="bg-primary text-white" v-model="msg.Status" :options="StatusOpts"
option-value="Id" option-label="Name" label="状态" emit-value map-options />
<q-select
@input="resetSearch"
standout="bg-primary text-white"
v-model="msg.Status"
:options="StatusOpts"
option-value="Id"
option-label="Name"
label="状态"
emit-value
map-options
/>
</div>
<div class="col-3">
<q-input @change="resetSearch" clearable standout="bg-primary text-white" v-model="msg.ContractNo"
label="合同编号" @clear="resetSearch" maxlength="30" />
<q-input
@change="resetSearch"
clearable
standout="bg-primary text-white"
v-model="msg.ContractNo"
label="合同编号"
@clear="resetSearch"
maxlength="30"
/>
</div>
<div class="col-3">
<q-input @change="resetSearch" clearable standout="bg-primary text-white" v-model="msg.StudentName"
label="学生姓名" @clear="resetSearch" maxlength="30" />
<q-input
@change="resetSearch"
clearable
standout="bg-primary text-white"
v-model="msg.StudentName"
label="学生姓名"
@clear="resetSearch"
maxlength="30"
/>
</div>
</div>
</div>
<div class="page-content">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-column-table"
separator="none" title="合同信息" :data="dataList" :columns="columns" row-key="name">
<q-table
:pagination="msg"
:loading="loading"
no-data-label="暂无相关数据"
flat
class="sticky-column-table"
separator="none"
title="合同信息"
:data="dataList"
:columns="columns"
row-key="name"
>
<template v-slot:top="props">
<div class="col-2 q-table__title">合同信息</div>
<q-space />
......@@ -38,49 +87,106 @@
<q-avatar rounded size="sm" v-if="props.row.CreateByPhoto">
<img :src="props.row.CreateByPhoto" />
</q-avatar>
<q-avatar rounded size="sm" color="teal-10" text-color="white" v-if="!props.row.CreateByPhoto">
{{props.value.substring(0,1)}}</q-avatar>
{{props.row.CreateByName}}
<q-avatar
rounded
size="sm"
color="teal-10"
text-color="white"
v-if="!props.row.CreateByPhoto"
>
{{ props.value.substring(0, 1) }}</q-avatar
>
{{ props.row.CreateByName }}
</q-td>
</template>
<template v-slot:body-cell-StudentName="props">
<q-td auto-width :props="props">
<span v-if="props.row.Sign" style="color:#67C23A;">【已签字】</span>
<span v-else style="color:#e95252;">【未签字】</span>
{{props.row.StudentName}}
<span v-if="props.row.Sign" style="color: #67c23a">【已签字】</span>
<span v-else style="color: #e95252">【未签字】</span>
{{ props.row.StudentName }}
</q-td>
</template>
<template v-slot:body-cell-Status="props">
<q-td auto-width :props="props">
<span v-if="props.row.Status==1" style="color:#409EFF;">待审核</span>
<span v-if="props.row.Status==2" style="color:#67C23A;">审合通过</span>
<span v-if="props.row.Status==3" style="color:#F56C6C;">已驳回</span>
<span v-if="props.row.Status == 1" style="color: #409eff"
>待审核</span
>
<span v-if="props.row.Status == 2" style="color: #67c23a"
>审合通过</span
>
<span v-if="props.row.Status == 3" style="color: #f56c6c"
>已驳回</span
>
</q-td>
</template>
<template v-slot:body-cell-IsCompanySeal="props">
<q-td auto-width :props="props">
<span v-if="props.row.IsCompanySeal==0" style="color:#e95252;">未盖章</span>
<span v-if="props.row.IsCompanySeal==1" style="color:#67C23A;">已盖章</span>
<span v-if="props.row.IsCompanySeal == 0" style="color: #e95252"
>未盖章</span
>
<span v-if="props.row.IsCompanySeal == 1" style="color: #67c23a"
>已盖章</span
>
</q-td>
</template>
<template v-slot:bottom>
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount"
:input="true" @input="changePage" />
<q-pagination
class="full-width justify-end"
v-model="msg.pageIndex"
color="primary"
:max="pageCount"
:input="true"
@input="changePage"
/>
</template>
<template v-slot:body-cell-optioned="props">
<q-td :props="props">
<div>
<q-btn flat size="xs" icon="edit" color="accent" v-if="props.row.Status==1" style="font-weight:400"
@click="operationContract(props.row,2)" label="审核通过" />
<q-btn flat size="xs" icon="edit" color="accent" v-if="props.row.Status==1" style="font-weight:400"
@click="operationContract(props.row,3)" label="驳回" />
<q-btn
flat
size="xs"
icon="edit"
color="accent"
v-if="props.row.Status == 1"
style="font-weight: 400"
@click="operationContract(props.row, 2)"
label="审核通过"
/>
<q-btn
flat
size="xs"
icon="edit"
color="accent"
v-if="props.row.Status == 1"
style="font-weight: 400"
@click="operationContract(props.row, 3)"
label="驳回"
/>
<q-btn flat size="xs" icon="edit" color="accent"
v-if="props.row.IsStuSign==1&& props.row.IsCompanySeal==0&&props.row.Status==2"
style="font-weight:400" @click="operationContract(props.row,5)" label="盖章" />
<q-btn flat size="xs" icon="iconfont icon-View" color="accent" @click="goContract(props.row)"
style="font-weight:400" label="查看" />
<q-btn
flat
size="xs"
icon="edit"
color="accent"
v-if="
props.row.IsStuSign == 1 &&
props.row.IsCompanySeal == 0 &&
props.row.Status == 2
"
style="font-weight: 400"
@click="operationContract(props.row, 5)"
label="盖章"
/>
<q-btn
flat
size="xs"
icon="iconfont icon-View"
color="accent"
@click="goContract(props.row)"
style="font-weight: 400"
label="查看"
/>
</div>
</q-td>
</template>
......@@ -89,183 +195,189 @@
</div>
</template>
<script>
import {
GetEducationContractPageList,
SetEducationContractAudit
} from '../../api/sale/contract'
import {
GetEducationContractPageList,
SetEducationContractAudit,
} from "../../api/sale/contract";
export default {
meta: {
title: "合同审核"
},
components: {
},
data() {
return {
columns: [{
name: 'ContractNo',
label: '合同编号',
align: 'left',
field: 'ContractNo',
},
{
name: 'CTypeName',
label: '类型',
align: 'left',
field: 'CTypeName'
},
{
name: 'StudentName',
label: '学生名称',
field: 'StudentName',
align: 'left'
},
{
name: 'CourseName',
label: '课程名称',
align: 'left',
field: 'CourseName'
},
export default {
meta: {
title: "合同审核",
},
components: {},
data() {
return {
columns: [
{
name: "ContractNo",
label: "合同编号",
align: "left",
field: "ContractNo",
},
{
name: "CTypeName",
label: "类型",
align: "left",
field: "CTypeName",
},
{
name: "StudentName",
label: "学生名称",
field: "StudentName",
align: "left",
},
{
name: "CourseName",
label: "课程名称",
align: "left",
field: "CourseName",
},
{
name: 'CreateByName',
label: '创建人',
align: 'left',
field: 'CreateByName'
},
{
name: 'CreateTime',
label: '创建时间',
align: 'left',
field: 'CreateTime'
},
{
name: 'Status',
label: '合同状态',
align: 'left',
field: 'Status'
},
{
name: 'IsCompanySeal',
label: '是否盖章',
align: 'left',
field: 'Status'
},
{
name: 'optioned',
label: '操作',
field: 'RoomId'
}
],
loading: true,
msg: {
pageIndex: 1,
pageSize: 12,
rowsPerPage: 12,
OrderId: '', //订单id
CType: 0, //1培训 2留学
Status: -1, //0草稿 1提交审核 2审核通过 3驳回 4取消
ContractNo: '', //合同编号
StudentName: '', //学生姓名
IsAduit: 1
{
name: "CreateByName",
label: "创建人",
align: "left",
field: "CreateByName",
},
{
name: "CreateTime",
label: "创建时间",
align: "left",
field: "CreateTime",
},
pageCount: 0,
dataList: [],
//类型下拉
CTypeList: [{
{
name: "Status",
label: "合同状态",
align: "left",
field: "Status",
},
{
name: "IsCompanySeal",
label: "是否盖章",
align: "left",
field: "Status",
},
{
name: "optioned",
label: "操作",
field: "RoomId",
},
],
loading: true,
msg: {
pageIndex: 1,
pageSize: 12,
rowsPerPage: 12,
OrderId: "", //订单id
CType: 0, //1培训 2留学
Status: -1, //0草稿 1提交审核 2审核通过 3驳回 4取消
ContractNo: "", //合同编号
StudentName: "", //学生姓名
IsAduit: 1,
},
pageCount: 0,
dataList: [],
//类型下拉
CTypeList: [
{
Id: 0,
Name: '不限'
}, {
Name: "不限",
},
{
Id: 1,
Name: '培训'
}, {
Name: "培训",
},
{
Id: 2,
Name: '留学'
}],
//状态下拉
StatusOpts: [{
Name: "留学",
},
],
//状态下拉
StatusOpts: [
{
Id: -1,
Name: '全部'
}, {
Name: "全部",
},
{
Id: 1,
Name: '待审'
}, {
Name: "待审",
},
{
Id: 2,
Name: '审核通过'
}, {
Name: "审核通过",
},
{
Id: 3,
Name: '驳回'
}],
}
Name: "驳回",
},
],
};
},
created() {},
mounted() {
this.getList();
},
methods: {
//获取校区列表
getList() {
this.loading = true;
GetEducationContractPageList(this.msg).then((res) => {
this.loading = false;
if (res.Code == 1) {
this.dataList = res.Data.PageData;
this.pageCount = res.Data.PageCount;
}
});
},
created() {},
mounted() {
this.getList()
//重新查询
resetSearch() {
this.msg.pageIndex = 1;
this.getList();
},
methods: {
//获取校区列表
getList() {
this.loading = true;
GetEducationContractPageList(this.msg).then(res => {
this.loading = false;
if (res.Code == 1) {
this.dataList = res.Data.PageData;
this.pageCount = res.Data.PageCount;
}
})
},
//重新查询
resetSearch() {
this.msg.pageIndex = 1;
this.getList();
},
//分页改变
changePage(val) {
this.msg.pageIndex = val;
this.getList();
},
//跳转至编辑
goContract(item) {
// this.$router.push({
// path: 'contractView',
// query: {
// "Id": item.Id
// }
// })
let routeUrl = this.$router.resolve({
path: "/contractView",
query: {
ContractId: item.Id
}
});
window.open(routeUrl.href, '_blank');
},
//合同操作
operationContract(item, type) {
let msg = {
//分页改变
changePage(val) {
this.msg.pageIndex = val;
this.getList();
},
//跳转至编辑
goContract(item) {
// this.$router.push({
// path: 'contractView',
// query: {
// "Id": item.Id
// }
// })
let routeUrl = this.$router.resolve({
path: "/contractView",
query: {
ContractId: item.Id,
State: type
},
});
window.open(routeUrl.href, "_blank");
},
//合同操作
operationContract(item, type) {
let msg = {
ContractId: item.Id,
State: type,
};
SetEducationContractAudit(msg).then((res) => {
if (res.Code == 1) {
this.$q.notify({
icon: "iconfont icon-chenggong",
color: "accent",
timeout: 2000,
message: "修改成功!",
position: "top",
});
this.getList();
}
SetEducationContractAudit(msg).then(res => {
if (res.Code == 1) {
this.$q.notify({
icon: 'iconfont icon-chenggong',
color: 'accent',
timeout: 2000,
message: '修改成功!',
position: 'top'
})
this.getList();
}
})
}
});
},
}
},
};
</script>
<style lang="sass">
@import url('~assets/css/table.sass')
@import url('~assets/css/table.sass')
</style>
......@@ -5,89 +5,208 @@
<div class="page-search row items-center">
<div class="col row wrap q-mr-lg q-col-gutter-md">
<div class="col-3">
<q-input @change="resetSearch" clearable standout="bg-primary text-white" v-model="msg.OrderId" label="订单id"
@clear="resetSearch" maxlength="30" />
<q-input
@change="resetSearch"
clearable
standout="bg-primary text-white"
v-model="msg.OrderId"
label="订单id"
@clear="resetSearch"
maxlength="30"
/>
</div>
<div class="col-3">
<q-select @input="resetSearch" standout="bg-primary text-white" option-value="Id" option-label="Name"
v-model="msg.CType" :options="CTypeList" emit-value map-options label="类型" />
<q-select
@input="resetSearch"
standout="bg-primary text-white"
option-value="Id"
option-label="Name"
v-model="msg.CType"
:options="CTypeList"
emit-value
map-options
label="类型"
/>
</div>
<div class="col-3">
<q-select @input="resetSearch" standout="bg-primary text-white" v-model="msg.Status" :options="StatusOpts"
option-value="Id" option-label="Name" label="状态" emit-value map-options />
<q-select
@input="resetSearch"
standout="bg-primary text-white"
v-model="msg.Status"
:options="StatusOpts"
option-value="Id"
option-label="Name"
label="状态"
emit-value
map-options
/>
</div>
<div class="col-3">
<q-input @change="resetSearch" clearable standout="bg-primary text-white" v-model="msg.ContractNo"
label="合同编号" @clear="resetSearch" maxlength="30" />
<q-input
@change="resetSearch"
clearable
standout="bg-primary text-white"
v-model="msg.ContractNo"
label="合同编号"
@clear="resetSearch"
maxlength="30"
/>
</div>
<div class="col-3">
<q-input @change="resetSearch" clearable standout="bg-primary text-white" v-model="msg.StudentName"
label="学生姓名" @clear="resetSearch" maxlength="30" />
<q-input
@change="resetSearch"
clearable
standout="bg-primary text-white"
v-model="msg.StudentName"
label="学生姓名"
@clear="resetSearch"
maxlength="30"
/>
</div>
</div>
</div>
<div class="page-content">
<q-table :pagination="msg" :loading="loading" no-data-label="暂无相关数据" flat class="sticky-column-table"
separator="none" title="合同信息" :data="dataList" :columns="columns" row-key="name">
<q-table
:pagination="msg"
:loading="loading"
no-data-label="暂无相关数据"
flat
class="sticky-column-table"
separator="none"
title="合同信息"
:data="dataList"
:columns="columns"
row-key="name"
>
<template v-slot:top="props">
<div class="col-2 q-table__title">合同信息</div>
<q-space />
<div class="page-option">
</div>
<div class="page-option"></div>
</template>
<template v-slot:body-cell-CreateByName="props">
<q-td :props="props">
<q-avatar rounded size="sm" v-if="props.row.CreateByPhoto">
<img :src="props.row.CreateByPhoto" />
</q-avatar>
<q-avatar rounded size="sm" color="teal-10" text-color="white" v-if="!props.row.CreateByPhoto">
{{props.value.substring(0,1)}}</q-avatar>
{{props.row.CreateByName}}
<q-avatar
rounded
size="sm"
color="teal-10"
text-color="white"
v-if="!props.row.CreateByPhoto"
>
{{ props.value.substring(0, 1) }}</q-avatar
>
{{ props.row.CreateByName }}
</q-td>
</template>
<template v-slot:body-cell-StudentName="props">
<q-td auto-width :props="props">
<span v-if="props.row.Sign" style="color:#67C23A;">【已签字】</span>
<span v-else style="color:#e95252;">【未签字】</span>
{{props.row.StudentName}}
<span v-if="props.row.Sign" style="color: #67c23a">【已签字】</span>
<span v-else style="color: #e95252">【未签字】</span>
{{ props.row.StudentName }}
</q-td>
</template>
<template v-slot:body-cell-Status="props">
<q-td auto-width :props="props">
<span v-if="props.row.Status==0" style="color:#E6A23C;">草稿</span>
<span v-if="props.row.Status==1" style="color:#409EFF;">提交审核</span>
<span v-if="props.row.Status==2" style="color:#67C23A;">审合通过</span>
<span v-if="props.row.Status==3" style="color:#F56C6C;">驳回</span>
<span v-if="props.row.Status==4" style="color:#e95252;">取消</span>
<span v-if="props.row.Status == 0" style="color: #e6a23c"
>草稿</span
>
<span v-if="props.row.Status == 1" style="color: #409eff"
>提交审核</span
>
<span v-if="props.row.Status == 2" style="color: #67c23a"
>审合通过</span
>
<span v-if="props.row.Status == 3" style="color: #f56c6c"
>驳回</span
>
<span v-if="props.row.Status == 4" style="color: #e95252"
>取消</span
>
</q-td>
</template>
<template v-slot:body-cell-IsCompanySeal="props">
<q-td auto-width :props="props">
<span v-if="props.row.IsCompanySeal==0" style="color:#e95252;">未盖章</span>
<span v-if="props.row.IsCompanySeal==1" style="color:#67C23A;">已盖章</span>
<span v-if="props.row.IsCompanySeal == 0" style="color: #e95252"
>未盖章</span
>
<span v-if="props.row.IsCompanySeal == 1" style="color: #67c23a"
>已盖章</span
>
</q-td>
</template>
<template v-slot:bottom>
<q-pagination class="full-width justify-end" v-model="msg.pageIndex" color="primary" :max="pageCount"
:input="true" @input="changePage" />
<q-pagination
class="full-width justify-end"
v-model="msg.pageIndex"
color="primary"
:max="pageCount"
:input="true"
@input="changePage"
/>
</template>
<template v-slot:body-cell-optioned="props">
<q-td :props="props">
<div>
<q-btn flat size="xs" v-if="props.row.Status==0||props.row.Status==3" icon="edit" color="accent"
style="font-weight:400" @click="EditContract(props.row)" label="编辑" />
<el-tooltip content="复制链接发送给客人签字" placement="top" effect="light">
<q-btn flat size="xs" v-if="props.row.Status==2&&(props.row.Sign==''||props.row.Sign==null)" icon="iconfont icon-qianming" color="accent"
style="font-weight:400" @click="CopyUrl(props.row)" label="获取合同链接" />
<q-btn
flat
size="xs"
v-if="props.row.Status == 0 || props.row.Status == 3"
icon="edit"
color="accent"
style="font-weight: 400"
@click="EditContract(props.row)"
label="编辑"
/>
<el-tooltip
content="复制链接发送给客人签字"
placement="top"
effect="light"
>
<q-btn
flat
size="xs"
v-if="
props.row.Status == 2 &&
(props.row.Sign == '' || props.row.Sign == null)
"
icon="iconfont icon-qianming"
color="accent"
style="font-weight: 400"
@click="CopyUrl(props.row)"
label="获取合同链接"
/>
</el-tooltip>
<q-btn flat size="xs" icon="iconfont icon-View" color="accent" @click="goContract(props.row)"
style="font-weight:400" label="查看" />
<q-btn-dropdown flat size="xs" color="dark" label="更多" style="margin-left:10px;"
v-if="props.row.Status==0||props.row.Status==2||props.row.Status==3">
<q-btn
flat
size="xs"
icon="iconfont icon-View"
color="accent"
@click="goContract(props.row)"
style="font-weight: 400"
label="查看"
/>
<q-btn-dropdown
flat
size="xs"
color="dark"
label="更多"
style="margin-left: 10px"
v-if="
props.row.Status == 0 ||
props.row.Status == 2 ||
props.row.Status == 3
"
>
<q-list>
<q-item clickable v-close-popup v-if="props.row.Status==0||props.row.Status==3" @click="operationContract(props.row,1)">
<q-item
clickable
v-close-popup
v-if="props.row.Status == 0 || props.row.Status == 3"
@click="operationContract(props.row, 1)"
>
<q-item-section>
<q-item-label>提交审核</q-item-label>
</q-item-section>
......@@ -97,12 +216,22 @@
<q-item-label>复制合同</q-item-label>
</q-item-section>
</q-item> -->
<q-item clickable v-close-popup v-if="props.row.Status==2" @click="downloadContract(props.row)">
<q-item
clickable
v-close-popup
v-if="props.row.Status == 2"
@click="downloadContract(props.row)"
>
<q-item-section>
<q-item-label>下载</q-item-label>
</q-item-section>
</q-item>
<q-item clickable v-close-popup v-if="props.row.Status==0" @click="operationContract(props.row,4)">
<q-item
clickable
v-close-popup
v-if="props.row.Status == 0"
@click="operationContract(props.row, 4)"
>
<q-item-section>
<q-item-label>取消</q-item-label>
</q-item-section>
......@@ -114,263 +243,288 @@
</template>
</q-table>
</div>
<eduinfo-form v-if="isShowEduForm" :seting-obj="eduObj" @close="closeEdudia" @success="refreshPage">
<eduinfo-form
v-if="isShowEduForm"
:seting-obj="eduObj"
@close="closeEdudia"
@success="refreshPage"
>
</eduinfo-form>
</div>
</template>
<script>
import {
GetEducationContractPageList,
SetEducationContractAudit,
GetDownLoadEducationContract,
SetEducationContractCopy
} from '../../api/sale/contract'
import {
GetEducationContractPageCodeList,
SetEducationContractAudit,
GetDownLoadEducationContract,
SetEducationContractCopy,
} from "../../api/sale/contract";
import {
downloadLocalFile
} from '../../api/common/common'
import { downloadLocalFile } from "../../api/common/common";
import eduinfoForm from '../../components/sale/eduinfo-form';
export default {
meta: {
title: "合同管理"
},
components: {
eduinfoForm
},
data() {
return {
columns: [{
name: 'ContractNo',
label: '合同编号',
align: 'left',
field: 'ContractNo',
},
{
name: 'CTypeName',
label: '类型',
align: 'left',
field: 'CTypeName'
},
{
name: 'StudentName',
label: '学生名称',
field: 'StudentName',
align: 'left'
},
// {
// name: 'SchoolName',
// label: '学校名称',
// align: 'left',
// field: 'SchoolName'
// },
{
name: 'CourseName',
label: '课程名称',
align: 'left',
field: 'CourseName'
},
{
name: 'CreateByName',
label: '创建人',
align: 'left',
field: 'CreateByName'
},
{
name: 'CreateTime',
label: '创建时间',
align: 'left',
field: 'CreateTime'
},
{
name: 'Status',
label: '合同状态',
align: 'left',
field: 'Status'
},
{
name: 'IsCompanySeal',
label: '是否盖章',
align: 'left',
field: 'Status'
},
{
name: 'optioned',
label: '操作',
field: 'RoomId'
}
],
loading: true,
msg: {
pageIndex: 1,
pageSize: 12,
rowsPerPage: 12,
OrderId: '', //订单id
CType: 0, //1培训 2留学
Status: -1, //0草稿 1提交审核 2审核通过 3驳回 4取消
ContractNo: '', //合同编号
StudentName: '' //学生姓名
import eduinfoForm from "../../components/sale/eduinfo-form";
export default {
meta: {
title: "合同管理",
},
components: {
eduinfoForm,
},
data() {
return {
columns: [
{
name: "ContractNo",
label: "合同编号",
align: "left",
field: "ContractNo",
},
{
name: "CTypeName",
label: "类型",
align: "left",
field: "CTypeName",
},
{
name: "StudentName",
label: "学生名称",
field: "StudentName",
align: "left",
},
// {
// name: 'SchoolName',
// label: '学校名称',
// align: 'left',
// field: 'SchoolName'
// },
{
name: "CourseName",
label: "课程名称",
align: "left",
field: "CourseName",
},
{
name: "CreateByName",
label: "创建人",
align: "left",
field: "CreateByName",
},
pageCount: 0,
dataList: [],
//类型下拉
CTypeList: [{
{
name: "CreateTime",
label: "创建时间",
align: "left",
field: "CreateTime",
},
{
name: "SchoolStatusStr",
label: "学管部审核状态",
align: "left",
field: "SchoolStatusStr",
},
{
name: "AdminStatusStr",
label: "行政审核状态",
align: "left",
field: "AdminStatusStr",
},
// {
// name: 'Status',
// label: '合同状态',
// align: 'left',
// field: 'Status'
// },
{
name: "IsCompanySeal",
label: "是否盖章",
align: "left",
field: "Status",
},
{
name: "optioned",
label: "操作",
field: "RoomId",
},
],
loading: true,
msg: {
pageIndex: 1,
pageSize: 12,
rowsPerPage: 12,
OrderId: "", //订单id
CType: 0, //1培训 2留学
Status: -1, //0草稿 1提交审核 2审核通过 3驳回 4取消
ContractNo: "", //合同编号
StudentName: "", //学生姓名
},
pageCount: 0,
dataList: [],
//类型下拉
CTypeList: [
{
Id: 0,
Name: '不限'
}, {
Name: "不限",
},
{
Id: 1,
Name: '培训'
}, {
Name: "培训",
},
{
Id: 2,
Name: '留学'
}],
//状态下拉
StatusOpts: [{
Name: "留学",
},
],
//状态下拉
StatusOpts: [
{
Id: -1,
Name: '不限'
}, {
Name: "不限",
},
{
Id: 0,
Name: '草稿'
}, {
Name: "草稿",
},
{
Id: 1,
Name: '提交审核'
}, {
Name: "提交审核",
},
{
Id: 2,
Name: '审核通过'
}, {
Name: "审核通过",
},
{
Id: 3,
Name: '驳回'
}, {
Name: "驳回",
},
{
Id: 4,
Name: '取消'
}],
eduObj: null,
isShowEduForm: false
}
Name: "取消",
},
],
eduObj: null,
isShowEduForm: false,
};
},
created() {},
mounted() {
if (this.$route.query && this.$route.query.Name) {
//从订单完成统计跳转过来的带的参数
this.msg.ContractNo = decodeURI(this.$route.query.Name);
}
this.getList();
},
methods: {
//获取校区列表
getList() {
this.loading = true;
GetEducationContractPageCodeList(this.msg).then((res) => {
this.loading = false;
if (res.Code == 1) {
this.dataList = res.Data.PageData.Result;
this.pageCount = res.Data.PageCount;
}
});
},
created() {},
mounted() {
if(this.$route.query && this.$route.query.Name){//从订单完成统计跳转过来的带的参数
this.msg.ContractNo = decodeURI(this.$route.query.Name)
}
this.getList()
//重新查询
resetSearch() {
this.msg.pageIndex = 1;
this.getList();
},
methods: {
//获取校区列表
getList() {
this.loading = true;
GetEducationContractPageList(this.msg).then(res => {
this.loading = false;
if (res.Code == 1) {
this.dataList = res.Data.PageData;
this.pageCount = res.Data.PageCount;
}
})
},
//重新查询
resetSearch() {
this.msg.pageIndex = 1;
this.getList();
},
//分页改变
changePage(val) {
this.msg.pageIndex = val;
this.getList();
},
//跳转至编辑
goContract(item) {
let routeUrl = this.$router.resolve({
path: "/contractView",
query: {
ContractId: item.Id
}
});
window.open(routeUrl.href, '_blank');
},
//新增修改合同
EditContract(obj) {
if (obj) {
this.eduObj = {
OrderId: obj.OrderId,
GuestId: obj.GuestId,
ContractId: obj.Id
}
} else {
this.eduObj = null
}
this.isShowEduForm = true
},
//关闭弹窗
closeEdudia() {
this.isShowEduForm = false
},
//刷新页面a
refreshPage() {
this.isShowEduForm = false;
this.getList();
},
//取消合同
operationContract(item, type) {
let msg = {
//分页改变
changePage(val) {
this.msg.pageIndex = val;
this.getList();
},
//跳转至编辑
goContract(item) {
let routeUrl = this.$router.resolve({
path: "/contractView",
query: {
ContractId: item.Id,
State: type
},
});
window.open(routeUrl.href, "_blank");
},
//新增修改合同
EditContract(obj) {
if (obj) {
this.eduObj = {
OrderId: obj.OrderId,
GuestId: obj.GuestId,
ContractId: obj.Id,
};
} else {
this.eduObj = null;
}
this.isShowEduForm = true;
},
//关闭弹窗
closeEdudia() {
this.isShowEduForm = false;
},
//刷新页面a
refreshPage() {
this.isShowEduForm = false;
this.getList();
},
//取消合同
operationContract(item, type) {
let msg = {
ContractId: item.Id,
State: type,
};
SetEducationContractAudit(msg).then((res) => {
if (res.Code == 1) {
this.$q.notify({
icon: "iconfont icon-chenggong",
color: "accent",
timeout: 2000,
message: "修改成功!",
position: "top",
});
this.getList();
}
SetEducationContractAudit(msg).then(res => {
if (res.Code == 1) {
this.$q.notify({
icon: 'iconfont icon-chenggong',
color: 'accent',
timeout: 2000,
message: '修改成功!',
position: 'top'
})
this.getList();
}
})
},
//下载pdf
downloadContract(item) {
let msg = {
ContractId: item.Id,
CType: item.CType
});
},
//下载pdf
downloadContract(item) {
let msg = {
ContractId: item.Id,
CType: item.CType,
};
GetDownLoadEducationContract(msg).then((res) => {
if (res.Code == 1) {
let sign = item.StudentName + "-" + item.ContractNo;
downloadLocalFile(sign, res.Data);
}
GetDownLoadEducationContract(msg).then(res => {
if (res.Code == 1) {
let sign = item.StudentName + '-' + item.ContractNo;
downloadLocalFile(sign, res.Data);
}
})
},
//复制合同
copyContract(item) {
let msg = {
ContractId: item.Id
});
},
//复制合同
copyContract(item) {
let msg = {
ContractId: item.Id,
};
SetEducationContractCopy(msg).then((res) => {
if (res.Code == 1) {
this.getList();
}
SetEducationContractCopy(msg).then(res => {
if (res.Code == 1) {
this.getList();
}
})
},
//复制URL
CopyUrl(item) {
var oInput = document.createElement('input');
var url = window.location.host;
oInput.value = url + '/#/contractConfirm' + `?ContractId=${item.Id}`;
document.body.appendChild(oInput);
oInput.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
oInput.className = 'oInput';
oInput.style.display = 'none';
this.Info("复制成功!");
},
});
},
}
//复制URL
CopyUrl(item) {
var oInput = document.createElement("input");
var url = window.location.host;
oInput.value = url + "/#/contractConfirm" + `?ContractId=${item.Id}`;
document.body.appendChild(oInput);
oInput.select(); // 选择对象
document.execCommand("Copy"); // 执行浏览器复制命令
oInput.className = "oInput";
oInput.style.display = "none";
this.Info("复制成功!");
},
},
};
</script>
<style lang="sass">
@import url('~assets/css/table.sass')
@import url('~assets/css/table.sass')
</style>
......@@ -728,7 +728,7 @@ const routes = [{
{
path: "/sale/contractAudit", //销售 合同审核
component: () =>
import("pages/sale/contractAudit.vue")
import("pages/sale/contractAudit_new.vue")
},
{
path: "/sale/studentList", //销售 学生名单
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment