按钮调整

This commit is contained in:
shijingjing
2022-03-24 14:43:08 +08:00
parent 41db227afa
commit cee2946842
2 changed files with 27 additions and 8 deletions

View File

@@ -121,7 +121,10 @@
<div style="height: 56px"></div>
<div class="btn" @click="toResult">处理结果</div>
<div class="btn" @click="toResult">
<span v-if="type==0">走访核实</span>
<span v-else>处理结果</span>
</div>
</div>
</template>
@@ -130,7 +133,7 @@
export default {
data() {
return {
type: 0,
}
},
methods: {
@@ -254,6 +257,7 @@ export default {
background: #3192F4;
color: #FFF;
z-index: 9;
font-size: 32px;
}
}
</style>