yangg 2 дней назад
Родитель
Сommit
5b8202ed9b

+ 1 - 1
src/views/system/allusers/crud.tsx

@@ -197,7 +197,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 					title: '用户类型',
 					type: 'dict-select',
 					search:{
-						show:true
+						show:false
 					},
 					column: {
 						minWidth: 120,

+ 1 - 1
src/views/system/borrow/crud.tsx

@@ -244,7 +244,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 					title: '完结时间',
 					column: { minWidth: 140,sortable: true, formatter: ({ value }: any) => (value ? dayjs(value).format('YYYY-MM-DD HH:mm:ss') : '') },
 				},
-				return_location: { title: '存放仓库', column: { minWidth: 120 } },
+				/* return_location: { title: '存放仓库', column: { minWidth: 120 } }, */
 				
 
 

+ 2 - 2
src/views/system/device/crud.tsx

@@ -349,7 +349,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 
 					}
 				},
-				warehouse:{
+				/* warehouse:{
 					title:'存放仓库',
 					search: { show: true },
 					type:"dict-select",
@@ -363,7 +363,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 						component: { placeholder: '请选择存放仓库' },
 						rules: [{ required: true, message: '请选择存放仓库' }],
 					}
-				},
+				}, */
 				status:{
 					title:'是否可见',
 					type: 'dict-switch',

+ 2 - 2
src/views/system/screenconsole/component/BorrowRankingList.vue

@@ -22,14 +22,14 @@
           <el-select multiple clearable v-model="deviceTagIds" placeholder="标签名" collapse-tags style="margin-left: 30%; width: 100px;"
             @change="fetchRanking">
             <el-option v-for="item in labelType" :key="item.id" :label="item.name" :value="item.id" >
-              <template #default>
+             <!--  <template #default>
                   <el-checkbox
                     :label="item.name"
                     :checked="deviceTagIds.includes(item.id)"
                   >
                     {{ item.name }}
                   </el-checkbox>
-                </template>
+                </template> -->
             </el-option>
           </el-select>
         </el-col>

+ 1 - 1
src/views/system/screenconsole/component/StatusCards.vue

@@ -5,7 +5,7 @@
     </div>
     <!--  <div class="custom-line"></div> -->
     <div class="pending-items">
-      <div class="pending-item" v-for="(item, index) in statusList" :key="index" >
+      <div class="pending-item" v-for="(item, index) in statusList" :key="index" @click="handleClick(item)">
         <div class="icon-wrapper">
          <el-icon :size="40" class="card-icon" :style="{ color: item.color }">
               <component :is="item.icon" />

+ 8 - 4
src/views/system/studentInfo/crud.tsx

@@ -244,10 +244,11 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 					title: '学院',
 					type: 'input',
 					column: {
-						show: true,
+						show: false,
 						minWidth: 120,
 					},
 					form: {
+						show: false,
 						component: { placeholder: '请填写学院' },
 						rules: [{ required: false, message: '请填写学院' }],
 					},
@@ -286,10 +287,11 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 					title: '专业',
 					type: 'input',
 					column: {
-						show: true,
+						show: false,
 						minWidth: 120,
 					},
 					form: {
+						show: false,
 						component: { placeholder: '请填写专业' },
 						rules: [{ required: false, message: '请填写专业' }],
 					},
@@ -301,10 +303,11 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 					title: '年级',
 					type: 'input',
 					column: {
-						show: true,
+						show: false,
 						minWidth: 120,
 					},
 					form: {
+						show: false,
 						component: { placeholder: '请填写年级' },
 						rules: [{ required: false, message: '请填写年级' }],
 					},
@@ -316,10 +319,11 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 					title: '班级',
 					type: 'input',
 					column: {
-						show: true,
+						show: false,
 						minWidth: 120,
 					},
 					form: {
+						show: false,
 						component: { placeholder: '请填写班级' },
 						rules: [{ required: false, message: '请填写班级' }],
 					},

+ 0 - 1
src/views/system/studentInfo/index.vue

@@ -2,7 +2,6 @@
 	<fs-page>
 		<fs-crud ref="crudRef" v-bind="crudBinding">
 			 <template #form_organization_ref="scope">
-				
 				<el-cascader :disabled="scope.mode=='view'" v-model="scope.form.organization_ref" :options="options" :props="props1" :show-all-levels="false" />
 			 </template>
 		</fs-crud>

+ 2 - 2
src/views/system/suppliermanage/crud.tsx

@@ -119,7 +119,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 				},
 				contact_phone: {
 					title: '联系手机号',
-					search: { show: true },
+					search: { show: false },
 					type: 'input',
 					column: { minWidth: 100 },
 					form: {
@@ -133,7 +133,7 @@ export const createCrudOptions = function ({ crudExpose }: CreateCrudOptionsProp
 				},
 				contact_email: {
 					title: '联系邮箱',
-					search: { show: true },
+					search: { show: false },
 					type: 'input',
 					column: { minWidth: 100 },
 					form: {