Commit e59dbf76 authored by Mac's avatar Mac

修改样式

parent d28b8ef1
......@@ -100,7 +100,7 @@
:header-cell-style="{backgroundColor:'#f5f6f7', color: '#a8a8b3'}"
border
style="width: 100%">
<el-table-column prop="SchoolName" label="校区" ></el-table-column>
<el-table-column prop="SchoolName" label="校区" width='150' ></el-table-column>
<el-table-column prop="DeptName" label="部门" ></el-table-column>
<el-table-column prop="UserName" label="销售" > </el-table-column>
<el-table-column width='170' prop="ClassName" label="班级信息" >
......@@ -112,7 +112,7 @@
</el-table-column>
<el-table-column prop="OrderId" label="订单号" >
<template slot-scope="scope">
<div style="cursor: pointer;text-decoration: underline;" @click="goUrlorderList('/sale/orderStatistics',scope.row.OrderId)">{{scope.row.OrderId}} </div>
<div style="cursor: pointer;text-decoration: underline;" @click="goUrlorderList('/sale/orderStatistics',scope.row)">{{scope.row.OrderId}} </div>
</template>
</el-table-column>
......@@ -402,9 +402,10 @@
ClassName: Name,
});
},
goUrlorderList(path,ID){//订单跳转
goUrlorderList(path,row){//订单跳转
this.OpenNewUrl(path, {
OrderId: ID,
OrderId: row.OrderId,
EnterID:row.UserId
});
},
},
......
......@@ -52,7 +52,7 @@
<template>
<el-table ref="filterTable" :data="tableData" v-loading='loading'
:header-cell-style="{backgroundColor:'#f5f6f7', color: '#a8a8b3'}" border style="width: 100%">
<el-table-column prop="SchoolName" label="校区" :filters='SchoolNamelist' :filter-method="filterHandler">
<el-table-column prop="SchoolName" label="校区" width='150' :filters='SchoolNamelist' :filter-method="filterHandler">
</el-table-column>
<el-table-column prop="DeptName" label="部门" :filters='DeptNamelist' :filter-method="filterHandler">
</el-table-column>
......@@ -67,7 +67,7 @@
</el-table-column>
<el-table-column prop="OrderId" label="订单号">
<template slot-scope="scope">
<div style="cursor: pointer;text-decoration: underline;" @click="goUrlorderList('/sale/orderStatistics',scope.row.OrderId)">{{scope.row.OrderId}} </div>
<div style="cursor: pointer;text-decoration: underline;" @click="goUrlorderList('/sale/orderStatistics',scope.row)">{{scope.row.OrderId}} </div>
</template>
</el-table-column>
......@@ -302,9 +302,10 @@
ClassName: Name,
});
},
goUrlorderList(path,ID){//订单跳转
goUrlorderList(path,row){//订单跳转
this.OpenNewUrl(path, {
OrderId: ID,
OrderId: row.OrderId,
EnterID:row.UserId
});
},
......
......@@ -68,7 +68,7 @@
<template>
<el-table ref="filterTable" :data="tableData" v-loading='loading'
:header-cell-style="{backgroundColor:'#f5f6f7', color: '#a8a8b3'}" border style="width: 100%">
<el-table-column prop="SchoolName" label="校区"></el-table-column>
<el-table-column prop="SchoolName" width='150' label="校区"></el-table-column>
<el-table-column prop="DeptName" label="部门"></el-table-column>
<el-table-column prop="UserName" label="销售"> </el-table-column>
<el-table-column width='170' prop="ClassName" label="班级信息">
......@@ -80,15 +80,22 @@
</el-table-column>
<el-table-column prop="OrderId" label="订单号">
<template slot-scope="scope">
<div v-if="scope.row.OrderId" style="cursor: pointer;text-decoration: underline;" @click="goUrlorderList('/sale/orderStatistics',scope.row.OrderId)">
<div v-if="scope.row.OrderId" style="cursor: pointer;text-decoration: underline;" @click="goUrlorderList('/sale/orderStatistics',scope.row)">
{{scope.row.OrderId}}
</div>
<div v-if="scope.row.OrderId" style="cursor: pointer;text-decoration: underline;" @click='goorderUrl(scope.row.OrderId)'>
发放次数
</template>
</el-table-column>
<el-table-column prop="IssueNum" label="发放次数" width='94'>
<template slot-scope="scope">
<div v-if="scope.row.IssueNum" style="cursor: pointer;text-decoration: underline;" @click='goorderUrl(scope.row.OrderId)'>
发放第{{scope.row.IssueNum}}
</div>
</template>
</el-table-column>
<el-table-column width='130' prop="TotalCommissionMoney" label="订单发放信息">
<template slot-scope="scope">
<div v-if="scope.row.TotalCommissionMoney" style="color: rgb(255, 156, 0);">应发:{{scope.row.TotalCommissionMoney}}</div>
......@@ -130,7 +137,7 @@
<div style="color: rgb(233, 82, 82);">{{scope.row.YFMoney}}</div>
</template>
</el-table-column>
<el-table-column width='85' prop="Periods" label="期数"> </el-table-column>
<el-table-column width='90' prop="Periods" label="期数"> </el-table-column>
<el-table-column prop="Remark" width='160' label="备注"> </el-table-column>
</el-table>
</template>
......@@ -296,9 +303,10 @@
goreturn() {
this.$router.go(-1);
},
goUrlorderList(path,ID){//订单跳转
goUrlorderList(path,row){//订单跳转
this.OpenNewUrl(path, {
OrderId: ID,
OrderId: row.OrderId,
EnterID:row.UserId
});
},
goUrlclass(path,Names){//班级
......
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