Docpre.vue 7.94 KB
Newer Older
1
        <!-- 前后端字段path及前后端字段docgrdm.docgrd   后端docgrd为List<Docgrd>类型 -->
wangyanjiao committed
2 3
<template>
    <div>
4
        <!-- <c-col :span="24" style="height: 24px; margin-top: -10px">
5
            <el-form-item :label="model[argadr.grp].docgrdm.docdsclab" class="messageLabel">
wangyanjiao committed
6 7 8 9
                <div v-if="ifShowAdd">
                    <c-button style="float: right" @click="addTableValue" type="primary">新增单据</c-button>
                </div>
            </el-form-item>
10
        </c-col> -->
wangyanjiao committed
11
        <c-col :span="24" style="margin-bottom: 30px;">
12
            <el-form-item :prop="`${argadr.grp}.docgrdm.docgrd`" label="" style="margin-left:-150px;">
13
                <c-table max-height="300px" style="text-align: center;" stripe
14 15 16 17 18 19 20 21
                    :list="this.model[argadr.grp].docgrdm.docgrd || []" :paginationShow="false" :border="true">
                    <el-table-column :label="model[argadr.grp].docgrdm.docdsclab || 'Documents Presented'" class="messageLabel">
                        <el-table-column label="1st" width="auto" prop="cmail1" background-color="red">
                            <template slot-scope="scope">
                                <c-input v-model="scope.row.cmail1" @change="docpre" :disabled="disabledCmail1"
                                    maxlength="12">
                                </c-input>
                            </template>
wangyanjiao committed
22

23 24 25 26 27 28 29 30 31 32
                        </el-table-column>
                        <el-table-column label="2nd" width="auto" prop="cmail2">
                            <template slot-scope="scope">
                                <c-input v-model="scope.row.cmail2" @change="docpre" :disabled="disabledCmail2"
                                    maxlength="12">
                                </c-input>
                            </template>
                        </el-table-column>
                        <el-table-column label="Document" prop="docnam" width="auto">
                            <template slot="header" slot-scope="scope">
zhujiazhan committed
33
                                <c-row>
34 35 36 37 38
                                    <c-col :span="12">
                                        <span style="line-height: 36px;">Document</span>
                                    </c-col>
                                    <c-col :span="12">
                                        <div style="float: right;">
wangyanjiao committed
39 40
                                            <c-button  @click="addTableValue" v-if="ifShowAdd">+</c-button><br>
                                            <c-button  @click="deleteTable" v-if="ifShowDelete">-</c-button>
41 42
                                        </div>
                                    </c-col>
zhujiazhan committed
43
                                </c-row>
44 45 46 47 48 49 50 51 52 53 54 55

                            </template>
                            <template slot-scope="scope">
                                <!-- {{scope.row.docnam}} -->
                                <c-select style="width: 100%" placeholder="请选择" v-model="scope.row.docnam"
                                    :disabled="disabledDocnam">
                                    <el-option v-for="item in codes[argadr.code]" :key="item.value" :label="item.label"
                                        @change="docpre" :value="item.value">
                                    </el-option>
                                </c-select>
                            </template>
                        </el-table-column>
56 57 58
                    </el-table-column>
                </c-table>
            </el-form-item>
wangyanjiao committed
59
        </c-col>
60

wangyanjiao committed
61 62 63 64
    </div>
</template>
<script>
import commonProcess from "~/mixin/commonProcess";
65 66 67
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Botdcr/Event"
import Utils from "~/utils";
wangyanjiao committed
68 69
export default {

70

wangyanjiao committed
71 72 73 74 75 76 77
    inject: ["root"],
    mixins: [commonProcess],


    data() {
        return {
            data: [],
78 79 80 81 82 83 84 85 86 87 88 89 90


            codes: { ...CodeTable },
            newValue: {
                id: 0,
                cmail1: "",
                cmail2: "",
                docnam: "",
                description: "",
                serialNum: "",
                tableName: "",
                tcddoc: "",
            },
wangyanjiao committed
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
        };
    },
    watch: {},

    props: {
        model: {
            type: Object,
            default: undefined,
        },
        argadr: {
            type: Object,
            default: function () {
                return {
                    grp: "", //所属模块  eg:bdtp,botp...
                    path: "",    // path为存储数据字段所对应的default方法
106
                    code: "",   //表格选项码表参数
wangyanjiao committed
107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
                };
            },
        },
        disabledCmail1: {
            type: Boolean,
            default: false,
        },
        disabledCmail2: {
            type: Boolean,
            default: false,
        },
        disabledDocnam: {
            type: Boolean,
            default: false,
        },
        ifShowAdd: {
            type: Boolean,
            default: true,
        },
        ifShowDelete: {
            type: Boolean,
            default: true,
        },
    },



    methods: {
        ...Event,
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154
        setColSpan: function () {
            // console.log(this.$el.getElementsByClassName("el-table__header"))
            // 获取表头的所有单元格
            var x = this.$el.getElementsByClassName("el-table__header")
            console.log(x)
            var x1 = this.$el.getElementsByClassName("el-table__header")[0].rows[1].cells
            var x2 = this.$el.getElementsByClassName("el-table__header")[0].rows[0].cells

            x1[2].colSpan = 2   // document
            // 将gutter的display设为none
            x1[3].style.display = 'none'    //gutter

            x2[0].colSpan = 4   //  docdsclab
            // x2[0].style.background-color = '#FFF'
            // 将gutter的display设为none
            x2[1].style.display = 'none'    //gutter


        },
wangyanjiao committed
155 156 157
        addTableValue(index) {
            var newTableValue = Object.assign({}, this.newValue);
            const serial = Utils.generateUUID();
158
            var grp = this.argadr.grp;
wangyanjiao committed
159
            newTableValue.serialNum = serial;
160 161
            // this.model[argadr.grp].docgrdm.docgrd.splice(index - 1, 0, newTableValue);
            this.model[grp].docgrdm.docgrd.splice(index - 1, 0, newTableValue);
wangyanjiao committed
162 163
        },
        deleteTable(index) {
164 165 166
            // 'this.model.${argadr.grp}.docgrdm.docgrd.splice(index, 1)';
            var grp = this.argadr.grp;
            this.model[grp].docgrdm.docgrd.splice(index, 1);
wangyanjiao committed
167 168 169 170 171 172 173 174 175 176 177 178 179 180
        },
        async docpre() {
            let rtnmsg = await this.executeDefault(this.argadr.path)
            // let rtnmsg = await this.executeDefault('bodgrp.blk.docpre')
            if (rtnmsg.respCode == SUCCESS) {
                //TODO 处理数据逻辑
                this.updateModel(rtnmsg.data)
            }
            else {
                this.$notify.error({ title: '错误', message: '服务请求失败!' });
            }
        },
    },
    created: function () {
181 182 183 184 185 186
    },
    mounted() {
        // 注意一定要保证DOM渲染完成后在进行合并操作,否则会找不到元素
        this.$nextTick(function () {
            this.setColSpan();
        })
wangyanjiao committed
187 188 189
    }
};

190 191


wangyanjiao committed
192 193 194 195 196 197 198
</script>
<style>
.messageLabel>>>.el-form-item__label {
    text-align: left;
    font-weight: bold;
    font-size: 12px;
}
199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240

.add_del_button:hover {
    cursor: pointer;
    background-color: rgb(230, 227, 227);
}

.add_del_button {
    display: block;
    flex: 0;
    line-height: 15px;
    text-align: center;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid rgb(194, 192, 192);
    background-color: rgb(240, 240, 240);
}

.add_button {
    margin-bottom: 2px;
}

/* body .el-table th.gutter {
    display: table-cell !important;
    height:0px;
    font-weight: 0px;
    border-bottom: 1px solid #bbb !important;
    position: absolute;
    right:0;
    top: 0;

} */

/* 
.gutter {
    display: none;
    width: 0px !important;
    background: rgb(51, 51, 51);
}

tr {
    background: rgb(51, 51, 51);
} */
wangyanjiao committed
241
</style>