Dogpame.vue 2.19 KB
Newer Older
liuxin committed
1 2 3 4 5 6 7 8
<template>
    <div class="eibs-tab">
        <c-col :span="12">
            <span v-text="model.detamep.hfmdes" data-path=".detamep.hfmdes">
            </span>
        </c-col>

        <c-col :span="12">
wangna committed
9
            <el-form-item label="货物描述" prop="dedgrp.blk.lcrgod">
liuxin committed
10 11 12 13 14
                <c-input
                    type="textarea"
                    v-model="model.dedgrp.blk.lcrgod"
                    maxlength="65"
                    show-word-limit
wangna committed
15
                    placeholder="请输入货物描述"
liuxin committed
16 17 18 19 20 21
                ></c-input>
            </el-form-item>
        </c-col>

        <c-col :span="12">
            <el-form-item
wangna committed
22
                label="历史修改"
liuxin committed
23 24 25 26 27 28 29
                prop="dedgrp.blk.lcrgodame"
            >
                <c-input
                    type="textarea"
                    v-model="model.dedgrp.blk.lcrgodame"
                    maxlength="50"
                    show-word-limit
wangna committed
30
                    placeholder="请输入历史修改"
liuxin committed
31 32 33 34 35 36
                ></c-input>
            </el-form-item>
        </c-col>

        <c-col :span="12">
            <el-form-item
wangna committed
37
                label="目前修改为"
liuxin committed
38 39 40 41 42 43 44 45
                prop="trnmod.swiadd.lcrgod"
            >
                <c-fullbox>
                    <c-input
                        type="textarea"
                        v-model="model.trnmod.swiadd.lcrgod"
                        maxlength="65"
                        show-word-limit
wangna committed
46
                        placeholder="请输入目前修改为"
liuxin committed
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
                    ></c-input>
                    <template slot="footer">
                        <c-button size="small" type="primary" icon="el-icon-search">
                        </c-button>
                    </template>
                </c-fullbox>
            </el-form-item>
        </c-col>
    </div>
</template>
<script>
import Api from "~/service/Api";
import commonProcess from "~/mixin/commonProcess";
import CodeTable from "~/config/CodeTable";
import Event from "~/model/Detame/Event";

export default {
    inject: ["root"],
    props: ["model", "codes"],
    mixins: [commonProcess],
    data() {
        return {};
    },
    methods: { ...Event },
    created: function () {},
};
</script>
<style>
</style>