瀏覽代碼

fix: 审核按钮登录成功、登录不成功可以一直审核

zh 2 年之前
父節點
當前提交
216b6acd2b

+ 1 - 1
src/views/commercialEngineering/crossDistrict/crossDistrictkList.vue

@@ -189,7 +189,7 @@ export default {
       return (h, { row, index, column }) => {
       return (h, { row, index, column }) => {
         return (
         return (
           <div class='operation-btns'>
           <div class='operation-btns'>
-            {this.isTradeExaminer && row.orderStatus === 'WAIT' ? (
+            {this.isTradeExaminer && (row.orderStatus === 'WAIT' || row.orderStatus === 'OK' || row.orderStatus === 'FAIL') ? (
               <el-button
               <el-button
                 size='mini'
                 size='mini'
                 type='text'
                 type='text'

+ 1 - 1
src/views/commercialEngineering/frock/frockList.vue

@@ -187,7 +187,7 @@ export default {
       return (h, { row, index, column }) => {
       return (h, { row, index, column }) => {
         return (
         return (
           <div class='operation-btns'>
           <div class='operation-btns'>
-            {this.isTradeExaminer && row.orderStatus === 'WAIT' ? (
+            {this.isTradeExaminer && (row.orderStatus === 'WAIT' || row.orderStatus === 'OK' || row.orderStatus === 'FAIL') ? (
               <el-button
               <el-button
                 size='mini'
                 size='mini'
                 type='text'
                 type='text'

+ 1 - 1
src/views/commercialEngineering/homeDecoration/homeDecorationList.vue

@@ -195,7 +195,7 @@ export default {
       return (h, { row, index, column }) => {
       return (h, { row, index, column }) => {
         return (
         return (
           <div class='operation-btns'>
           <div class='operation-btns'>
-            {this.isTradeExaminer && row.orderStatus === 'WAIT' ? (
+            {this.isTradeExaminer && (row.orderStatus === 'WAIT' || row.orderStatus === 'OK' || row.orderStatus === 'FAIL') ? (
               <el-button
               <el-button
                 size='mini'
                 size='mini'
                 type='text'
                 type='text'