Commit 1ad6d7d4 authored by jiaxu.yan's avatar jiaxu.yan

fix: 70760

parent a74a5787
......@@ -8,6 +8,6 @@ ENV = 'production'
VUE_APP_BASE_API = '/prod-api'
# 图片服务器地址
VUE_APP_IMAGE_API ='/'
VUE_APP_IMAGE_API ='https://10.12.48.78'
VUE_APP_CLIENT_API = 'http://10.12.48.78:8090'
......@@ -92,7 +92,7 @@
width: calc(100% - 100px);
}
.standard-title {
width: calc(100% - 10px);
width: calc(70% - 40px);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
......
......@@ -233,8 +233,16 @@
<span class="title-content">确定车型试验范围</span>
</div>
<div class="img-item">
<div class="img-label" style="margin-top: 20px">选择测试场景</div>
<div class="img-label" style="margin-top: 20px">选择测试场景</div>
<div class="img-label" style="margin-top: 20px">
选择测试场景
<footer-button
style="width: 80px; height: 25px"
type="primary"
@click="selectAll"
>
全部选择
</footer-button>
</div>
</div>
<!-- 测试场景 -->
<div class="test-scenario-container">
......@@ -460,6 +468,14 @@ export default {
},
closeAll() {
this.activeNames = []
}, // 全选
selectAll() {
this.model.testScenarioList.forEach(obj => {
obj.check = true
})
this.selectedScenario = this.model.testScenarioList.map(obj => {
return obj.value
})
}
}
}
......
......@@ -10,7 +10,7 @@
预览表单
</header-button>
<header-button
v-if="model.systemReviewTask.leaderId == userId"
v-if="model.carReviewTask.leaderId == userId"
type="default"
icon="check"
@click="submitFrom()"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment