# Conflicts: # dist/index.html
@@ -122,7 +122,7 @@
<el-table-column prop="sterilisation" label="冲销状态" min-width="80px" align="center">
<template slot-scope="scope">
<span v-if="scope.row.sterilisation == 1">已冲销</span>
- <span v-if="scope.row.sterilisation == 2">部分冲销</span>
+ <span v-else-if="scope.row.sterilisation == 2">部分冲销</span>
<span v-else>未冲销</span>
</template>
</el-table-column>
@@ -536,7 +536,7 @@
<el-table-column prop="dflag" label="冲销状态" min-width="80px" align="center">
<span v-if="scope.row.dflag == 1">已冲销</span>
- <span v-if="scope.row.dflag == 2">部分冲销</span>
+ <span v-else-if="scope.row.dflag == 2">部分冲销</span>
@@ -108,7 +108,7 @@