716\715 bug
This commit is contained in:
parent
09f65b44ed
commit
072bf90913
|
@ -104,12 +104,12 @@
|
||||||
@click="taskHandle(scope.row)"
|
@click="taskHandle(scope.row)"
|
||||||
>{{ $t('manage') }}</el-button
|
>{{ $t('manage') }}</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
type="text"
|
type="text"
|
||||||
size="small"
|
size="small"
|
||||||
@click="taskDetail(scope.row)"
|
@click="taskDetail(scope.row)"
|
||||||
>{{ $t('process.viewFlowImage') }}</el-button
|
>{{ $t('process.viewFlowImage') }}</el-button
|
||||||
>
|
> -->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
|
@ -104,12 +104,12 @@
|
||||||
@click="taskHandle(scope.row)"
|
@click="taskHandle(scope.row)"
|
||||||
>{{ $t('manage') }}</el-button
|
>{{ $t('manage') }}</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
type="text"
|
type="text"
|
||||||
size="small"
|
size="small"
|
||||||
@click="taskDetail(scope.row)"
|
@click="taskDetail(scope.row)"
|
||||||
>{{ $t('process.viewFlowImage') }}</el-button
|
>{{ $t('process.viewFlowImage') }}</el-button
|
||||||
>
|
> -->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
|
@ -104,12 +104,12 @@
|
||||||
@click="taskHandle(scope.row)"
|
@click="taskHandle(scope.row)"
|
||||||
>{{ $t('manage') }}</el-button
|
>{{ $t('manage') }}</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
type="text"
|
type="text"
|
||||||
size="small"
|
size="small"
|
||||||
@click="taskDetail(scope.row)"
|
@click="taskDetail(scope.row)"
|
||||||
>{{ $t('process.viewFlowImage') }}</el-button
|
>{{ $t('process.viewFlowImage') }}</el-button
|
||||||
>
|
> -->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
|
@ -104,12 +104,12 @@
|
||||||
@click="taskHandle(scope.row)"
|
@click="taskHandle(scope.row)"
|
||||||
>{{ $t('manage') }}</el-button
|
>{{ $t('manage') }}</el-button
|
||||||
>
|
>
|
||||||
<el-button
|
<!-- <el-button
|
||||||
type="text"
|
type="text"
|
||||||
size="small"
|
size="small"
|
||||||
@click="taskDetail(scope.row)"
|
@click="taskDetail(scope.row)"
|
||||||
>{{ $t('process.viewFlowImage') }}</el-button
|
>{{ $t('process.viewFlowImage') }}</el-button
|
||||||
>
|
> -->
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
</el-table>
|
</el-table>
|
||||||
|
|
|
@ -21,6 +21,7 @@
|
||||||
:label="
|
:label="
|
||||||
itemsonson.type != ' multipleAdditions' ? itemsonson.name : ''
|
itemsonson.type != ' multipleAdditions' ? itemsonson.name : ''
|
||||||
"
|
"
|
||||||
|
v-show="!(itemsonson.name==='平台地址'|| itemsonson.name==='SDK安装包' || itemsonson.name==='接口请求方式' || itemsonson.name==='服务接口')"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="videoAndImgCss"
|
class="videoAndImgCss"
|
||||||
|
@ -63,6 +64,19 @@
|
||||||
disabled="disabled"
|
disabled="disabled"
|
||||||
></el-input>
|
></el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
<el-form-item
|
||||||
|
v-for="itemsonson in itemson.children"
|
||||||
|
:key="itemsonson.name"
|
||||||
|
:label="
|
||||||
|
itemsonson.type != ' multipleAdditions' ? itemsonson.name : ''
|
||||||
|
"
|
||||||
|
v-show="((itemsonson.name==='平台地址'&&showDocking)|| (itemsonson.name==='SDK安装包'&&showSDK) || (itemsonson.name==='接口请求方式'&&showInterface) || (itemsonson.name==='服务接口'&&showInterface))"
|
||||||
|
>
|
||||||
|
<el-input
|
||||||
|
v-model="itemsonson.note1"
|
||||||
|
disabled="disabled"
|
||||||
|
></el-input>
|
||||||
|
</el-form-item>
|
||||||
</div>
|
</div>
|
||||||
<div v-else-if="itemson.name === '算法优势'">
|
<div v-else-if="itemson.name === '算法优势'">
|
||||||
<div
|
<div
|
||||||
|
@ -153,7 +167,13 @@ export default {
|
||||||
dataList: [],
|
dataList: [],
|
||||||
dataView: [],
|
dataView: [],
|
||||||
// 归属部门
|
// 归属部门
|
||||||
unit: ''
|
unit: '',
|
||||||
|
// 平台对接
|
||||||
|
showDocking: false,
|
||||||
|
// SDK
|
||||||
|
showSDK: false,
|
||||||
|
// 调用接口
|
||||||
|
showInterface: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
|
@ -322,6 +342,26 @@ export default {
|
||||||
this.dataForm,
|
this.dataForm,
|
||||||
this.dataView
|
this.dataView
|
||||||
)
|
)
|
||||||
|
// 智能算法-使用方式-3种方式联动
|
||||||
|
this.dataView.children.map(val => {
|
||||||
|
if (val.name === '部署与使用') {
|
||||||
|
val.children.map(val => {
|
||||||
|
if (val.name === '使用方式') {
|
||||||
|
val.children.map(val => {
|
||||||
|
if (val.name === '使用方式') {
|
||||||
|
if (val.note1 === 'SDK') {
|
||||||
|
this.showSDK = true
|
||||||
|
} else if (val.note1 === '平台对接') {
|
||||||
|
this.showDocking = true
|
||||||
|
} else if (val.note1 === '调用接口') {
|
||||||
|
this.showInterface = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue