|
@@ -154,8 +154,8 @@
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
|
|
|
|
<el-radio-group v-model="activeLabel" v-for="(item, index) in otherInfo" size="mini">
|
|
<el-radio-group v-model="activeLabel" v-for="(item, index) in otherInfo" size="mini">
|
|
- <el-radio-button class="success" :label="item.subtype">[[item.subtype]]</el-radio-button>
|
|
|
|
- <el-radio-button class="success" :label="item.subtype + '-附件'">附件</el-radio-button>
|
|
|
|
|
|
+ <el-radio-button class="success" :label="item.id">[[item.subtype]]</el-radio-button>
|
|
|
|
+ <el-radio-button class="success" :label="item.id + '-附件'">附件</el-radio-button>
|
|
</el-radio-group>
|
|
</el-radio-group>
|
|
|
|
|
|
<el-radio-group v-if="moreInfo&&moreInfo.length > 0" size="mini">
|
|
<el-radio-group v-if="moreInfo&&moreInfo.length > 0" size="mini">
|
|
@@ -357,6 +357,7 @@
|
|
|
|
|
|
</body>
|
|
</body>
|
|
<script>
|
|
<script>
|
|
|
|
+ console.log({{ .T.otherInfo }})
|
|
var allCheckFields = {{.T.fields}};//本次需标注的所有字段
|
|
var allCheckFields = {{.T.fields}};//本次需标注的所有字段
|
|
// 页面数据
|
|
// 页面数据
|
|
var pageDataMap = {
|
|
var pageDataMap = {
|
|
@@ -795,7 +796,7 @@
|
|
} else {//匹配原公告关联信息
|
|
} else {//匹配原公告关联信息
|
|
var tempS = this.activeLabel.split('-')
|
|
var tempS = this.activeLabel.split('-')
|
|
var isFile = tempS.length === 2
|
|
var isFile = tempS.length === 2
|
|
- var otherData = this.otherInfo.filter(v => v.subtype == tempS[0])
|
|
|
|
|
|
+ var otherData = this.otherInfo.filter(v => v.id == tempS[0])
|
|
if (otherData.length > 0) {
|
|
if (otherData.length > 0) {
|
|
tempData.title = otherData[0].title
|
|
tempData.title = otherData[0].title
|
|
tempData.html = otherData[0].detail
|
|
tempData.html = otherData[0].detail
|