feige
2025-04-20 7eb199649939226c3f11fd6f4cda830a389253b8
ruoyi-ui/src/views/meeting/index.vue
@@ -21,20 +21,6 @@
    <hr>
<!--    <el-form :model="queryParams1">
      <el-row>
        <el-form-item label="" prop="people">
          <el-input v-model="queryParams1.people" placeholder="请输入搜索内容" clearable style="width: 200px;
                   height: 35px;
                   text-align: left;
                   border-radius: 16px 16px 16px 16px;
                   opacity: 0.5;" @keyup.enter.native="handleQuery">
            <i slot="prefix" class="el-input__icon el-icon-search"></i>
          </el-input>
        </el-form-item>
      </el-row>
    </el-form> -->
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch">
      <el-form-item label="时间" prop="happenTime">
@@ -162,7 +148,7 @@
    </el-row>
      <el-table v-loading="loading"  :data="meetingList" :row-key="getRowId" ref="multipleTable"
      <el-table v-loading="loading"  border :data="meetingList" :row-key="getRowId" ref="multipleTable"
      @selection-change="handleSelectionChange"  :row-class-name="tableRowClassName">
      <el-table-column type="selection"  :reserve-selection="true" width="55"  align="center" />
@@ -222,9 +208,7 @@
      </el-table-column>
      <el-table-column label="状态" prop="statu" sortable align="center">
        <!-- <template slot-scope="scope">{{scope.row.statu===1? '同意': '拒绝'}}</template> -->
        <template slot-scope="scope">{{scope.row.statu ===3 ? '待审批' : (scope.row.statu===1? '同意': '拒绝')}}</template>
        <!-- scope.row.statu ==='待审批' ? '待审批' : (scope.row.statu===1? '同意': '拒绝') -->
        <template slot-scope="scope">{{scope.row.statu===1? '同意': (scope.row.statu ===0 ? '拒绝' : '待审批')}}</template>
      </el-table-column>
      <el-table-column label="操作" align="center" width="200" class-name="small-padding fixed-width">
@@ -419,7 +403,7 @@
        isPlacebrand: [{
          required: true,
          message: '请选择是否摆放水牌',
          trigger: 'blur'
          trigger: 'change'
        }],
        connPerson: [{
          required: true,