Commit 1f213d1f authored by 沈翠玲's avatar 沈翠玲

isExsitTool -> isExistTool

parent 99a7c1de
...@@ -108,9 +108,9 @@ ...@@ -108,9 +108,9 @@
{{ scope.row.isPackage === '1'? '是': '否' }} {{ scope.row.isPackage === '1'? '是': '否' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="是否用版" align="center" prop="isExsitTool"> <el-table-column label="是否用版" align="center" prop="isExistTool">
<template slot-scope="scope"> <template slot-scope="scope">
{{ scope.row.isExsitTool === '1'? '是': '否' }} {{ scope.row.isExistTool === '1'? '是': '否' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true"/> <el-table-column label="备注" align="center" prop="remark" :show-overflow-tooltip="true"/>
...@@ -205,8 +205,8 @@ ...@@ -205,8 +205,8 @@
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="是否用版" prop="isExsitTool"> <el-form-item label="是否用版" prop="isExistTool">
<el-radio-group v-model="form.isExsitTool" :disabled="optType=='view'"> <el-radio-group v-model="form.isExistTool" :disabled="optType=='view'">
<el-radio <el-radio
v-for="dict in dict.type.sys_yes_non" v-for="dict in dict.type.sys_yes_non"
:key="dict.value" :key="dict.value"
...@@ -283,7 +283,7 @@ export default { ...@@ -283,7 +283,7 @@ export default {
title: "", title: "",
form: { form: {
isPackage: '0', isPackage: '0',
isExsitTool: '0' isExistTool: '0'
}, },
// 是否显示弹出层 // 是否显示弹出层
open: false, open: false,
...@@ -346,7 +346,7 @@ export default { ...@@ -346,7 +346,7 @@ export default {
updateTime: null updateTime: null
}; };
this.$set(this.form, 'isPackage', '0') this.$set(this.form, 'isPackage', '0')
this.$set(this.form, 'isExsitTool', '0') this.$set(this.form, 'isExistTool', '0')
this.autoGenFlag = false; this.autoGenFlag = false;
// this.resetForm("form"); // this.resetForm("form");
}, },
......
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