소스 검색

修改了冲销状态展示问题

duanxiaoduan 1 년 전
부모
커밋
e50ed0421c
4개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 0
      dist/index.html
  2. 1 1
      src/views/custom/outStock/index.vue
  3. 1 1
      src/views/custom/returngoods/index.vue
  4. 1 1
      src/views/custom/storage/index.vue

파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
+ 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>

이 변경점에서 너무 많은 파일들이 변경되어 몇몇 파일들은 표시되지 않았습니다.