刘洋 hace 1 año
padre
commit
1700275e24

+ 12 - 2
src/views/resource-guard/person-guard/person-files/index.vue

@@ -122,12 +122,19 @@
           <span v-else>-</span>
         </template>
         <template #photo="{ col, row }">
-          <t-image
+          <!-- <t-image
             v-if="row[col.colKey]"
             :src="row[col.colKey]"
             fit="contain"
             :style="{ width: '80px', height: '80px' }"
-          ></t-image>
+          ></t-image> -->
+          <image-view
+            v-if="row[col.colKey]"
+            :src="row[col.colKey]"
+            :width="60"
+            :height="60"
+            :images="[row[col.colKey]]"
+          ></image-view>
           <span v-else>-</span>
         </template>
         <template #roles="{ col, row }">
@@ -231,6 +238,9 @@ const fields = ref([
       {
         type: 'button',
         text: '搜索',
+        attrs: {
+          style: { marginLeft: '0 !important' },
+        },
         onClick: () => {
           search();
           getStatisticsInfo();

+ 4 - 1
src/views/service-unit/dispatch/dispatch-manage/index.vue

@@ -191,7 +191,7 @@
 import { reactive, ref, computed, onMounted } from 'vue';
 import { omit } from 'lodash';
 import { DialogPlugin, MessagePlugin } from 'tdesign-vue-next';
-import {ErrorCircleFilledIcon, FactCheckIcon} from 'tdesign-icons-vue-next';
+import { ErrorCircleFilledIcon, FactCheckIcon } from 'tdesign-icons-vue-next';
 import usePermission from '@/hooks/usePermission';
 const { perm } = usePermission();
 
@@ -265,6 +265,9 @@ const fields = ref([
       {
         type: 'button',
         text: '搜索',
+        attrs: {
+          style: { marginLeft: '0 !important' },
+        },
         onClick: () => {
           refresh();
         },

+ 3 - 0
src/views/service-unit/service-unit-manage/range-manage/index.vue

@@ -140,6 +140,9 @@ const fields = ref([
       {
         type: 'button',
         text: '搜索',
+        attrs: {
+          style: { marginLeft: '0 !important' },
+        },
         onClick: () => {
           search();
           getTotalData();

+ 3 - 0
src/views/work-hours/work-hours-manage/abnormal-check/wait-check.vue

@@ -167,6 +167,9 @@ const fields = ref([
       {
         type: 'button',
         text: '搜索',
+        attrs: {
+          style: { marginLeft: '0 !important' },
+        },
         onClick: () => {
           search();
         },

+ 6 - 1
src/views/work-hours/work-hours-manage/work-statistics/index.vue

@@ -29,7 +29,9 @@
           <span>已提交:{{ statisticsInfo.submitted }}</span>
           <span>待提交:{{ statisticsInfo.unSubmitted }}</span>
           <span>已提交累计人天:{{ statisticsInfo.allDays }}天</span>
-          <span>已提交累计工时:{{ statisticsInfo.allHours?.toFixed(1) }}小时</span>
+          <span
+            >已提交累计工时:{{ statisticsInfo.allHours?.toFixed(1) }}小时</span
+          >
           <template #separator>
             <t-divider layout="vertical" />
           </template>
@@ -148,6 +150,9 @@ const fields = ref([
       {
         type: 'button',
         text: '搜索',
+        attrs: {
+          style: { marginLeft: '0 !important' },
+        },
         onClick: () => {
           search();
           getStatisticsInfo();