hookehuyr

style(CheckinDetailPage): 调整图片宽度为100%并移除未使用的DatetimePicker组件

...@@ -44,7 +44,6 @@ declare module 'vue' { ...@@ -44,7 +44,6 @@ declare module 'vue' {
44 VanCol: typeof import('vant/es')['Col'] 44 VanCol: typeof import('vant/es')['Col']
45 VanConfigProvider: typeof import('vant/es')['ConfigProvider'] 45 VanConfigProvider: typeof import('vant/es')['ConfigProvider']
46 VanDatePicker: typeof import('vant/es')['DatePicker'] 46 VanDatePicker: typeof import('vant/es')['DatePicker']
47 - VanDatetimePicker: typeof import('vant/es')['DatetimePicker']
48 VanDialog: typeof import('vant/es')['Dialog'] 47 VanDialog: typeof import('vant/es')['Dialog']
49 VanDivider: typeof import('vant/es')['Divider'] 48 VanDivider: typeof import('vant/es')['Divider']
50 VanDropdownItem: typeof import('vant/es')['DropdownItem'] 49 VanDropdownItem: typeof import('vant/es')['DropdownItem']
......
...@@ -677,6 +677,13 @@ onMounted(async () => { ...@@ -677,6 +677,13 @@ onMounted(async () => {
677 line-height: 1.6; 677 line-height: 1.6;
678 font-size: 0.95rem; 678 font-size: 0.95rem;
679 679
680 +
681 + :deep(&) {
682 + img {
683 + width: 100%;
684 + }
685 + }
686 +
680 // 富文本内容样式 687 // 富文本内容样式
681 // :deep(.rich-content) { 688 // :deep(.rich-content) {
682 // h1, h2, h3, h4, h5, h6 { 689 // h1, h2, h3, h4, h5, h6 {
......