Rick hai 7 meses
pai
achega
c40bdc4373

+ 0 - 1
components.d.ts

@@ -22,7 +22,6 @@ declare module 'vue' {
     VanCheckboxGroup: typeof import('vant/es')['CheckboxGroup']
     VanCol: typeof import('vant/es')['Col']
     VanDatePicker: typeof import('vant/es')['DatePicker']
-    VanDialog: typeof import('vant/es')['Dialog']
     VanEmpty: typeof import('vant/es')['Empty']
     VanField: typeof import('vant/es')['Field']
     VanFloatingBubble: typeof import('vant/es')['FloatingBubble']

+ 2 - 2
src/view/entry/components/allocate.vue

@@ -203,8 +203,8 @@ const comfirmTotal = computed(() => {
 	}, 0);
 });
 const confirmList = ref<any[]>([]);
-const belongOrgOption = ref<DeptTreeType[]>([]);
-const userList = ref<RowUserType[]>([]);
+const belongOrgOption = ref<any[]>([]);
+const userList = ref<any[]>([]);
 const platformList = ref();
 const resClass = ref('');
 const groupId = ref(null); // 资源组ID

+ 2 - 2
src/view/entry/components/confirm.vue

@@ -225,8 +225,8 @@
   })
   const outList = ref<any[]>([])
   const confirmList = ref<any[]>([])
-  const belongOrgOption = ref<DeptTreeType[]>([])
-  const userList = ref<RowUserType[]>([])
+  const belongOrgOption = ref<any[]>([])
+  const userList = ref<any[]>([])
   const resClass = ref('')
   const platform = ref()
   const getDicts = async () => {

+ 2 - 2
src/view/entry/components/details.vue

@@ -71,14 +71,14 @@
           </el-descriptions-item>
         </template>
       </el-descriptions>
-      <template v-if="state.form.fileList?.length">
+      <!-- <template v-if="state.form.fileList?.length">
         <h4 class="mb10">入室申请附件</h4>
         <el-descriptions border :column="2" class="mb20" direction="vertical">
           <el-descriptions-item v-for="item in state.form.fileList" label-class-name="cell-item" :label="item.fileName">
             <el-link type="primary" target="_blank" :href="item.fileUrl">下载</el-link>
           </el-descriptions-item>
         </el-descriptions>
-      </template>
+      </template> -->
       <h4 class="mb10">审批流</h4>
       <FlowTable :id="state.form.id" :businessCode="state.form.id + ''" defCode="plat_platform_appoint" />
       <template v-if="state.dialog.type == 'audit'">

+ 3 - 3
src/view/entry/components/upload.vue

@@ -85,8 +85,8 @@ const state = reactive({
 		submitTxt: '',
 	},
 });
-const belongOrgOption = ref<DeptTreeType[]>([]);
-const userList = ref<RowUserType[]>([]);
+const belongOrgOption = ref<any[]>([]);
+const userList = ref<any[]>([]);
 const platformList = ref();
 const getDicts = () => {
 	Promise.all([
@@ -183,7 +183,7 @@ const otherSuccess = (response: any, uploadFile: UploadFile, uploadFiles: Upload
 	// 		url: response.Data,
 	// 	},
 	// ];
-	state.form.fileList = uploadFiles.map((item) => {
+	state.form.fileList = uploadFiles.map((item: any) => {
 		return {
 			uid: item.uid,
 			status: item.status,

+ 1 - 1
src/view/entry/index.vue

@@ -86,7 +86,7 @@
   const platformAppointApi = usePlatformAppointApi()
   const router = useRouter()
   const route = useRoute()
-  const offset = ref({ x: -80, y: 650 })
+  const offset = ref({ x: -80, y: 450 })
   const state = reactive({
     queryParams: {
       approveStatus: '20',