修改bug
Showing
3 changed files
with
7 additions
and
5 deletions
| ... | @@ -27,7 +27,7 @@ | ... | @@ -27,7 +27,7 @@ |
| 27 | <el-icon size="16" style="position: relative;top: 2px" color="#929AA0"> | 27 | <el-icon size="16" style="position: relative;top: 2px" color="#929AA0"> |
| 28 | <LocationFilled/> | 28 | <LocationFilled/> |
| 29 | </el-icon> | 29 | </el-icon> |
| 30 | {{form.rearks}} | 30 | {{form.remarks}} |
| 31 | </el-row> | 31 | </el-row> |
| 32 | </el-card> | 32 | </el-card> |
| 33 | 33 | ... | ... |
| ... | @@ -30,7 +30,7 @@ | ... | @@ -30,7 +30,7 @@ |
| 30 | <el-icon size="16" style="position: relative;top: 2px" color="#929AA0"> | 30 | <el-icon size="16" style="position: relative;top: 2px" color="#929AA0"> |
| 31 | <LocationFilled/> | 31 | <LocationFilled/> |
| 32 | </el-icon> | 32 | </el-icon> |
| 33 | {{formData.rearks}} | 33 | {{formData.remarks}} |
| 34 | 34 | ||
| 35 | </el-row> | 35 | </el-row> |
| 36 | <hr style="border:1px solid #D3D1F6 "> | 36 | <hr style="border:1px solid #D3D1F6 "> |
| ... | @@ -46,7 +46,8 @@ | ... | @@ -46,7 +46,8 @@ |
| 46 | 46 | ||
| 47 | <div style="flex: 1"> | 47 | <div style="flex: 1"> |
| 48 | <!-- <div style="margin-bottom: 20px">预约时间 <span class="span">09:00~12:00</span> </div>--> | 48 | <!-- <div style="margin-bottom: 20px">预约时间 <span class="span">09:00~12:00</span> </div>--> |
| 49 | <div style="margin-bottom: 20px">{{ language==0?'上门化妆':'Home makeup' }} <span class="span">{{ formDatas.goHome==1?'是':'否' }}</span></div> | 49 | <div v-if="language==0" style="margin-bottom: 20px">上门化妆 <span class="span">{{ formDatas.goHome==1?'是':'否' }}</span></div> |
| 50 | <div v-else style="margin-bottom: 20px">上门化妆 <span class="span">{{ formDatas.goHome==1?'YES':'NO' }}</span></div> | ||
| 50 | <div >{{ language==0?' 价格':"Price" }} <span class="sign">{{language==0? '¥'+formDatas.mealPrice:'€'+formDatas.mealPriceEn }}</span></div> | 51 | <div >{{ language==0?' 价格':"Price" }} <span class="sign">{{language==0? '¥'+formDatas.mealPrice:'€'+formDatas.mealPriceEn }}</span></div> |
| 51 | </div> | 52 | </div> |
| 52 | 53 | ||
| ... | @@ -198,7 +199,7 @@ function submit() { | ... | @@ -198,7 +199,7 @@ function submit() { |
| 198 | return | 199 | return |
| 199 | } | 200 | } |
| 200 | 201 | ||
| 201 | if (!timeVal.value.id)return proxy.$modal.msgError('请选择预约时间!', ) | 202 | if (!timeVal.value.id)return proxy.$modal.msgError( language.value==0?'请选择预约时间!':"Please select an appointment time!" ) |
| 202 | proxy.$refs['formRef'].validate(valid=>{ | 203 | proxy.$refs['formRef'].validate(valid=>{ |
| 203 | if (valid){ | 204 | if (valid){ |
| 204 | form.value.total=money.value | 205 | form.value.total=money.value | ... | ... |
| ... | @@ -45,7 +45,8 @@ | ... | @@ -45,7 +45,8 @@ |
| 45 | 45 | ||
| 46 | <div style="flex: 1"> | 46 | <div style="flex: 1"> |
| 47 | <!-- <div style="margin-bottom: 20px">预约时间 <span class="span">09:00~12:00</span> </div>--> | 47 | <!-- <div style="margin-bottom: 20px">预约时间 <span class="span">09:00~12:00</span> </div>--> |
| 48 | <div style="margin-bottom: 20px;">{{ language==0?'上门摄影':'Door-to-door photography' }} <span class="span">{{ formDatas.goHome==1?'是':'否' }}</span></div> | 48 | <div v-if="language==0" style="margin-bottom: 20px;">上门摄影 <span class="span">{{ formDatas.goHome==1?'是':'否' }}</span></div> |
| 49 | <div v-else style="margin-bottom: 20px;">Door-to-door photography <span class="span">{{ formDatas.goHome==1?'YES':'NO' }}</span></div> | ||
| 49 | <div >{{ language==0?'价格':"Price" }} <span class="sign">{{language==0? '¥'+formDatas.photoPrice:'€'+formDatas.photoPriceEn }}</span></div> | 50 | <div >{{ language==0?'价格':"Price" }} <span class="sign">{{language==0? '¥'+formDatas.photoPrice:'€'+formDatas.photoPriceEn }}</span></div> |
| 50 | </div> | 51 | </div> |
| 51 | 52 | ... | ... |
-
Please register or sign in to post a comment