添加了?
This commit is contained in:
parent
60d7a9905e
commit
da5ad1202c
@ -304,6 +304,10 @@ export default {
|
|||||||
cshipinyaoqiu2: "Video size cannot exceed 500M",
|
cshipinyaoqiu2: "Video size cannot exceed 500M",
|
||||||
shangchuanwancheng: "Please wait for the file to be uploaded",
|
shangchuanwancheng: "Please wait for the file to be uploaded",
|
||||||
zhanghaocunzai: "account already exists",
|
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:"",
|
shichangtishi:"",
|
||||||
renshutishi: '',
|
renshutishi: '',
|
||||||
tixianzhu: "",
|
tixianzhu: "",
|
||||||
|
@ -304,6 +304,10 @@ export default {
|
|||||||
cshipinyaoqiu2: "视频大小不能超过500m",
|
cshipinyaoqiu2: "视频大小不能超过500m",
|
||||||
shangchuanwancheng: "请等待文件上传完成",
|
shangchuanwancheng: "请等待文件上传完成",
|
||||||
zhanghaocunzai: "帐号已存在",
|
zhanghaocunzai: "帐号已存在",
|
||||||
|
shuoruguize: "收入规则说明",
|
||||||
|
shouru1: "直播收入=实际参加学生数x参加时长x单价",
|
||||||
|
shouru2: "单价:1对1,20欧/小时;1对N,10欧/小时/人(1<N<=4)",
|
||||||
|
shouru3: "请注意,货币一旦修改,不能变动",
|
||||||
shichangtishi:"",
|
shichangtishi:"",
|
||||||
renshutishi: '',
|
renshutishi: '',
|
||||||
tixianzhu:"",
|
tixianzhu:"",
|
||||||
|
@ -157,7 +157,7 @@
|
|||||||
<div class="mingxilist" v-if="ifchina && listindex==2">
|
<div class="mingxilist" v-if="ifchina && listindex==2">
|
||||||
<div class="mingxitop">
|
<div class="mingxitop">
|
||||||
<div class="tabs">
|
<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)">
|
<div :class="tabindex == 0 ? 'on' : ''" @click="tabchange(0)">
|
||||||
{{lan.$t('quanbu')}}
|
{{lan.$t('quanbu')}}
|
||||||
@ -201,6 +201,12 @@
|
|||||||
<a-pagination v-if="salelist.total" v-model:current="page" :total="salelist.total" :showLessItems="true" @change="pagechange"/>
|
<a-pagination v-if="salelist.total" v-model:current="page" :total="salelist.total" :showLessItems="true" @change="pagechange"/>
|
||||||
</div>
|
</div>
|
||||||
</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>
|
<NavBottom class="navbottom"></NavBottom>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
@ -228,6 +234,7 @@ export default defineComponent({
|
|||||||
const state=ref<number>(0)
|
const state=ref<number>(0)
|
||||||
const dates=ref<Array<string>>(["",""])
|
const dates=ref<Array<string>>(["",""])
|
||||||
const page = ref(1);
|
const page = ref(1);
|
||||||
|
const visible = ref(true);
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
console.log(useRoute().query)
|
console.log(useRoute().query)
|
||||||
listindex.value=1
|
listindex.value=1
|
||||||
@ -311,7 +318,8 @@ export default defineComponent({
|
|||||||
del,
|
del,
|
||||||
store,
|
store,
|
||||||
pagechange,
|
pagechange,
|
||||||
lan
|
lan,
|
||||||
|
visible
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
@ -341,7 +349,7 @@ export default defineComponent({
|
|||||||
color: #111;
|
color: #111;
|
||||||
padding: 11px 0;
|
padding: 11px 0;
|
||||||
.tabtitle {
|
.tabtitle {
|
||||||
width: 60px;
|
// width: 60px;
|
||||||
margin-right: 30px;
|
margin-right: 30px;
|
||||||
}
|
}
|
||||||
> div {
|
> div {
|
||||||
@ -354,6 +362,15 @@ export default defineComponent({
|
|||||||
color: #08ae98;
|
color: #08ae98;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
>span{
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
>img{
|
||||||
|
margin-left: 8px;
|
||||||
|
width: 13px;
|
||||||
|
height: 13px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.on {
|
.on {
|
||||||
color: #08ae98;
|
color: #08ae98;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
Loading…
Reference in New Issue
Block a user