|
233 | 233 | <div v-if="so._type && !so._type.includes('exclude')" class="border-top">
|
234 | 234 | <br />
|
235 | 235 | <div v-if="!so._type.includes('events')" class="border-top">
|
236 |
| - <el-form-item label="B0FieldIdentifier"> |
237 |
| - <el-select |
238 |
| - v-model="so.B0FieldIdentifier" |
239 |
| - multiple |
240 |
| - filterable |
241 |
| - allow-create |
242 |
| - default-first-option |
243 |
| - placeholder="Enter text string" |
244 |
| - size="small" |
245 |
| - style="width: 100%" |
246 |
| - @change="update(so)" |
247 |
| - > |
248 |
| - </el-select> |
249 |
| - </el-form-item> |
250 |
| - <p style="margin-left: 200px"> |
251 |
| - <small |
252 |
| - >* <b>Recommended/Optional if no IntendedFor</b>: If this sequence will be used for |
253 |
| - fieldmap correction, enter a text string of your choice. A good formatting |
254 |
| - suggestion is the "datatype_suffix[index]" format (e.g., <b>fmap_epi0</b>, |
255 |
| - <b>fmap_phasediff1</b>, etc). If another sequence will be used with this one for |
256 |
| - fieldmap correction, use the exact same text string there as well. Leave field blank |
257 |
| - if unclear.</small |
258 |
| - > |
259 |
| - </p> |
| 236 | + <div v-if="!so._type.startsWith('meg') && !so._type.startsWith('pet')" class="border-top"> |
| 237 | + <el-form-item label="B0FieldIdentifier"> |
| 238 | + <el-select |
| 239 | + v-model="so.B0FieldIdentifier" |
| 240 | + multiple |
| 241 | + filterable |
| 242 | + allow-create |
| 243 | + default-first-option |
| 244 | + placeholder="Enter text string" |
| 245 | + size="small" |
| 246 | + style="width: 100%" |
| 247 | + @change="update(so)" |
| 248 | + > |
| 249 | + </el-select> |
| 250 | + </el-form-item> |
| 251 | + <p style="margin-left: 200px"> |
| 252 | + <small |
| 253 | + >* <b>Recommended/Optional if no IntendedFor</b>: If this sequence will be used |
| 254 | + fieldmap correction, enter a text string of your choice. A good formatting |
| 255 | + suggestion is the "datatype_suffix[index]" format (e.g., <b>fmap_epi0</b>, |
| 256 | + <b>fmap_phasediff1</b>, etc). If another sequence will be used with this one for |
| 257 | + fieldmap correction, use the exact same text string there as well. Leave field |
| 258 | + if unclear.</small |
| 259 | + > |
| 260 | + </p> |
| 261 | + </div> |
260 | 262 | </div>
|
261 | 263 |
|
262 | 264 | <br />
|
263 | 265 | <div v-if="!so._type.includes('events')" class="border-top">
|
264 |
| - <el-form-item label="B0FieldSource"> |
265 |
| - <el-select |
266 |
| - v-model="so.B0FieldSource" |
267 |
| - multiple |
268 |
| - filterable |
269 |
| - allow-create |
270 |
| - default-first-option |
271 |
| - placeholder="Enter text string" |
272 |
| - size="small" |
273 |
| - style="width: 100%" |
274 |
| - @change="update(so)" |
275 |
| - > |
276 |
| - </el-select> |
277 |
| - </el-form-item> |
278 |
| - <p style="margin-left: 200px"> |
279 |
| - <small |
280 |
| - >* <b>Recommended/Optional if no IntendedFor</b>: If this sequence will be used for |
281 |
| - fieldmap correction, enter a text string of your choice. A good formatting |
282 |
| - suggestion is the "datatype_suffix" format (e.g., fmap_epi, fmap_phasediff). If |
283 |
| - another sequence will be used with this one for fieldmap correction, use the exact |
284 |
| - same text string there as well. Leave field blank if unclear.</small |
285 |
| - > |
286 |
| - </p> |
| 266 | + <div v-if="!so._type.startsWith('meg') && !so._type.startsWith('pet')" class="border-top"> |
| 267 | + <el-form-item label="B0FieldSource"> |
| 268 | + <el-select |
| 269 | + v-model="so.B0FieldSource" |
| 270 | + multiple |
| 271 | + filterable |
| 272 | + allow-create |
| 273 | + default-first-option |
| 274 | + placeholder="Enter text string" |
| 275 | + size="small" |
| 276 | + style="width: 100%" |
| 277 | + @change="update(so)" |
| 278 | + > |
| 279 | + </el-select> |
| 280 | + </el-form-item> |
| 281 | + <p style="margin-left: 200px"> |
| 282 | + <small |
| 283 | + >* <b>Recommended/Optional if no IntendedFor</b>: If this sequence will be used |
| 284 | + fieldmap correction, enter a text string of your choice. A good formatting |
| 285 | + suggestion is the "datatype_suffix" format (e.g., fmap_epi, fmap_phasediff). If |
| 286 | + another sequence will be used with this one for fieldmap correction, use the |
| 287 | + same text string there as well. Leave field blank if unclear.</small |
| 288 | + > |
| 289 | + </p> |
| 290 | + </div> |
287 | 291 | <el-form-item
|
288 | 292 | v-if="
|
289 | 293 | ['perf/asl', 'perf/m0scan'].includes(so._type) ||
|
290 | 294 | so._type.startsWith('pet') ||
|
291 | 295 | so._type.startsWith('func') ||
|
292 | 296 | so._type.startsWith('fmap') ||
|
293 | 297 | so._type.startsWith('dwi') ||
|
294 |
| - so._type.startsWith('anat') |
| 298 | + so._type.startsWith('anat') || |
| 299 | + so._type.startsWith('meg') |
295 | 300 | "
|
296 | 301 | label="Relevant Metadata"
|
297 | 302 | >
|
|
0 commit comments