测试问题修改5

This commit is contained in:
zzyuan 2025-07-04 16:47:24 +08:00
parent 24a411628f
commit 6744dda6b8
3 changed files with 13 additions and 4 deletions

View File

@ -54,7 +54,7 @@
<u--input
v-model="contactInfo"
placeholder="电话号码/电子邮箱(仅工作人员可见)"
border="bottom" maxlength="11"
border="bottom" maxlength="30"
></u--input>
</view>
@ -97,6 +97,7 @@ import { pathToBase64, base64ToPath } from 'image-tools';
import { uploadBase64 } from "@/api/upload"
import config from '@/config'
import { getToken } from '@/utils/auth'
import { encryptWithSM4 } from '@/utils/sm'
export default {
data() {
return {
@ -161,7 +162,7 @@ export default {
"canteenName": this.canteenName,
"suggestionPictures": arr,
"content": this.content,
"contactTel": this.contactInfo,
"contactTel": encryptWithSM4(this.contactInfo),
"userId": uni.getStorageSync('userId')
}
console.log(param)
@ -257,6 +258,10 @@ export default {
</script>
<style lang="scss" scoped>
/deep/.u-action-sheet__item-wrap {
overflow: auto;
max-height: 50vh;
}
.feedback-page {
height:94vh;
overflow-y: auto;

View File

@ -207,6 +207,10 @@ export default {
</script>
<style lang="scss" scoped>
/deep/.u-action-sheet__item-wrap {
overflow: auto;
max-height: 50vh;
}
.rating-page {
height: 94vh;
// background-color: #ffffff;

View File

@ -263,8 +263,8 @@ export default {
{ label: '近6个月', value: 6 }
],
currentDateOption: -1,
startDate: '',
endDate: '',
startDate: undefined,
endDate: undefined,
showStartCalendar: false,
showEndCalendar: false,
orderTypes: [{id:"2",name:'预订餐'},{id:"4",name:'商城'},{id:"11",name:'线下消费'}],