|
@@ -42,10 +42,15 @@
|
|
|
<label>出场体温</label>
|
|
|
<div class="vongi-container flew-sp flew-items">
|
|
|
<div class="mui-col-xs-8">
|
|
|
- <p class="vongi-progressbar">
|
|
|
- <span></span>
|
|
|
- </p>
|
|
|
- <div class="vongi-range"></div>
|
|
|
+<!-- <p class="mui-progressbar vongi-progressbar">-->
|
|
|
+<!-- <span></span>-->
|
|
|
+<!-- </p>-->
|
|
|
+<!-- <div class="vongi-range"></div>-->
|
|
|
+
|
|
|
+ <div class="mui-input-row mui-input-range">
|
|
|
+
|
|
|
+ <input type="range" min="0" max="100">
|
|
|
+ </div>
|
|
|
</div>
|
|
|
<span>36.3℃</span>
|
|
|
</div>
|
|
@@ -80,8 +85,56 @@
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-</script>
|
|
|
+ require('$project/assets/js/mui.picker.min.js');
|
|
|
+ import Common from '$project/components/Common.vue'
|
|
|
+ import Loading from '$project/components/Loading.vue'
|
|
|
+ import TopHeader from '$project/components/TopHeader.vue'
|
|
|
+ import {
|
|
|
+ mapGetters,
|
|
|
+ mapMutations
|
|
|
+ } from 'vuex'
|
|
|
+ export default {
|
|
|
+ name: 'Master',
|
|
|
+ components: {
|
|
|
+ Common,
|
|
|
+ Loading,
|
|
|
+ TopHeader,
|
|
|
+
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ isLoading: false,
|
|
|
+
|
|
|
|
|
|
+ }
|
|
|
+ },
|
|
|
+ created() {},
|
|
|
+ methods: {
|
|
|
+
|
|
|
+ asynCallBack() {
|
|
|
+
|
|
|
+ },
|
|
|
+ },
|
|
|
+ mounted() {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ },
|
|
|
+ destroyed() {
|
|
|
+
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+
|
|
|
+ ...mapGetters({
|
|
|
+ openId: 'wx_openid',
|
|
|
+ token: 'token',
|
|
|
+ person_data: 'person_data',
|
|
|
+ person_popedom: 'person_popedom',
|
|
|
+ menu_list: 'menu_list'
|
|
|
+ })
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|
|
|
<style scoped src="$project/assets/css/xpwyfyy.css"></style>
|
|
|
<style>
|
|
|
</style>
|