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

提交代码

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