| | |
| | | placeholder="请输入内容" |
| | | v-model="textarea1" |
| | | :autosize="{ minRows: minRows, maxRows: maxRows }" |
| | | style="font-size: 16px;" |
| | | ></el-input> |
| | | </el-form-item> |
| | | </el-form> |
| | |
| | | this.qingkong(); |
| | | this.$refs.Pre.open = false; |
| | | this.tableAll = row; |
| | | let dict = "dict_tjtype" |
| | | getDicts(dict).then(res => { |
| | | if (res.code == 200) { |
| | | res.data.forEach((item) => { |
| | | if (this.tableAll.tjCategory == item.dictValue) { |
| | | this.tableAll.tjCategory = item.dictLabel; |
| | | } |
| | | }); |
| | | } else { |
| | | throw new Error('获取体检类型字典失败'); |
| | | } |
| | | }) |
| | | this.tjproject = "0"; |
| | | this.tjNumber = this.tableAll.tjNumber; |
| | | |