Xiao_123 2 mēneši atpakaļ
vecāks
revīzija
ca7c18243a

+ 4 - 0
src/views/menduner/system/jobFair/manage/TicketSettings.vue

@@ -1,5 +1,9 @@
 <template>
   <Dialog title="招聘会门票设置" v-model="dialogVisible">
+    <div class="mb-50px color-orange text-16px" style="display: flex; align-items: center;">
+      <Icon :size="20" icon="ep:warning" class="mr-3px" />
+      提示:不需要设置门票限制时则不需要填写以下内容
+    </div>
     <el-form
       ref="formRef"
       :model="formData"

+ 5 - 0
src/views/menduner/system/jobFair/manage/details/index.vue

@@ -57,6 +57,11 @@
           <el-table-column label="企业别称" align="center" prop="anotherName">
             <template #default="scope">{{ formatName(scope.row.enterprise.anotherName) }}</template>
           </el-table-column>
+          <el-table-column label="权益" align="center" prop="status">
+            <template #default="scope">
+              <span :style="{'color': scope.row.status === '1' ? '#f56c6c' : '#67c23a' }">{{ scope.row.status === '1' ? '已禁用' : '已开启' }}</span>
+            </template>
+          </el-table-column>
           <el-table-column label="操作" align="center">
             <template #default="scope">
               <el-button v-if="scope.row.status === '1'" link type="primary" @click="handleEnableRights(formatName(scope.row.enterprise.anotherName || scope.row.enterprise.name), scope.row.id)">

+ 1 - 1
src/views/menduner/system/jobFair/manage/index.vue

@@ -107,7 +107,7 @@
           <el-button link type="primary" @click="openStatistics(scope.row.id)">数据统计</el-button>
           <el-button link type="primary" @click="openDetail(scope.row.id)">白名单</el-button>
           <el-button link type="primary" @click="openForm('update', scope.row.id)" v-hasPermi="['menduner:system:job-fair:update']">编辑</el-button>
-          <el-button link type="danger" @click="handleDelete(scope.row.id)" v-hasPermi="['menduner:system:job-fair:delete']">删除</el-button>
+          <!-- <el-button link type="danger" @click="handleDelete(scope.row.id)" v-hasPermi="['menduner:system:job-fair:delete']">删除</el-button> -->
         </template>
       </el-table-column>
     </el-table>