时间格式 iview 4X

参考网址:


:value=“params.year” :动态传参
on-change:日期发生变化时触发 返回两个值,已经格式化后的日期,比如 2016-01-01,和当前的日期类型,比如 date,此处返回年份
format=“yyyy” 定义格式,传入参数的的格式也会是年份

data

params: {
					index: 1,
					num: 15,
					NAME: '', //水库名称
					CARD: '', //水库注册登记号
					ZT: 'null', //风控状态
					year: '2020',
				},

methods

//请求数据
			loadData(ass) {
				let _this = this;
				// if(this.params.YEAR){
				// 	this.params.YEAR = this.currentDATE();
				// }
				if (ass == 1) { //只有在点击事件的时候才会有参数,其余的额时候ass都是undefined
					this.params.index = 1;
				}
				console.log('ww', this.params);

				_this.$api.sData.search(this.params)
					// this.axios({
					// 	methods: 'get',
					// 	url: '/API/HTGL/List',
					// 	params: this.params
					// })
					.then(res => {
						this.alltotal = res.data.COUNT; //返回总条数
						if (res.status == 200 && res.data) {
							this.setData(res.data.DATA);
						}
					}).catch(err => {
						console.log(err);
					})

			},

时间格式 iview 4X_第1张图片

network
时间格式 iview 4X_第2张图片

你可能感兴趣的:(功能)