|
@@ -0,0 +1,42 @@
|
|
|
+<route lang="json5" type="page">
|
|
|
+{
|
|
|
+ layout: 'default',
|
|
|
+ style: {
|
|
|
+ navigationBarTitleText: '就诊预约',
|
|
|
+ },
|
|
|
+}
|
|
|
+</route>
|
|
|
+
|
|
|
+<template>
|
|
|
+ <view class="appointment">
|
|
|
+ <view class="appointment-form">
|
|
|
+ <uv-form labelPosition="left" :model="formList" ref="formRef">
|
|
|
+ <uv-form-item label="选择医疗项目" prop="userInfo.name" borderBottom>
|
|
|
+ <uv-input border="none"></uv-input>
|
|
|
+ </uv-form-item>
|
|
|
+ <uv-form-item label="选择检查时间" prop="userInfo.name" borderBottom>
|
|
|
+ <uv-input border="none"></uv-input>
|
|
|
+ </uv-form-item>
|
|
|
+ </uv-form>
|
|
|
+ </view>
|
|
|
+ <view class="appointment-footer flex items-center justify-around mt-80rpx">
|
|
|
+ <uv-button type="error" text="增加一个新项目"></uv-button>
|
|
|
+ <uv-button type="primary" text="提交"></uv-button>
|
|
|
+ </view>
|
|
|
+ </view>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script lang="ts" setup>
|
|
|
+//
|
|
|
+const formList = ref([
|
|
|
+ {
|
|
|
+ name: '姓名',
|
|
|
+ value: '张三',
|
|
|
+ type: 'text',
|
|
|
+ },
|
|
|
+])
|
|
|
+</script>
|
|
|
+
|
|
|
+<style lang="scss" scoped>
|
|
|
+//
|
|
|
+</style>
|