zhanghua
2023-06-14 428216f1c3c255b107eb689cb2afac1b7ed3df80
src/views/operate/disposal/casepool/pool/index.vue
@@ -45,7 +45,8 @@
          :row-class-name="tableRowClassName"
          @selection-change="tableChange"
        >
          <el-table-column label="序号" type="index" min-width="10"> </el-table-column>
          <el-table-column label="序号" type="index" min-width="10">
          </el-table-column>
          <el-table-column prop="code" label="事件编号" min-width="18">
            <template slot-scope="scope">
              <el-link @click="JumpView(scope.row)">{{
@@ -135,14 +136,22 @@
        </el-table>
        <!-- 详情页展示 -->
        <el-dialog
          custom-class="customWidth"
          :visible.sync="dialogView"
          width="60%"
          title="基础信息(人工)"
          v-if="dialogView"
          :before-close="handleClose2"
        >
          <MyDetail :info="info" v-if="mystatus === 1"></MyDetail>
          <MyIllDetail :info="info" v-else></MyIllDetail>
          <MyDetail
            style="min-width: 300px"
            :info="info"
            v-if="mystatus === 1"
          ></MyDetail>
          <MyIllDetail
            style="min-width: 500px"
            :info="info"
            v-else
          ></MyIllDetail>
        </el-dialog>
        <!-- 调度 -->
        <el-dialog
@@ -817,3 +826,8 @@
  }
}
</style>
<style>
.customWidth {
  width: 1000px !important;
}
</style>