调整工程目录

This commit is contained in:
aixianling
2021-12-15 14:37:20 +08:00
parent 76b0abe1ea
commit dd1aef6fb3
107 changed files with 17044 additions and 16746 deletions

View File

@@ -1,12 +1,13 @@
<template>
<div class="closemsg">
<img :src="imgSrc" alt="" />
<img :src="imgSrc" alt=""/>
<text>{{ text }}</text>
<u-button
type="primary"
:custom-style="{ width: '100%', borderRadius: '4px', marginTop: '48px' }"
@click="goBack"
>{{ btnText }}</u-button
type="primary"
:custom-style="{ width: '100%', borderRadius: '4px', marginTop: '48px' }"
@click="goBack"
>{{ btnText }}
</u-button
>
<back></back>
</div>
@@ -17,7 +18,7 @@ import back from '../../components/AiBack'
export default {
name: 'CloseMsg',
components: { back },
components: {back},
data() {
return {
flag: true
@@ -44,7 +45,7 @@ export default {
return this.flag ? '确定' : '查看详情'
},
imgSrc() {
return this.$cdn+'other/'+(this.flag?'kztcg.png':'kztsb.png')
return this.$cdn + 'other/' + (this.flag ? 'kztcg.png' : 'kztsb.png')
}
}
}