Explorar el Código

签字注师根据可签次数调整显示颜色

huangguoce hace 16 horas
padre
commit
77bc5c7436

+ 2 - 1
src/views/cw/workClientInfo/clientUserSelect/AccountantUserSelectDialog.vue

@@ -77,7 +77,8 @@
                   <div v-if="scope.row.accountantUserFlag === 0">
                     {{ scope.row.accountantUserCount }}
                   </div>
-                  <div v-else :style="{ color: scope.row.accountantUserCount > 100 ? 'red' : 'black' }">
+                  <div v-else
+                    :style="{ color: scope.row.accountantUserCount > scope.row.signatureCount ? 'red' : 'black' }">
                     {{ scope.row.accountantUserCount }}
                   </div>
                 </template>

+ 2 - 1
src/views/cw/workClientInfo/clientUserSelect/AccountantUserSelectDialog2.vue

@@ -75,7 +75,8 @@
                   <div v-if="scope.row.accountantUserFlag === 0">
                     {{ scope.row.accountantUserCount }}
                   </div>
-                  <div v-else :style="{ color: scope.row.accountantUserCount > 100 ? 'red' : 'black' }">
+                  <div v-else
+                    :style="{ color: scope.row.accountantUserCount > scope.row.signatureCount ? 'red' : 'black' }">
                     {{ scope.row.accountantUserCount }}
                   </div>
                 </template>