Commit 1663eead authored by zhanglw's avatar zhanglw

生产计划

parent 4c83436d
......@@ -93,14 +93,21 @@
<el-table-column property="minePoint" label="采区名称" align="center"></el-table-column>
<el-table-column property="plan" label="计划量(T)" align="center">
<template slot-scope="scope">
<el-input placeholder="请输入计划量(T)" v-model="scope.row.plan" clearable :disabled="planValIsReadonly"></el-input>
<el-input placeholder="请输入计划量(T)" v-model="scope.row.plan" clearable></el-input>
<!-- <el-input placeholder="请输入计划量(T)" v-model="scope.row.plan" clearable :disabled="planValIsReadonly"></el-input>-->
</template>
</el-table-column>
<el-table-column property="actualProduction" label="实际产出(T)" align="center"></el-table-column>
<el-table-column property="actualProduction" label="实际产出(T)" align="center">
<template slot-scope="scope">
<el-input placeholder="请输入实际产出(T)" v-model="scope.row.actualProduction" clearable></el-input>
</template>
</el-table-column>
<!-- <el-table-column property="actualProduction" label="实际产出(T)" align="center"></el-table-column>-->
</el-table>
<div slot="footer" class="dialog-footer">
<el-button @click="cancelPlanView()">取消</el-button>
<el-button v-show="!planValIsReadonly" type="primary" @click="submitPlanView()">提交</el-button>
<!-- <el-button v-show="!planValIsReadonly" type="primary" @click="submitPlanView()">提交</el-button>-->
<el-button type="primary" @click="submitPlanView()">提交</el-button>
</div>
</el-dialog>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment