12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- Component({
-
- properties: {
- showLeaveNum: {
- type: Boolean,
- value: false
- },
- showTime:{
- type: Boolean,
- value: true
- },
- showFlag:{
- type: Boolean,
- value: true
- },
- showBtn:{
- type:Boolean,
- value: false,
- },
- showRadio:{
- type:Boolean,
- value: false,
- },
- date: {
- type: String
- },
- list: {
- type: Array,
- value: []
- }
- },
-
- data: {
- },
-
- methods: {
- toPages:function(e){
- wx.navigateTo({
- url: e.currentTarget.dataset.url,
- })
- },
- getLeaveNumList: function () {
- wx.navigateTo({
- url: '/pages/leaveRecord/leaveRecord',
- })
- },
- radioChange:function(e){
- console.log(JSON.stringify(e.detail.value))
- },
- }
- })
|