Commit 9488d898 authored by 黄奎's avatar 黄奎

页面修改

parent d3400066
......@@ -240,46 +240,66 @@ export function queryCourseJobPageList(data) {
/**
* 获取课程优惠类型列表
*/
export function queryCoursePreferentialType()
{
return request({
url: "/Course/GetCoursePreferentialType",
method: 'post',
})
export function queryCoursePreferentialType() {
return request({
url: "/Course/GetCoursePreferentialType",
method: 'post',
})
}
/**
* 获取课程优惠列表
*/
export function queryCoursePreferentialList(data)
{
return request({
url: "/Course/GetCoursePreferentialList",
method: 'post',
data
})
export function queryCoursePreferentialList(data) {
return request({
url: "/Course/GetCoursePreferentialList",
method: 'post',
data
})
}
/**
* 新增修改课程优惠
*/
export function saveCoursePreferential(data)
{
return request({
url: "/Course/SetBeatchCoursePreferential",
method: 'post',
data
})
export function saveCoursePreferential(data) {
return request({
url: "/Course/SetBeatchCoursePreferential",
method: 'post',
data
})
}
/**
* 新增修改课程优惠
* 新增修改报价单
*/
export function saveCourseOffer(data)
{
return request({
url: "/CourseOffer/SetCourseOffer",
method: 'post',
data
})
}
\ No newline at end of file
export function saveCourseOffer(data) {
return request({
url: "/CourseOffer/SetCourseOffer",
method: 'post',
data
})
}
/**
* 获取课程报价列表
*/
export function queryCourseOfferPage(data) {
return request({
url: "/CourseOffer/GetCourseOfferPage",
method: 'post',
data
})
}
/**
* 获取报价单详情
*/
export function queryCourseOfferInfo(data) {
return request({
url: "/CourseOffer/GetCourseOffer",
method: 'post',
data
})
}
\ No newline at end of file
This diff is collapsed.
......@@ -324,12 +324,6 @@ export default {
field: "CoverImg",
align: "left"
},
// {
// name: 'CourseId',
// label: '课程编号',
// field: 'CourseId',
// align: 'left'
// },
{
name: "CourseName",
required: true,
......@@ -424,11 +418,7 @@ export default {
},
methods: {
createQuotation(){
this.showForm=true
// this.$router.push({
// path: '/sale/createQuotation'
// })
this.showForm=true;
},
showContentDialog(content){
this.showContent=content;
......@@ -456,11 +446,9 @@ export default {
new RegExp("\n", "gm"),
"<br/>"
);
console.log(x.CourseFeature);
});
this.data = res.Data.PageData;
this.pageCount = res.Data.PageCount;
console.log(this.data, "data");
})
.catch(() => {
this.loading = false;
......
This diff is collapsed.
......@@ -426,6 +426,11 @@ const routes = [{
component: () =>
import("pages/sale/courseList.vue")
},
{
path: "/sale/courseoffer", //销售 报价单
component: () =>
import("pages/sale/courseoffer.vue")
},
{
path: "/sale/myOrder", //销售 我的订单
component: () =>
......@@ -467,7 +472,7 @@ const routes = [{
import("pages/course/question.vue")
},
{
path: "/sale/createQuotation", //报价单
path: "/sale/quotation", //报价单
component: () =>
import("pages/sale/quotation.vue")
},
......
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