SOURCE

console 命令行工具 X clear

                    
>
console
<template>
	<view class="page-W981w2">
		<view class="flex-QiqCwVZq">
			<uv-text text="文本内容"></uv-text>
		</view>
		<view class="flex-g0AjI5PI">
			<uv-datetime-picker v-model:show="showMEoHiV" :show.sync="showMEoHiV" ref="datetimePicker_TxzZx"></uv-datetime-picker>
		</view>
	</view>
</template>
<script>
import { mapState } from "vuex";
import store from "@/store";
export default {
  computed: {},
  data() {
    return {
      globalData: getApp().globalData,
      showMEoHiV: false,
      showPick: false,
    };
  },
  watch: {},
  // 页面加载时执行
  // options 里面有上个页面传下来的值
  onLoad(options) {
    console.log("界面加载");
    this.globalData.department.dcc1221 = 333;
    this.addd44 = "1113";
  },
  // 页面显示时执行 会多次执行
  onShow() {},
  // 页面渲染完成
  onReady() {},
  methods: {
    method_2(e) {
      console.log("e111991", e);
      this.text = e.value[0];
    },
  },
};

</script>