|  |  |  | 
|---|
|  |  |  | <template> | 
|---|
|  |  |  | <div class="app-container"> | 
|---|
|  |  |  | <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="90px"> | 
|---|
|  |  |  | <el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-position="left" > | 
|---|
|  |  |  | <el-row :gutter="20"> | 
|---|
|  |  |  | <el-col | 
|---|
|  |  |  | :span="6"> | 
|---|
|  |  |  | <el-form-item label="资源组" prop="resourceGroupName"> | 
|---|
|  |  |  | <el-form-item label="资源组" label-width="60px" prop="resourceGroupName"> | 
|---|
|  |  |  | <el-input | 
|---|
|  |  |  | v-model="queryParams.resourceGroupName" | 
|---|
|  |  |  | placeholder="请输入资源组名称" | 
|---|
|  |  |  | 
|---|
|  |  |  | </el-col> | 
|---|
|  |  |  | <el-col | 
|---|
|  |  |  | :span="6"> | 
|---|
|  |  |  | <el-form-item label="截止机加需求日期" style="width: 400px" label-width="150px"> | 
|---|
|  |  |  | <el-form-item label="截止机加需求日期" style="width: 400px" label-width="140px"> | 
|---|
|  |  |  | <el-date-picker | 
|---|
|  |  |  | v-model="daterangeRequestDate" | 
|---|
|  |  |  | value-format="YYYY-MM-DD" | 
|---|
|  |  |  | 
|---|
|  |  |  | import HxlhTable from '@/components/HxlhTable/index.vue' | 
|---|
|  |  |  | import { getToken } from "@/utils/auth.js"; | 
|---|
|  |  |  | import { ref } from "vue"; | 
|---|
|  |  |  | import { ElMessage } from 'element-plus' | 
|---|
|  |  |  | // import { ElMessage } from 'element-plus' | 
|---|
|  |  |  | const { proxy } = getCurrentInstance(); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | const ApsResourceGroupList = ref([]); | 
|---|
|  |  |  | 
|---|
|  |  |  | const title = ref(""); | 
|---|
|  |  |  | const daterangeRequestDate = ref([]); | 
|---|
|  |  |  | //弹窗相关 | 
|---|
|  |  |  | const height = ref(document.documentElement.clientHeight - 260 + "px;") | 
|---|
|  |  |  | const height = ref(document.documentElement.clientHeight - 230 + "px;") | 
|---|
|  |  |  | const isVisible = ref(false); | 
|---|
|  |  |  | const isError = ref(false); | 
|---|
|  |  |  | const planned = ref(true); | 
|---|