Commit 6df502c2 by 弓厶

1、修改本地开发文件配置

2、优化订单列表页面
parent 94f59716
......@@ -3,16 +3,25 @@ const dev = {
devServer: {
port: 3000,
proxy: {
'/api': {
target: 'http://132.97.20.38:18080',
'/api/auth': {
target: 'http://172.18.101.171:10001',
ws: false,
changeOrigin: true,
pathRewrite: {
//默认所有请求都加了api前缀,需要去掉
'^/api': '/'
}
'^/api/auth/ciop': '/auth/ciop'
}
},
'/api/manager': {
target: 'http://172.18.101.171:10001',
ws: false,
changeOrigin: true,
pathRewrite: {
//默认所有请求都加了api前缀,需要去掉
'^/api/manager': '/manager'
}
}
}
}
}
......
......@@ -457,31 +457,31 @@ export default {
},
orderInfo: {},
columns: [
{ dataIndex: "customerName", width: 200, title: "客户姓名" },
{ dataIndex: "orderNumber", width: 200, title: "订单编号" },
{ dataIndex: "businessPackage", width: 200, title: "升级套餐" },
{ dataIndex: "orderStatus", width: 200, title: "订单状态" },
{ dataIndex: "customerName", width: 120, title: "客户姓名", fixed: "left" },
{ dataIndex: "orderNumber", width: 180, title: "订单编号", fixed: "left" },
{ dataIndex: "orderStatus", width: 100, title: "订单状态" },
{
dataIndex: "studentCardCheckStatus",
width: 100,
title: "学生证状态",
scopedSlots: { customRender: "studentCardCheckStatus" }
},
{ dataIndex: "businessPackage", width: 180, title: "升级套餐" },
{
dataIndex: "userType",
width: 200,
width: 100,
title: "订单类型",
scopedSlots: { customRender: "userType" }
},
{ dataIndex: "contactNumber", width: 200, title: "联系号码" },
{ dataIndex: "businessNumber", width: 200, title: "办理号码" },
{ dataIndex: "kapin", width: 200, title: "办理套餐" },
{ dataIndex: "hehuorenName", width: 200, title: "合伙人姓名" },
{ dataIndex: "hehuorenSchool", width: 200, title: "合伙人学校" },
{ dataIndex: "hehuorenPhone", width: 200, title: "合伙人手机" },
{
dataIndex: "studentCardCheckStatus",
width: 200,
title: "学生证审核状态",
scopedSlots: { customRender: "studentCardCheckStatus" }
},
{ dataIndex: "hehuorenSchool", width: 220, title: "合伙人学校" },
{ dataIndex: "hehuorenName", width: 150, title: "合伙人姓名" },
{ dataIndex: "hehuorenPhone", width: 150, title: "合伙人手机" },
{
dataIndex: "operation",
width: 250,
width: 200,
title: "操作",
scopedSlots: { customRender: "operation" },
fixed: "right"
......
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