HomeView.vue 10.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
<script setup>
  import { reactive, ref } from 'vue'
  // import { FormInstance } from 'element-plus'
  import axios from 'axios';
  import { ElMessage } from 'element-plus'
  import {addSNsApi, getSNsApi, deleteSNsApi, getSNsByConditionApi , listProjectSelectApi} from '../api/api';

  const addFormRef = ref()
  const deleteFormRef = ref()
  const conditionFormRef = ref()

  //获取的SN内容
  const SNsContent = ref('')

  //当前显示的表单 1-添加SN 2-获取SN 3-删除SN
  const currForm = ref('1');

  // 条件查询表单
  const conditionForm = reactive({
    projectName: '',
    sns: ''
  })

  const changeForm = (tab, event) => {
    currForm.value = tab.props.name;
    if (currForm.value === '3') {
      fetchProjectOptions()
    }
    // //把SN数据查出来
    // if (currForm.value == 3) {
    //   axios({
    //       method: getSNsApi.method,
    //       url: getSNsApi.url
    //   }).then(response => {
    //       if (response.data.code == 200) {
    //         SNsContent.value = response.data.data;
    //
    //       } else {
    //           ElMessage({
    //               message: response.data.message,
    //               type: 'error',
    //           })
    //       }
    //
    //   }).catch(err => {
    //       ElMessage.error(err)
    //   })
    // }
    //
  }

  // 项目名称下拉选项
  const projectOptions = ref([])
  const loadingProjects = ref(false)

  // 获取项目名称下拉列表
  const fetchProjectOptions = async () => {
    try {
      loadingProjects.value = true
      const response = await axios({
        method: listProjectSelectApi.method,
        url: listProjectSelectApi.url
      })
      if (response.data.code === 200) {
        projectOptions.value = response.data.data || []
      }
    } catch (err) {
      ElMessage.error('获取项目列表失败')
    } finally {
      loadingProjects.value = false
    }
  }


  // 提交条件查询
  const submitConditionForm = async (formInstance) => {
    if (!formInstance) return

    try {
      await formInstance.validate()
      const response = await axios({
        method: getSNsByConditionApi.method,
        url: getSNsByConditionApi.url,
        data: {
          projectName: conditionForm.projectName,
          sns: conditionForm.sns
        }
      })

      if (response.data.code === 200) {
        SNsContent.value = response.data.data
        ElMessage.success('查询成功')
      } else {
        ElMessage.error(response.data.message || '查询失败')
      }
    } catch (err) {
      if (err.name !== 'Error') { // 不是表单验证错误
        ElMessage.error(err.message || '查询异常')
      }
    }
  }

  // 重置条件表单
  const resetConditionForm = (formInstance) => {
    if (!formInstance) return
    formInstance.resetFields()
    SNsContent.value = '...'
  }


  //添加SN的表单
  const dynamicValidateAddForm = reactive({
    SNs: [
      {
        key: 1,
        value: '',
      },
    ],
    projectName: '',
  })

  //删除SN的表单
  const dynamicValidateDeleteForm = reactive({
    SNs: [
      {
        key: 1,
        value: '',
      },
    ]
  })

  

  const removeAddFormDomain = (domainItem) => {
    const index = dynamicValidateAddForm.SNs.indexOf(domainItem)
    if (index > 0) {
      dynamicValidateAddForm.SNs.splice(index, 1)
    }
  }
  const removeDeleteFormDomain = (domainItem) => {
    const index = dynamicValidateDeleteForm.SNs.indexOf(domainItem)
    if (index > 0) {
      dynamicValidateDeleteForm.SNs.splice(index, 1)
    }
  }

  const addSNAddDomain = () => {
    dynamicValidateAddForm.SNs.push({
      key: Date.now(),
      value: '',
    })
  }

  const addSNDeleteDomain = () => {
    dynamicValidateDeleteForm.SNs.push({
      key: Date.now(),
      value: '',
    })
  }

  //提交添加SN
  const submitAddSNForm = (formInstance) => {
    if (!formInstance) return
    formInstance.validate((valid) => {
      if (valid) {
        let addSNs = [];
        for (let SNItem of dynamicValidateAddForm.SNs) {
          addSNs.push(SNItem.value.trim())
        }

        //调用后端接口添加SNs
        axios({
          method: addSNsApi.method,
          url: addSNsApi.url,
          data: {
            projectName: dynamicValidateAddForm.projectName,
            sns: addSNs
          }
        }).then(response => {
          if (response.data.code == 200) {
            ElMessage({
              //showClose: true,
              duration: 3000,
              message: response.data.message,
              type: 'success',
            })

          } else {
            ElMessage({
              //showClose: true,
              duration: 3000,
              message: response.data.message,
              type: 'error',
            })
          }

        }).catch(err => {
          ElMessage.error(err)
        })
        console.log(dynamicValidateAddForm.projectName)
      } else {
        console.log('error submit!')
        return false
      }
    })
  }

  //提交删除SN
  const submitDeleteSNForm = (formInstance) => {
    if (!formInstance) return
    formInstance.validate((valid) => {
      if (valid) {
        let deleteSNs = [];
        for (let SNItem of dynamicValidateDeleteForm.SNs) {
          deleteSNs.push(SNItem.value.trim())
        }

        //调用后端接口删除SNs
        axios({
          method: deleteSNsApi.method,
          url: deleteSNsApi.url,
          data: {
            sns: deleteSNs
          }
        }).then(response => {
          if (response.data.code == 200) {
            ElMessage({
              //showClose: true,
              duration: 3000,
              message: response.data.message,
              type: 'success',
            })
          } else {
              ElMessage({
                //showClose: true,
                duration: 3000,
                message: response.data.message,
                type: 'error',
              })
          }

        }).catch(err => {
          ElMessage.error(err)
        })
        
      } else {
        console.log('error submit!')
        return false
      }
    })
  }

  const resetForm = (formInstance) => {
    if (!formInstance) return
    formInstance.resetFields()
  }


</script>

<template>
  <div class="home">
  
    <el-tabs type="border-card" v-model="currForm" @tab-click="changeForm">
      <el-tab-pane label="添加SN" name="1"></el-tab-pane>
      <el-tab-pane label="删除SN" name="2"></el-tab-pane>
      <el-tab-pane label="获取SN" name="3"></el-tab-pane>
      
        <el-form
        ref="addFormRef"
        style="max-width: 600px"
        :model="dynamicValidateAddForm"
        label-width="auto"
        class="demo-dynamic"
        v-show="currForm == 1? true : false"
      >
        <el-form-item
          prop="projectName"
          label="项目名称"
          :rules="[
            {
              required: true,
              message: '请输入项目名称',
              trigger: 'blur',
            }
          ]"
        >
          <el-input v-model="dynamicValidateAddForm.projectName" />
        </el-form-item>
        <el-form-item
          v-for="(SN, index) in dynamicValidateAddForm.SNs"
          :key="SN.key"
          :label="'SN' + (index+1)"
          :prop="'SNs.' + index + '.value'"
          :rules="{
            required: true,
            message: 'SN不能为空',
            trigger: 'blur',
          }"
        >
          <el-input v-model="SN.value" />
          <el-button class="mt-2" @click.prevent="removeAddFormDomain(SN)"
            >移除</el-button
          >
        </el-form-item>
        <el-form-item>
          <el-button type="primary" @click="submitAddSNForm(addFormRef)">提交</el-button>
          <el-button @click="addSNAddDomain">添加选项</el-button>
          <el-button @click="resetForm(addFormRef)">重置</el-button>
        </el-form-item>
      </el-form>

      <el-form
        ref="deleteFormRef"
        style="max-width: 600px"
        :model="dynamicValidateDeleteForm"
        label-width="auto"
        class="demo-dynamic"
        v-show="currForm == 2? true : false"
      >
        <el-form-item
          v-for="(SN, index) in dynamicValidateDeleteForm.SNs"
          :key="SN.key"
          :label="'SN' + (index+1)"
          :prop="'SNs.' + index + '.value'"
          :rules="{
            required: true,
            message: 'SN不能为空',
            trigger: 'blur',
          }"
        >
          <el-input v-model="SN.value" />
          <el-button class="mt-2" @click.prevent="removeDeleteFormDomain(SN)"
            >移除</el-button
          >
        </el-form-item>
        <el-form-item>
          <el-button type="primary" @click="submitDeleteSNForm(deleteFormRef)">提交</el-button>
          <el-button @click="addSNDeleteDomain">添加选项</el-button>
          <el-button @click="resetForm(deleteFormRef)">重置</el-button>
        </el-form-item>
      </el-form>

<!--      <el-text class="mx-1" v-show="currForm == 3? true : false">-->
<!--        {{ SNsContent }}-->
<!--      </el-text>-->

      <!-- 条件查询表单 -->
      <el-form
          ref="conditionFormRef"
          style="max-width: 600px"
          :model="conditionForm"
          label-width="auto"
          class="demo-dynamic"
          v-show="currForm == 3"
      >
        <el-form-item
            prop="projectName"
            label="项目名称"
        >
          <el-select
              v-model="conditionForm.projectName"
              filterable
              clearable
              placeholder="请选择或输入项目名称"
              :loading="loadingProjects"
              style="width: 100%"
          >
            <el-option
                v-for="item in projectOptions"
                :key="item"
                :label="item"
                :value="item"
            />
          </el-select>
        </el-form-item>

        <el-form-item
            prop="sns"
            label="SN"
        >
          <el-input v-model="conditionForm.sns" placeholder="输入设备SN码" />
        </el-form-item>

        <el-form-item>
          <el-button type="primary" @click="submitConditionForm(conditionFormRef)">查询</el-button>
          <el-button @click="resetConditionForm(conditionFormRef)">重置</el-button>
        </el-form-item>
      </el-form>

      <!-- 查询结果显示 -->
      <div v-show="currForm == 3" style="margin-top: 20px;">
        <el-card>
          <template #header>
            <div class="card-header">
              <span>查询结果</span>
            </div>
          </template>
          <el-text class="mx-1">
            <pre>{{ SNsContent }}</pre>
          </el-text>
        </el-card>
      </div>

    </el-tabs>
    


  </div>
    
</template>
  
<style>
  .home {
    width: 50%;
    margin: 0px auto;
  }

  .card-header {
    font-weight: bold;
  }

  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
  }

</style>