调整注意事项样式,改体检人身份证为生日,更换返回首页图标,后台隐藏上传视频按钮

main
yanzai 1 year ago
parent 2db552425b
commit a2fe429677

@ -156,14 +156,17 @@
// shallowRef
const editorRef = shallowRef()
// HTML
const valueHtml = ref(null)
const toolbarConfig = {}
const toolbarConfig = {excludeKeys:["insertVideo"],insertKeys:{index:4,keys:"fontSize"}}
const editorConfig = {
placeholder: '请输入内容...',
MENU_CONF: {},
}
let mode = 'default' // 'simple\default'
let mode = 'simple' // 'simple\default'
// uploadImage

@ -141,4 +141,7 @@
.input_line_input_wrapper {
width: 500rpx;
}
</style>
<style>
@import "@/static/iconfont.css";
</style>

@ -6,7 +6,8 @@
@mousedown="dragButton"
@touchstart="dragButton"
>
<uni-icons @click="goHome" type="home" size="30" color="#fff"></uni-icons>
<uni-icons @click="goHome" style="padding-right: 10rpx;" custom-prefix="iconfont" type="icon-subdirectory_arrow_left" size="30" color="#fff"></uni-icons>
</div>
</template>

@ -111,7 +111,7 @@ onShow(() => {
>{{ i.sex === 1 ? "男" : "女" }}</view
>
</view>
<view class="person_idnumber_wrapper">{{ i.id_number }}</view>
<view class="person_idnumber_wrapper">{{ i.birthday }}</view>
</view>
<view v-if="!!i.relation" class="person_type_wrapper">{{
i.relation

@ -438,7 +438,7 @@
<view v-if="tabIndex == 1">
<!-- 体检须知 -->
<view style="box-shadow: 0rpx 0rpx 10rpx 0rpx rgba(0, 0, 0, 0.04)"
class="rounded-15rpx mt-20rpx bg-#fff py-40rpx px-14rpx box-border flex-col flex">
class="rounded-15rpx mt-20rpx bg-#fff py-40rpx px-30rpx box-border flex-col flex">
<view class="text-#2E2E2E text-30rpx font-500 text-center">
体检须知
</view>
@ -478,7 +478,7 @@
<image class="w-5rpx h-26rpx" src="@/static/assets/slices/tjcol2x.png"></image>
体检注意事项
</view>
<view v-html="notice.content" class="text-28rpx"></view>
<view v-html="notice.content" class="text-28rpx" style="line-height: 50rpx;"></view>
</view>
</view>
</view>

@ -64,7 +64,7 @@
<view class="page_wrapper">
<TitleComponent title="预约须知"></TitleComponent>
<view class="readme_wrapper">
<view v-html="tip_content"></view>
<view v-html="tip_content" style="line-height: 60rpx;background-color: #fff;padding: 30rpx;"></view>
</view>
<view @click="toFormClick()" class="button_wrapper">立即预约</view>
<view style="height: 100rpx;"></view>

@ -0,0 +1,16 @@
@font-face {
font-family: "iconfont"; /* Project id 4743543 */
src: url('/static/iconfont.ttf') format('truetype');
}
.iconfont {
font-family: "iconfont" !important;
font-size: 16px;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-subdirectory_arrow_left:before {
content: "\e7b7";
}

Binary file not shown.
Loading…
Cancel
Save