添加了?

This commit is contained in:
luyuan 2020-11-18 14:20:33 +08:00
parent 60d7a9905e
commit da5ad1202c
Signed by: theluyuan
GPG Key ID: A7972FD973317FF3
3 changed files with 28 additions and 3 deletions

View File

@ -304,6 +304,10 @@ export default {
cshipinyaoqiu2: "Video size cannot exceed 500M",
shangchuanwancheng: "Please wait for the file to be uploaded",
zhanghaocunzai: "account already exists",
shouruguize: "Description of revenue rules",
shouru1: "Live Revenue=Actual attendess x Actual duration x unit price",
shouru2: "1 on 1, 20€/hour; 1 on N, 10€/hour/person, (1<N<=4)",
shouru3: "Attention! You can only change the currency once!",
shichangtishi:"",
renshutishi: '',
tixianzhu: "",

View File

@ -304,6 +304,10 @@ export default {
cshipinyaoqiu2: "视频大小不能超过500m",
shangchuanwancheng: "请等待文件上传完成",
zhanghaocunzai: "帐号已存在",
shuoruguize: "收入规则说明",
shouru1: "直播收入=实际参加学生数x参加时长x单价",
shouru2: "单价1对120欧/小时1对N10欧/小时/人1<N<=4",
shouru3: "请注意,货币一旦修改,不能变动",
shichangtishi:"",
renshutishi: '',
tixianzhu:"",

View File

@ -157,7 +157,7 @@
<div class="mingxilist" v-if="ifchina && listindex==2">
<div class="mingxitop">
<div class="tabs">
<span class="tabtitle">{{lan.$t('mingxichaxun')}}</span>
<span class="tabtitle">{{lan.$t('mingxichaxun')}}<img src="@/static/images/wenhao.png" @click="visible = true" /></span>
<div :class="tabindex == 0 ? 'on' : ''" @click="tabchange(0)">
{{lan.$t('quanbu')}}
@ -201,6 +201,12 @@
<a-pagination v-if="salelist.total" v-model:current="page" :total="salelist.total" :showLessItems="true" @change="pagechange"/>
</div>
</div>
<a-modal v-model:visible="visible" :footer="null" :title="lan.$t('shuoruguize')" @cancel="visible = false">
<p>{{lan.$t('shouru1')}}</p>
<p>{{lan.$t('shouru2')}}</p>
<p style="color:#D12C2E">{{lan.$t('shouru3')}}</p>
</a-modal>
<NavBottom class="navbottom"></NavBottom>
</div>
</template>
@ -228,6 +234,7 @@ export default defineComponent({
const state=ref<number>(0)
const dates=ref<Array<string>>(["",""])
const page = ref(1);
const visible = ref(true);
onMounted(async () => {
console.log(useRoute().query)
listindex.value=1
@ -311,7 +318,8 @@ export default defineComponent({
del,
store,
pagechange,
lan
lan,
visible
};
},
});
@ -341,7 +349,7 @@ export default defineComponent({
color: #111;
padding: 11px 0;
.tabtitle {
width: 60px;
// width: 60px;
margin-right: 30px;
}
> div {
@ -354,6 +362,15 @@ export default defineComponent({
color: #08ae98;
}
}
>span{
display: flex;
align-items: center;
>img{
margin-left: 8px;
width: 13px;
height: 13px;
}
}
.on {
color: #08ae98;
position: relative;