Commit b5f0c715 by peiqiQQQ

修改

1 parent f74493ff
......@@ -966,15 +966,15 @@ export default {
},
viewItem(row) {
this.ruleForm.let1 = row.elementName
this.ruleForm.let2 = row.archiLevelId
this.ruleForm.let3 = row.archiBelongId
this.ruleForm.let2 = row.archiLevelId + ''
this.ruleForm.let3 = row.archiBelongId + ''
this.ruleForm.let4 = row.content
this.ruleForm.let5 = row.eaLevel
this.ruleForm.let6 = row.color
this.ruleForm.definition = row.definition
this.ruleForm.referenceRelationship = row.referenceRelationship
this.ruleForm.example = row.example
this.ruleForm.scope = row.scope
this.ruleForm.scope = row.scope + ''
this.is_add_edit = 'view'
this.elementId = row.elementId
this.state = row.state
......
......@@ -172,6 +172,13 @@
</template>
</el-table-column>
<el-table-column
prop="viewCode"
label="视图编码"
width="150"
align="center"
show-overflow-tooltip
></el-table-column>
<el-table-column
prop="content"
label="视图描述"
width="150"
......@@ -329,6 +336,18 @@
></el-option>
</el-select>
</el-form-item>
<el-form-item v-if="this.openType == 'edit' || this.openType == 'view'" class="cross1" label="视图编码:" prop="viewCode">
<el-input
type="textarea"
:rows="1"
maxlength="200"
disabled
show-word-limit
placeholder="请输入内容"
class="dialog_form_item_content"
v-model="formData.viewCode"
></el-input>
</el-form-item>
<el-form-item class="cross1" label="视图描述:" prop="content">
<el-input
type="textarea"
......@@ -1076,6 +1095,8 @@ export default {
this.viewId = item.viewId
this.getDicyTable()
this.formData = item
this.formData.archiLevelId = this.formData.archiLevelId + ''
this.formData.archiBelongId = this.formData.archiBelongId + ''
this.transferValue1 = this.formData.archiEleId
.split(',')
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!