Commit 609c6993 authored by 华国豪's avatar 华国豪 🙄

提交代码

parent e01951fd
...@@ -144,8 +144,8 @@ ...@@ -144,8 +144,8 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<div slot="footer" class="dialog-footer" > <div slot="footer" class="dialog-footer" >
<el-button class="hollowFixedBtn" @click="dialogFormVisible2=false">{{$t('pub.cancelBtn')}}</el-button> <button class="hollowFixedBtn" @click="dialogFormVisible2=false">{{$t('pub.cancelBtn')}}</button>
<el-button class="normalBtn" type="primary" @click="setStatus(3)">{{$t('pub.sureBtn')}}</el-button> <button class="normalBtn" type="primary" @click="setStatus(3)">{{$t('pub.sureBtn')}}</button>
</div> </div>
</el-dialog> </el-dialog>
<div style="padding:20px 0"> <div style="padding:20px 0">
...@@ -167,8 +167,8 @@ ...@@ -167,8 +167,8 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<div slot="footer" class="dialog-footer" > <div slot="footer" class="dialog-footer" >
<el-button class="hollowFixedBtn" @click="dialogFormVisible=false">{{$t('pub.cancelBtn')}}</el-button> <button class="hollowFixedBtn" @click="dialogFormVisible=false">{{$t('pub.cancelBtn')}}</button>
<el-button class="normalBtn" type="primary" @click="setStatus(4)">{{$t('pub.sureBtn')}}</el-button> <button class="normalBtn" type="primary" @click="setStatus(4)">{{$t('pub.sureBtn')}}</button>
</div> </div>
</el-dialog> </el-dialog>
</div> </div>
......
...@@ -231,6 +231,9 @@ export default { ...@@ -231,6 +231,9 @@ export default {
isResize: true, isResize: true,
width: 100, width: 100,
orderBy: "", orderBy: "",
formatter: function(rowData, rowIndex, pagingIndex, field) {
return `<span>${rowData.rejectCount <= 0 ? '' : rowData.rejectCount}</span>`
}
}; };
let receivedPeopleCount = { let receivedPeopleCount = {
field: "receivedPeopleCount", field: "receivedPeopleCount",
...@@ -240,6 +243,9 @@ export default { ...@@ -240,6 +243,9 @@ export default {
isResize: true, isResize: true,
width: 100, width: 100,
orderBy: "", orderBy: "",
formatter: function(rowData, rowIndex, pagingIndex, field) {
return `<span>${rowData.receivedPeopleCount <= 0 ? '' : rowData.receivedPeopleCount}</span>`
}
}; };
let orderCount = { let orderCount = {
field: "orderCount", field: "orderCount",
...@@ -249,6 +255,9 @@ export default { ...@@ -249,6 +255,9 @@ export default {
isResize: true, isResize: true,
width: 80, width: 80,
orderBy: "", orderBy: "",
formatter: function(rowData, rowIndex, pagingIndex, field) {
return `<span>${rowData.orderCount <= 0 ? '' : rowData.orderCount}</span>`
}
}; };
let uncollected = { let uncollected = {
field: "uncollected", field: "uncollected",
...@@ -270,6 +279,9 @@ export default { ...@@ -270,6 +279,9 @@ export default {
isResize: true, isResize: true,
width: 80, width: 80,
orderBy: "", orderBy: "",
formatter: function(rowData, rowIndex, pagingIndex, field) {
return `<span>${rowData.lateCount <= 0 ? '' : rowData.lateCount}</span>`
}
}; };
let leaveEarlyCount = { let leaveEarlyCount = {
field: "leaveEarlyCount", field: "leaveEarlyCount",
...@@ -279,6 +291,9 @@ export default { ...@@ -279,6 +291,9 @@ export default {
isResize: true, isResize: true,
width: 80, width: 80,
orderBy: "", orderBy: "",
formatter: function(rowData, rowIndex, pagingIndex, field) {
return `<span>${rowData.leaveEarlyCount <= 0 ? '' : rowData.leaveEarlyCount}</span>`
}
}; };
let complainCount = { let complainCount = {
field: "complainCount", field: "complainCount",
...@@ -288,6 +303,9 @@ export default { ...@@ -288,6 +303,9 @@ export default {
isResize: true, isResize: true,
width: 80, width: 80,
orderBy: "", orderBy: "",
formatter: function(rowData, rowIndex, pagingIndex, field) {
return `<span>${rowData.complainCount <= 0 ? '' : rowData.complainCount}</span>`
}
}; };
let discountPrice = { let discountPrice = {
field: "discountPrice", field: "discountPrice",
......
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