|
@@ -199,7 +199,7 @@ function closePreImg(){
|
|
|
// 活动类型切换
|
|
|
function firstTypeChange() {
|
|
|
formData.childTypeVal = "";
|
|
|
- this.typeList.forEach((item) => {
|
|
|
+ typeList.value.forEach((item) => {
|
|
|
if (item.ActivityTypeId == formData.firstTypeVal) {
|
|
|
childTypeList.value = item.ChildList||[];
|
|
|
formData.childTypeVal=childTypeList.value?.[0].ActivityTypeId||''
|
|
@@ -574,7 +574,7 @@ function handleSubmit(e){
|
|
|
</el-form-item>
|
|
|
|
|
|
<el-form-item label="参会地址" label-width="105px" prop="address" v-if="showAddressOrLimitPeople">
|
|
|
- <div style="display:flex;justify-content: space-between;">
|
|
|
+ <div style="display:flex;justify-content: space-between;width:100%;">
|
|
|
<el-select
|
|
|
v-model="formData.City"
|
|
|
placeholder="请选择城市"
|
|
@@ -586,7 +586,7 @@ function handleSubmit(e){
|
|
|
:value="item">
|
|
|
</el-option>
|
|
|
</el-select>
|
|
|
- <el-input style="width:84%;display:inline-block" placeholder="请输入详细地址" v-model="formData.Address"></el-input>
|
|
|
+ <el-input style="width:84%;" placeholder="请输入详细地址" v-model="formData.Address"></el-input>
|
|
|
</div>
|
|
|
|
|
|
</el-form-item>
|
|
@@ -702,7 +702,7 @@ function handleSubmit(e){
|
|
|
<!-- 图片预览 -->
|
|
|
<el-image-viewer
|
|
|
v-if="showPreImg"
|
|
|
- :on-close="closePreImg"
|
|
|
+ @close="closePreImg"
|
|
|
:url-list="preImgList" />
|
|
|
</div>
|
|
|
</template>
|