| | |
| | | <template> |
| | | <el-dialog :visible.sync="dialogVisible" title="标准物质验收记录" width="70%"> |
| | | <!-- <el-steps :active="currentStep" finish-status="success"> |
| | | <el-steps :active="currentStep" finish-status="success"> |
| | | <el-step class="cursor-pointer" v-for="(item, index) in steps" :key="index" :title="item"> |
| | | </el-step> |
| | | </el-steps> --> |
| | | <!-- <el-form :model="model" label-width="140px" size="small">--> |
| | | <!-- <Step1 :model.sync="model"></Step1>--> |
| | | <!-- </el-form>--> |
| | | </el-steps> |
| | | <el-form :model="model" label-width="140px" size="small"> |
| | | <Step1 :model.sync="model"></Step1> |
| | | </el-form> |
| | | <span slot="footer" class="dialog-footer"> |
| | | <el-button @click="dialogVisible = false">取 消</el-button> |
| | | <el-button type="primary" @click="submit">保 存</el-button> |
| | |
| | | </template> |
| | | |
| | | <script> |
| | | // import Step1 from './Step/Step1.vue' |
| | | import Step1 from './Step1.vue' |
| | | export default { |
| | | components: { |
| | | // Step1 |
| | | Step1 |
| | | }, |
| | | data() { |
| | | return { |
| | | dialogVisible: false, |
| | | currentStep: 0, // 步骤条显示第几步 |
| | | // steps: ['提交', '开箱验收复核', '安装验收检查', '安装验收复核', '验收核查', '验收核查审核'], |
| | | steps: ['提交', '开箱验收复核', '安装验收检查', '安装验收复核', '验收核查', '验收核查审核'], |
| | | model: { |
| | | acceptance: { |
| | | id: undefined, |