Commit 943cbf9b authored by 罗超's avatar 罗超

新增报名统计

parent 28979cef
...@@ -46,6 +46,18 @@ export function getMyOrderPageList(data) { ...@@ -46,6 +46,18 @@ export function getMyOrderPageList(data) {
}) })
} }
/**
* 销售 报名统计
*
*/
export function getMyOrderStatisticsPageList(data) {
return request({
url: '/order/GetOrderPageListStatistics',
method: 'post',
data
})
}
/** /**
* 销售 我的订单状态 * 销售 我的订单状态
* *
......
...@@ -67,7 +67,7 @@ ...@@ -67,7 +67,7 @@
<span style="color: #02C499">{{item.OrderStateName}}</span> <span style="color: #02C499">{{item.OrderStateName}}</span>
</div> </div>
</td> </td>
<td style="border:none"> <td style="border:none" v-if="isEdit">
<q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="编辑" <q-btn flat size="xs" icon="edit" color="accent" style="font-weight:400" label="编辑"
@click="editOrder(item)" /> @click="editOrder(item)" />
<q-btn-dropdown flat size="xs" color="dark" label="更多" style="margin-left:10px;"> <q-btn-dropdown flat size="xs" color="dark" label="更多" style="margin-left:10px;">
...@@ -609,6 +609,11 @@ ...@@ -609,6 +609,11 @@
//权限数据 //权限数据
authObj: { authObj: {
type: Object, type: Object,
},
//是否可以编辑
isEdit:{
type:Boolean,
default:true
} }
}, },
data() { data() {
......
...@@ -248,7 +248,7 @@ ...@@ -248,7 +248,7 @@
</style> </style>
<template> <template>
<div class="flexOne AccountType"> <div class="flexOne AccountType page-body">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
...@@ -240,7 +240,7 @@ ...@@ -240,7 +240,7 @@
} }
.page_CompanyAccount .query-box { .page_CompanyAccount .query-box {
padding: 20px 0 0; padding: 0;
} }
.page_PlatformAccount ._wAuto { .page_PlatformAccount ._wAuto {
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
</style> </style>
<template> <template>
<div class='flexOne page_CompanyAccount'> <div class='flexOne page_CompanyAccount page-body'>
<div class='query-box' style="padding-bottom:20px;"> <div class='query-box' style="padding-bottom:20px;">
<ul> <ul>
<li> <li>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
</style> </style>
<template> <template>
<div class="page_CashierWork"> <div class="page_CashierWork page-body">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
...@@ -293,7 +293,7 @@ ...@@ -293,7 +293,7 @@
} }
.page_CompanyAccount .query-box { .page_CompanyAccount .query-box {
padding: 20px 0 0; padding: 0;
} }
.page_PlatformAccount ._wAuto { .page_PlatformAccount ._wAuto {
...@@ -311,7 +311,7 @@ ...@@ -311,7 +311,7 @@
</style> </style>
<template> <template>
<div class='flexOne page_CompanyAccount'> <div class='flexOne page_CompanyAccount page-body'>
<div class='query-box' style="padding-bottom:20px;"> <div class='query-box' style="padding-bottom:20px;">
<ul> <ul>
<li> <li>
...@@ -345,10 +345,12 @@ ...@@ -345,10 +345,12 @@
</el-select> </el-select>
</li> </li>
<li> <li>
<input type="button" class="hollowFixedBtn" :value="$t('pub.searchBtn')" <!-- <input type="button" class="hollowFixedBtn" :value="$t('pub.searchBtn')"
@click="resetPageIndex(),getList()" /> @click="resetPageIndex(),getList()" /> -->
<input type="button" class="normalBtn" :value="$t('pub.addBtn')"  <q-btn color="primary" size="11px" :label="$t('pub.searchBtn')"  @click="resetPageIndex(),getList()" style="marginRight:10px"/>
@click="addShow=true,text=$t('pub.addBtn'),ed=false" /> <!-- <input type="button" class="normalBtn" :value="$t('pub.addBtn')"
@click="addShow=true,text=$t('pub.addBtn'),ed=false" /> -->
<q-btn color="primary" size="11px" :label="$t('pub.addBtn')"  @click="addShow=true,text=$t('pub.addBtn'),ed=false"/>
</li> </li>
</ul> </ul>
</div> </div>
...@@ -449,9 +451,11 @@ ...@@ -449,9 +451,11 @@
<p class="_tit">{{text}}{{$t('fnc.acc')}}</p> <p class="_tit">{{text}}{{$t('fnc.acc')}}</p>
</el-col> </el-col>
<el-col :span="4" class="_add_saveBtn"> <el-col :span="4" class="_add_saveBtn">
<button type="button" class="normalBtn" @click="submitForm('addMsg',1)">{{$t('pub.saveBtn')}}</button> <!-- <button type="button" class="normalBtn" @click="submitForm('addMsg',1)">{{$t('pub.saveBtn')}}</button> -->
<button class="hollowFixedBtn" type="button"  <q-btn color="primary" size="11px" :label="$t('pub.saveBtn')"  @click="submitForm('addMsg',1)" style="marginRight:10px"/>
@click="cancelEdit(),resetForm('addMsg'),addShow=false">{{$t('pub.cancelBtn')}}</button> <!-- <button class="hollowFixedBtn" type="button"
@click="cancelEdit(),resetForm('addMsg'),addShow=false">{{$t('pub.cancelBtn')}}</button> -->
 <q-btn text-color="primary" size="11px" :label="$t('pub.cancelBtn')"  @click="cancelEdit(),resetForm('addMsg'),addShow=false"/>
</el-col> </el-col>
</el-row> </el-row>
<el-form class="_info_box clearfix" :model="addMsg" ref="addMsg" :rules="rules" label-width="110px"> <el-form class="_info_box clearfix" :model="addMsg" ref="addMsg" :rules="rules" label-width="110px">
......
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
} }
</style> </style>
<template> <template>
<div class="flexOne CostType"> <div class="flexOne CostType page-body">
<div class="query-box"> <div class="query-box">
<el-form class="_info_box clearfix" label-width="110px"> <el-form class="_info_box clearfix" label-width="110px">
<el-row v-if="transitionShow2"> <el-row v-if="transitionShow2">
......
...@@ -517,7 +517,7 @@ ...@@ -517,7 +517,7 @@
</style> </style>
<template> <template>
<div class="page_FProcessManagement"> <div class="page_FProcessManagement page-body">
<div class='query-box'> <div class='query-box'>
<ul> <ul>
<li><input type="button" class="normalBtn" value="新增流程" @click="gotoSub('addFinancialProcess',0,8)" /> <li><input type="button" class="normalBtn" value="新增流程" @click="gotoSub('addFinancialProcess',0,8)" />
......
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
} }
</style> </style>
<template> <template>
<div class="flexOne currentManage"> <div class="flexOne currentManage page-body">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
...@@ -116,7 +116,7 @@ ...@@ -116,7 +116,7 @@
} }
</style> </style>
<template> <template>
<div class="flexOne currentManage"> <div class="flexOne currentManage page-body">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
...@@ -283,7 +283,7 @@ ...@@ -283,7 +283,7 @@
</style> </style>
<template> <template>
<div class="flexOne currentManage"> <div class="flexOne currentManage page-body">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
<template> <template>
<div class="flexOne page_PlatformAccount" style="height:100%"> <div class="flexOne page_PlatformAccount page-body">
<div class="query-box" style="padding:0 0 10px 0 "> <div class="query-box" style="padding:0 0 10px 0 ">
<ul> <ul>
<li> <li>
...@@ -23,10 +23,9 @@ ...@@ -23,10 +23,9 @@
<el-input v-model="msg.Accountholder" @keyup.enter.native="getList()"></el-input> <el-input v-model="msg.Accountholder" @keyup.enter.native="getList()"></el-input>
</li> </li>
<li> <li>
<input type="button" class="normalBtn" value="查询" @click="getList()"> <q-btn color="primary" size="11px" label="查询" @click="getList()" style="marginRight:10px"/>
<input type="button" class="normalBtn" :value="$t('pub.addBtn')" <q-btn color="primary" size="11px" :label="$t('pub.addBtn')" @click="addShow=true,text=$t('pub.addBtn'),ed=false" style="marginRight:10px"/>
@click="addShow=true,text=$t('pub.addBtn'),ed=false"> <q-btn color="primary" size="11px" :label="$t('visa.v_daochu')" @click="downMuban()" />
<input type="button" class="normalBtn" @click="downMuban()" :value="$t('visa.v_daochu')">
</li> </li>
</ul> </ul>
</div> </div>
...@@ -100,9 +99,12 @@ ...@@ -100,9 +99,12 @@
<p class="_tit">{{text}}{{$t('fnc.acc')}}</p> <p class="_tit">{{text}}{{$t('fnc.acc')}}</p>
</el-col> </el-col>
<el-col :span="4" class="_add_saveBtn"> <el-col :span="4" class="_add_saveBtn">
<button type="button" class="normalBtn" @click="submitForm('addMsg',1)">{{$t('pub.saveBtn')}}</button> <!-- <button type="button" class="normalBtn" @click="submitForm('addMsg',1)">{{$t('pub.saveBtn')}}</button> -->
<button class="hollowFixedBtn" type="button" <q-btn color="primary" size="11px" :label="$t('pub.saveBtn')" @click="submitForm('addMsg',1)" style="marginRight:10px"/>
@click="cancelEdit(),resetForm('addMsg'),addShow=false">{{$t('pub.cancelBtn')}}</button> <!-- <button class="hollowFixedBtn" type="button"
@click="cancelEdit(),resetForm('addMsg'),addShow=false">{{$t('pub.cancelBtn')}}</button> -->
<q-btn
 text-color="primary" size="11px" :label="$t('pub.cancelBtn')" @click="cancelEdit(),resetForm('addMsg'),addShow=false"/>
</el-col> </el-col>
</el-row> </el-row>
<el-form class="_info_box clearfix" :model="addMsg" ref="addMsg" :rules="rules" label-width="110px"> <el-form class="_info_box clearfix" :model="addMsg" ref="addMsg" :rules="rules" label-width="110px">
...@@ -260,10 +262,13 @@ ...@@ -260,10 +262,13 @@
<p class="_tit">{{$t('fnc.qmtiaohui')}}</p> <p class="_tit">{{$t('fnc.qmtiaohui')}}</p>
</el-col> </el-col>
<el-col :span="4" class="_add_saveBtn"> <el-col :span="4" class="_add_saveBtn">
<button type="button" class="normalBtn" <!-- <button type="button" class="normalBtn"
@click="submitForm('SetProfitLossMsg',2)">{{$t('fnc.qrtijiao')}}</button> @click="submitForm('SetProfitLossMsg',2)">{{$t('fnc.qrtijiao')}}</button> -->
<button class="hollowFixedBtn" type="button" <q-btn color="primary" size="11px" :label="$t('fnc.qrtijiao')" @click="submitForm('SetProfitLossMsg',2)"/>
@click="cancelEdit(),resetForm('SetProfitLossMsg')">{{$t('pub.cancelBtn')}}</button>
<!-- <button class="hollowFixedBtn" type="button"
@click="cancelEdit(),resetForm('SetProfitLossMsg')">{{$t('pub.cancelBtn')}}</button> -->
<q-btn color="primary" size="11px" :label="$t('pub.cancelBtn')"  @click="cancelEdit(),resetForm('SetProfitLossMsg')"/>
</el-col> </el-col>
</el-row> </el-row>
<el-form class="_info_box clearfix" :model="SetProfitLossMsg" ref="SetProfitLossMsg" :rules="rules" <el-form class="_info_box clearfix" :model="SetProfitLossMsg" ref="SetProfitLossMsg" :rules="rules"
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
</style> </style>
<template> <template>
<div class='flexOne page_CompanyAccDetail'> <div class='flexOne page_CompanyAccDetail page-body'>
<div class='query-box'> <div class='query-box'>
<el-form class="_info_box clearfix" label-width="110px" style="margin-top: 40px"> <el-form class="_info_box clearfix" label-width="110px" style="margin-top: 40px">
<el-row> <el-row>
......
...@@ -43,7 +43,7 @@ ...@@ -43,7 +43,7 @@
</style> </style>
<template> <template>
<div class="page_fnDm page_CashReport" @keyup.enter="getList()"> <div class="page_fnDm page_CashReport page-body" @keyup.enter="getList()">
<div class="query-box"> <div class="query-box">
<el-form class="_info_box clearfix" label-width="110px"> <el-form class="_info_box clearfix" label-width="110px">
<el-row style="padding:15px 20px 0 0;"> <el-row style="padding:15px 20px 0 0;">
......
...@@ -65,7 +65,7 @@ ...@@ -65,7 +65,7 @@
} }
</style> </style>
<template> <template>
<div class='flexOne page_CompanyAccDetail'> <div class='flexOne page_CompanyAccDetail page-body'>
<div class='query-box'> <div class='query-box'>
<el-form class="_info_box clearfix" label-width="110px" style="margin-top: 40px"> <el-form class="_info_box clearfix" label-width="110px" style="margin-top: 40px">
<el-row> <el-row>
......
...@@ -33,7 +33,7 @@ ...@@ -33,7 +33,7 @@
} }
</style> </style>
<template> <template>
<div class='flexOne page_CompanyAccDetail'> <div class='flexOne page_CompanyAccDetail page-body'>
<div class='query-box'> <div class='query-box'>
<el-form class="_info_box clearfix" label-width="110px" style="margin-top: 40px"> <el-form class="_info_box clearfix" label-width="110px" style="margin-top: 40px">
<el-row> <el-row>
......
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
} }
</style> </style>
<template> <template>
<div class="page_fnDm page_CashReport" @keyup.enter="getList()"> <div class="page_fnDm page_CashReport page-body" @keyup.enter="getList()">
<div class="query-box"> <div class="query-box">
<el-form class="_info_box clearfix" label-width="110px"> <el-form class="_info_box clearfix" label-width="110px">
<el-row style="padding:15px 20px 0 0;"> <el-row style="padding:15px 20px 0 0;">
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
</style> </style>
<template> <template>
<div class="page_accountingWork"> <div class="page_accountingWork page-body">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
...@@ -762,9 +762,9 @@ input:-webkit-autofill { ...@@ -762,9 +762,9 @@ input:-webkit-autofill {
.query-box li:last-child { .query-box li:last-child {
float: right; float: right;
position: fixed; /* position: fixed;
top: 45px; top: 45px;
right: 20px; right: 20px; */
text-align: right; text-align: right;
margin-right: 0; margin-right: 0;
} }
...@@ -1243,6 +1243,7 @@ input:-webkit-autofill { ...@@ -1243,6 +1243,7 @@ input:-webkit-autofill {
line-height: normal!important line-height: normal!important
} }
.flexOne .el-button.is-circle { .flexOne .el-button.is-circle {
padding: 5px; padding: 5px;
} }
......
...@@ -103,7 +103,7 @@ ...@@ -103,7 +103,7 @@
} }
</style> </style>
<template> <template>
<div class="flexOne currentManage"> <div class="flexOne currentManage page-body">
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
...@@ -131,7 +131,7 @@ ...@@ -131,7 +131,7 @@
</style> </style>
<template> <template>
<div class="page_CapitalAllocation"> <div class="page_CapitalAllocation page-body">
<div class="query-box" style="margin-bottom:20px;"> <div class="query-box" style="margin-bottom:20px;">
<ul> <ul>
<li> <li>
......
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
._log_t{padding: 10px;} ._log_t{padding: 10px;}
</style> </style>
<template> <template>
<div> <div class="page-body">
<ul class="_nav clearfix" v-if="showTab==0"> <ul class="_nav clearfix" v-if="showTab==0">
<li :class="active==1?'_active':''" @click="active=1,tabData(1)">{{$t('fnc.shoukuandan')}}</li> <li :class="active==1?'_active':''" @click="active=1,tabData(1)">{{$t('fnc.shoukuandan')}}</li>
<li :class="active==2?'_active':''" @click="active=2,tabData(2)">{{$t('fnc.fukuandan')}}</li> <li :class="active==2?'_active':''" @click="active=2,tabData(2)">{{$t('fnc.fukuandan')}}</li>
......
...@@ -479,7 +479,7 @@ ...@@ -479,7 +479,7 @@
</style> </style>
<template> <template>
<div class="page_fnDm page_RecPayQuery" @keyup.enter="resetPageIndex(),getPageList()"> <div class="page_fnDm page_RecPayQuery page-body" @keyup.enter="resetPageIndex(),getPageList()">
<div class="query-box"> <div class="query-box">
<el-form class="_info_box clearfix" label-width="110px"> <el-form class="_info_box clearfix" label-width="110px">
<el-row style="padding:15px 20px 0 0;"> <el-row style="padding:15px 20px 0 0;">
......
...@@ -156,7 +156,7 @@ ...@@ -156,7 +156,7 @@
} }
</style> </style>
<template> <template>
<div class="page_addCapitalAllocation" v-loading="loading"> <div class="page_addCapitalAllocation " v-loading="loading">
<div class="_top"> <div class="_top">
<p>{{BillName}}</p> <p>{{BillName}}</p>
<!-- <p><span>{{msg.TemplateId==34?$t('fnc.zongbu'):$t('fnc.fgongsi')}}{{$t('fnc.zjdbodan')}}</span></p>--> <!-- <p><span>{{msg.TemplateId==34?$t('fnc.zongbu'):$t('fnc.fgongsi')}}{{$t('fnc.zjdbodan')}}</span></p>-->
......
...@@ -94,7 +94,7 @@ ...@@ -94,7 +94,7 @@
} }
</style> </style>
<template> <template>
<div class="page_iisMg"> <div class="page_iisMg page-body">
<ul class="_nav clearfix"> <ul class="_nav clearfix">
<li :class="active==1?'_active':''" @click="active=1,msg.InvoiceApplyState=0,getPageList()">全部发票</li> <li :class="active==1?'_active':''" @click="active=1,msg.InvoiceApplyState=0,getPageList()">全部发票</li>
<li :class="active==2?'_active':''" @click="active=2,msg.InvoiceApplyState=3,getPageList()">已开发票</li> <li :class="active==2?'_active':''" @click="active=2,msg.InvoiceApplyState=3,getPageList()">已开发票</li>
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
</style> </style>
<template> <template>
<div class='flexOne'> <div class='flexOne page-body'>
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
...@@ -345,7 +345,7 @@ ...@@ -345,7 +345,7 @@
</style> </style>
<template> <template>
<div class='flexOne instMg'> <div class='flexOne instMg page-body'>
<div class='query-box'> <div class='query-box'>
<el-form label-width="110px"> <el-form label-width="110px">
<el-row> <el-row>
......
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
</style> </style>
<template> <template>
<div class="page_paySetting"> <div class="page_paySetting page-body" >
<div class="query-box"> <div class="query-box">
<ul> <ul>
<li> <li>
......
This diff is collapsed.
...@@ -525,6 +525,11 @@ const routes = [{ ...@@ -525,6 +525,11 @@ const routes = [{
component: () => component: () =>
import("pages/sale/myOrder.vue") import("pages/sale/myOrder.vue")
}, },
{
path: "/sale/orderStatistics", //销售 报名统计
component: () =>
import("pages/sale/orderStatistics.vue")
},
{ {
path: "/sale/studyOrder", //销售 我的留学就业订单 path: "/sale/studyOrder", //销售 我的留学就业订单
component: () => component: () =>
......
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