|
@@ -36,7 +36,7 @@
|
|
|
</el-form-item>
|
|
|
<!-- 分类条目 -->
|
|
|
<el-form-item style="float:right;" v-if="user.company.packageProject == 1 && (user.role == 1||user.role == 2||user.role == 5)">
|
|
|
- <el-link type="primary" :underline="false" @click="showClfDialog = true">分类</el-link>
|
|
|
+ <el-link type="primary" :underline="false" @click="showClfDialog = true">分类管理</el-link>
|
|
|
</el-form-item>
|
|
|
<!-- 项目成本基线条目 -->
|
|
|
<el-form-item style="float:right;" v-if="user.company.packageProject == 1 && (user.role == 1||user.role == 2||user.role == 5)">
|
|
@@ -426,7 +426,7 @@
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<!-- 分类条目配置 -->
|
|
|
- <el-dialog title="分类条目配置" show-header="false" v-if="showClfDialog" :visible.sync="showClfDialog" :close-on-click-modal="false" customClass="customWidth" width="500px">
|
|
|
+ <el-dialog title="项目分类条目管理" show-header="false" v-if="showClfDialog" :visible.sync="showClfDialog" :close-on-click-modal="false" customClass="customWidth" width="500px">
|
|
|
<el-table :data="baseClfList" highlight-current-row height="400" style="width: 100%;">
|
|
|
<el-table-column type="index" width="60" label="序号">
|
|
|
<template slot-scope="scope" >
|
|
@@ -444,13 +444,13 @@
|
|
|
</el-table>
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
<el-button type="primary" @click="showClfDialog = false" >关闭</el-button>
|
|
|
- <el-button type="primary" @click="addNewClf()" >新增成本项</el-button>
|
|
|
+ <el-button type="primary" @click="addNewClf()" >新增分类项</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<!-- 新增/编辑 分类条目 -->
|
|
|
<el-dialog title="新增/修改分类条目" v-if="addClfDialog" :visible.sync="addClfDialog" :close-on-click-modal="false" customClass="customWidth" width="500px">
|
|
|
<el-form ref="form2" :model="addClf" :rules="rules" label-width="100px">
|
|
|
- <el-form-item label="成本项名称" prop="name">
|
|
|
+ <el-form-item label="分类名称" prop="name">
|
|
|
<el-input v-model="addClf.name" placeholder="请输入名称" clearable></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|