|
@@ -6,7 +6,15 @@
|
|
|
<template v-if="configList && configList.length > 0">
|
|
|
<div style="max-height: 270px; overflow: auto">
|
|
|
<div v-for="item in configList" :key="item.id" class="field-box">
|
|
|
- <template v-if="item.taskFiledType == 'domain' || item.taskFiledType == 'select' || item.taskFiledType == 'tree'">
|
|
|
+ <!-- 城市选择 -->
|
|
|
+ <template v-if="item.taskFiledType === 'tree'">
|
|
|
+ <div class="title-value">{{ item.taskFiledValue }}:</div>
|
|
|
+ <div class="desc-value">
|
|
|
+ {{ wmTaskContent[item.taskFiledKey] || '--' }}
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+
|
|
|
+ <template v-if="item.taskFiledType == 'domain' || item.taskFiledType == 'select'">
|
|
|
<div class="title-value">{{ item.taskFiledValue }}:</div>
|
|
|
<div class="desc-value" v-show="!(item.taskTypeId == '19' && item.taskFiledKey == 'temp3')">
|
|
|
{{ getDesc(item) }}
|
|
@@ -265,9 +273,6 @@ export default {
|
|
|
},
|
|
|
getInfo(id) {
|
|
|
this.getTaskInfoById(id);
|
|
|
- },
|
|
|
- mounted() {
|
|
|
- this.getTaskInfoById(this.id);
|
|
|
}
|
|
|
}
|
|
|
};
|