716\715 bug

This commit is contained in:
gaoyuanwei 2022-07-26 15:47:48 +08:00
parent 09f65b44ed
commit 072bf90913
5 changed files with 50 additions and 10 deletions

View File

@ -104,12 +104,12 @@
@click="taskHandle(scope.row)"
>{{ $t('manage') }}</el-button
>
<el-button
<!-- <el-button
type="text"
size="small"
@click="taskDetail(scope.row)"
>{{ $t('process.viewFlowImage') }}</el-button
>
> -->
</template>
</el-table-column>
</el-table>

View File

@ -104,12 +104,12 @@
@click="taskHandle(scope.row)"
>{{ $t('manage') }}</el-button
>
<el-button
<!-- <el-button
type="text"
size="small"
@click="taskDetail(scope.row)"
>{{ $t('process.viewFlowImage') }}</el-button
>
> -->
</template>
</el-table-column>
</el-table>

View File

@ -104,12 +104,12 @@
@click="taskHandle(scope.row)"
>{{ $t('manage') }}</el-button
>
<el-button
<!-- <el-button
type="text"
size="small"
@click="taskDetail(scope.row)"
>{{ $t('process.viewFlowImage') }}</el-button
>
> -->
</template>
</el-table-column>
</el-table>

View File

@ -104,12 +104,12 @@
@click="taskHandle(scope.row)"
>{{ $t('manage') }}</el-button
>
<el-button
<!-- <el-button
type="text"
size="small"
@click="taskDetail(scope.row)"
>{{ $t('process.viewFlowImage') }}</el-button
>
> -->
</template>
</el-table-column>
</el-table>

View File

@ -21,6 +21,7 @@
:label="
itemsonson.type != ' multipleAdditions' ? itemsonson.name : ''
"
v-show="!(itemsonson.name==='平台地址'|| itemsonson.name==='SDK安装包' || itemsonson.name==='接口请求方式' || itemsonson.name==='服务接口')"
>
<div
class="videoAndImgCss"
@ -57,12 +58,25 @@
<!-- <div>{{ multipleAdditionsItem }}</div> -->
</div>
</div>
<el-input
<el-input
v-else
v-model="itemsonson.note1"
disabled="disabled"
></el-input>
</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 v-else-if="itemson.name === '算法优势'">
<div
@ -153,7 +167,13 @@ export default {
dataList: [],
dataView: [],
//
unit: ''
unit: '',
//
showDocking: false,
// SDK
showSDK: false,
//
showInterface: false
}
},
watch: {
@ -322,6 +342,26 @@ export default {
this.dataForm,
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
}
}
})
}
})
}
})
}
}
}