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

View File

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

View File

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