001扫码.md 260 B

	// 扫一扫
	scanCode() {
		const self = this
		uni.scanCode({
			success: function (res) {
					console.log('条码类型:' + res.scanType);
					console.log('条码内容:' + res.result);
					self.scanObj = JSON.stringify(res)
				}
		})
	},