tangning 1 year ago
parent
commit
864620b7b7
2 changed files with 3 additions and 3 deletions
  1. 2 2
      src/views/retailer/index.vue
  2. 1 1
      src/views/scene/list.vue

+ 2 - 2
src/views/retailer/index.vue

@@ -136,14 +136,14 @@
         {
           title: t('common.state'),
           dataIndex: 'status',
-          width: 80,
+          width: 90,
           customRender: ({ record }) => {
             if (!Reflect.has(record, 'pendingStatus')) {
               record.pendingStatus = false;
             }
             return h(Switch, {
               checked: record.status == '0',
-              style: 'width: 80px',
+              style: 'width: 90px',
               checkedChildren: t('routes.retailer.form.enable'),
               unCheckedChildren: t('routes.retailer.form.stopUsing'),
               loading: false,

+ 1 - 1
src/views/scene/list.vue

@@ -209,7 +209,7 @@ export default defineComponent({
       {
         title: t('routes.scene.status'),
         dataIndex: 'status',
-        width: 80,
+        width: 110,
         customRender: ({ record }) => {
           let str;
           switch (record.status - 0) {