jiangping
2025-05-09 913aa4023ab076b641589671dcebf738c6baff64
最新版本541200007
已修改3个文件
22 ■■■■■ 文件已修改
admin/.env.development 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/business/inoutRecord.vue 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/src/views/timer/timer.vue 6 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
admin/.env.development
@@ -2,7 +2,7 @@
NODE_ENV = 'development'
# VUE_APP_API_URL  = 'https://atwl.ahzyssl.com/zhyq_interface'
VUE_APP_API_URL  = 'http://192.168.0.104:10010'
# VUE_APP_API_URL  = 'https://atwl.ahzyssl.com/zhyq_interface'
#VUE_APP_API_URL  = 'http://192.168.0.104:10010'
 VUE_APP_API_URL  = 'https://atwl.ahzyssl.com/zhyq_interface'
# VUE_APP_API_URL  = 'http://10.50.250.253:8088/gateway_interface'
admin/src/views/business/inoutRecord.vue
@@ -4,6 +4,12 @@
    <div slot="search-form">
      <el-form ref="searchForm" :model="searchForm" label-width="100px" inline>
        <el-form-item label="" prop="inOrOut">
          <el-select v-model="searchForm.type"  style="width: 130px" clearable @change="search" placeholder="事件类型">
            <el-option label="车辆事件" value="0">车辆事件</el-option>
            <el-option label="人员事件" value="1">人员事件</el-option>
          </el-select>
        </el-form-item>
        <el-form-item label="" prop="inOrOut">
          <el-select v-model="searchForm.inOrOut"  style="width: 130px" clearable @change="search" placeholder="进出类型">
            <el-option label="进" value="0"></el-option>
            <el-option label="出" value="1"></el-option>
@@ -129,14 +135,13 @@
<script>
import BaseTable from '@/components/base/BaseTable'
import TableLayout from '@/layouts/TableLayout'
import SearchFormCollapse from '@/components/common/SearchFormCollapse'
import Pagination from '@/components/common/Pagination'
import OperaInoutRecordWindow from '@/components/business/OperaInoutRecordWindow'
import { timeForMat } from '@/utils/util'
export default {
  name: 'InoutRecord',
  extends: BaseTable,
  components: { SearchFormCollapse, TableLayout, Pagination, OperaInoutRecordWindow },
  components: {  TableLayout, Pagination, OperaInoutRecordWindow },
  data () {
    return {
      // 搜索
@@ -150,7 +155,8 @@
        companyName: '',
        startDate: null,
        endDate: null,
        radio: '0'
        radio: '0',
        type: null
      },
      time: [],
      bizTypeList: [{ key: 0, name: '访客车辆' },
admin/src/views/timer/timer.vue
@@ -3,13 +3,13 @@
    <!-- 搜索表单 -->
    <el-form ref="searchForm" slot="search-form" :model="searchForm" label-width="100px" inline>
      <el-form-item label="Bean名称" prop="beanName">
        <el-input v-model="searchForm.beanName" placeholder="请输入发布人" @keypress.enter.native="search"></el-input>
        <el-input v-model="searchForm.beanName" placeholder="请输入Bean名称" @keypress.enter.native="search"></el-input>
      </el-form-item>
      <el-form-item label="模块名称" prop="module">
        <el-input v-model="searchForm.module" placeholder="请输入发布人" @keypress.enter.native="search"></el-input>
        <el-input v-model="searchForm.module" placeholder="请输入模块名称" @keypress.enter.native="search"></el-input>
      </el-form-item>
      <el-form-item label="备注" prop="remark">
        <el-input v-model="searchForm.remark" placeholder="请输入发布人" @keypress.enter.native="search"></el-input>
        <el-input v-model="searchForm.remark" placeholder="请输入备注" @keypress.enter.native="search"></el-input>
      </el-form-item>
      <section>
        <el-button type="primary" @click="search">搜索</el-button>