hookehuyr

fix 抄送节点可编辑不显示

...@@ -142,7 +142,7 @@ ...@@ -142,7 +142,7 @@
142 > 142 >
143 <el-col :span="12">字段</el-col> 143 <el-col :span="12">字段</el-col>
144 <el-col :span="6">可见</el-col> 144 <el-col :span="6">可见</el-col>
145 - <el-col :span="6">可编辑</el-col> 145 + <el-col v-if="state.detailModel.control !== 'cc'" :span="6">可编辑</el-col>
146 </el-row> 146 </el-row>
147 <el-row v-if="!state.search_auth_value" style="width: 100%; padding-left: 10px;"> 147 <el-row v-if="!state.search_auth_value" style="width: 100%; padding-left: 10px;">
148 <el-col :span="12" style="color: #009688">全选</el-col> 148 <el-col :span="12" style="color: #009688">全选</el-col>
...@@ -153,7 +153,7 @@ ...@@ -153,7 +153,7 @@
153 label="" 153 label=""
154 size="large" 154 size="large"
155 /></el-col> 155 /></el-col>
156 - <el-col :span="6" style="padding-left: 5px;" 156 + <el-col v-if="state.detailModel.control !== 'cc'" :span="6" style="padding-left: 5px;"
157 ><el-checkbox 157 ><el-checkbox
158 @change="onAuthAllEditChange" 158 @change="onAuthAllEditChange"
159 v-model="state.auth_all_edit" 159 v-model="state.auth_all_edit"
...@@ -175,7 +175,7 @@ ...@@ -175,7 +175,7 @@
175 size="large" 175 size="large"
176 @change="onAuthVisibleChange(field, index)" 176 @change="onAuthVisibleChange(field, index)"
177 /></el-col> 177 /></el-col>
178 - <el-col v-if="field.show" :span="6" style="padding-left: 5px;" 178 + <el-col v-if="field.show && state.detailModel.control !== 'cc'" :span="6" style="padding-left: 5px;"
179 ><el-checkbox 179 ><el-checkbox
180 v-model="field.editable.checked" 180 v-model="field.editable.checked"
181 :disabled="field.editable.disabled" 181 :disabled="field.editable.disabled"
......