GuLiMmo
2023-12-23 2e4ede0fcd4e05274275d17450a7223c12ef9f12
查看详情更新
1 files modified
33 ■■■■ changed files
src/views/evaluate/components/viewEvaluateDetail.vue 33 ●●●● patch | view | raw | blame | history
src/views/evaluate/components/viewEvaluateDetail.vue
@@ -1,5 +1,5 @@
<template>
    <el-dialog title="信息预览" v-model="params.visible" width="800px">
    <el-dialog title="信息预览" v-model="params.visible" width="50%">
        <div class="descriptions">
            <div class="descriptions-item" v-for="item in taskDateil" :key="item.prop" :style="{ width: item.width }">
                <div class="label">{{ item.title }}</div>
@@ -92,46 +92,40 @@
        width: '100%',
        data: [],
        option: {
            height: '200',
            height: 260,
            calcHeight: 30,
            tip: false,
            searchShow: true,
            border: true,
            index: true,
            viewBtn: false,
            addBtn: false,
            editBtn: false,
            selection: false,
            dialogClickModal: false,
            menu: false,
            menuLeft: false,
            header: false,
            menuFixed: 'right',
            labelWidth: '120',
            span: 1,
            colums: [
            column: [
                {
                    lable: '评优项目',
                    label: '评优项目',
                    prop: '',
                    type: 'input',
                },
                {
                    lable: '名称',
                    label: '名称',
                    prop: '',
                    type: 'input',
                },
                {
                    lable: '候选人',
                    label: '候选人',
                    prop: '',
                    type: 'input',
                },
                {
                    lable: '部门',
                    label: '部门',
                    prop: '',
                    type: 'input'
                },
                {
                    lable: '票数',
                    label: '票数',
                    prop: '',
                    type: 'input'
                }
@@ -200,11 +194,11 @@
        right: 1px solid #eeeded;
    }
    ;
    .descriptions-item {
        display: flex;
        box-sizing: border-box;
        border: {
            bottom: 1px solid #eeeded;
            left: 1px solid #eeeded;
@@ -212,12 +206,14 @@
        .label,
        .value {
            flex-shrink: 0;
            padding: 10px 5px;
            display: flex;
            align-items: center;
        }
        .label {
            width: 100px;
            flex-shrink: 0;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
@@ -225,8 +221,11 @@
            border-right: 1px solid #eeeded;
        }
        .value {
        }
        .table {
            width: 100%;
            padding: 10px;
            width: calc(100% - 20px);
        }
    }
}