|
@@ -1,7 +1,10 @@
|
|
|
<template>
|
|
|
<div class="fenghui">
|
|
|
<div class="swith">
|
|
|
- <div class="title" @click="showLange = true">{{ langObjT[langType] }}</div>
|
|
|
+ <div class="title" @click="showLange = true">
|
|
|
+ {{ langObjT[langType] }}
|
|
|
+ <van-icon name="arrow-down" />
|
|
|
+ </div>
|
|
|
<van-popup v-model:show="showLange" destroy-on-close round position="bottom">
|
|
|
<van-picker :model-value="[langType]" :columns="langObj" @cancel="showLange = false"
|
|
|
@confirm="langChange" />
|
|
@@ -103,12 +106,7 @@ const langType = ref('zh');
|
|
|
const preview = ref('');
|
|
|
const showLange = ref(false);
|
|
|
const showCardType = ref(false);
|
|
|
-const cardTypeList = ref([
|
|
|
- { text: '嘉宾', value: '嘉宾' },
|
|
|
- { text: '媒体', value: '媒体' },
|
|
|
- { text: '参展商', value: '参展商' },
|
|
|
- { text: '普通观众', value: '普通观众' },
|
|
|
-])
|
|
|
+const cardTypeList = ref([])
|
|
|
const isFile = () => {
|
|
|
return from.photo && from.photo.length;
|
|
|
};
|