Browse Source

修改了冲销状态展示问题

duanxiaoduan 1 year ago
parent
commit
e50ed0421c

File diff suppressed because it is too large
+ 0 - 0
dist/index.html


+ 1 - 1
src/views/custom/outStock/index.vue

@@ -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>

+ 1 - 1
src/views/custom/returngoods/index.vue

@@ -536,7 +536,7 @@
           <el-table-column prop="dflag" label="冲销状态" min-width="80px" align="center">
               <template slot-scope="scope">
                 <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>
                 <span v-else>未冲销</span>
               </template>
             </el-table-column>

+ 1 - 1
src/views/custom/storage/index.vue

@@ -108,7 +108,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>

Some files were not shown because too many files changed in this diff