Browse Source

添加国家搜索

zhaogongxue 2 months ago
parent
commit
2723e2980c

+ 29 - 7
pageA/counter.vue

@@ -92,10 +92,14 @@ color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
 			</view>
 		</view>
 		<!-- 地址选择 -->
-<!-- 		<u-picker :show="show" ref="uPicker" keyName="name" :columns="columns" @confirm="confirm"
+		<!-- 		<u-picker :show="show" ref="uPicker" keyName="name" :columns="columns" @confirm="confirm"
 			@change="changeHandler"></u-picker> -->
-		<u-picker :show="show" ref="uPicker" keyName="name" :columns="columns"  @confirm="confirm"
-			@change="changeHandler"></u-picker>
+		<u-picker :show="show" ref="uPicker" keyName="name" :columns="columns" @confirm="confirm"
+			@change="changeHandler" @cancel='close'>
+			<view class="" slot="input">
+				<u--input placeholder="请输入想要搜索的地址" border="surround" v-model="keyword" @change="changeinput"></u--input>
+			</view>
+		</u-picker>
 		<!-- 跨境物流 -->
 		<u-popup round='28' :show="logshow" @close="close">
 			<view class="pop">
@@ -136,7 +140,9 @@ color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
 				money: '',
 				length: '',
 				width: '',
-				height: ''
+				height: '',
+				keyword:'',
+				newlist:[]
 			};
 		},
 		onLoad() {
@@ -161,6 +167,18 @@ color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
 			}
 		},
 		methods: {
+			changeinput(e) {
+				console.log(e);
+				console.log(this.columns);
+				this.columns = this.newlist
+				var list = [[]]
+				this.columns[0].forEach(item => {
+					if (item.name.indexOf(e) != -1) {
+						list[0].push(item)
+					}
+				})
+				this.columns = list
+			},
 			//商品类型
 			goodtype() {
 				uni.$u.http.get('/api/express-goods-type', ).then((res) => {
@@ -180,7 +198,7 @@ color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
 				} else {
 					this.$u.toast(this.i18n.selectcity)
 				}
-			},  
+			},
 			//物流计算器
 			calculate() {
 				if (this.container_id == '') {
@@ -229,6 +247,7 @@ color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
 				this.columnData = []
 				uni.$u.http.get(`/api/container/country`).then((res) => {
 					this.columns.push(res)
+					this.newlist = this.columns
 				});
 				console.log(this.columns);
 				// uni.$u.http.get('/api/area/tree', {
@@ -258,6 +277,8 @@ color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
 			},
 			close() {
 				this.logshow = false
+				this.show = false
+				this.keyword=''
 			},
 			//切换商品类型
 			good(item, idx) {
@@ -337,13 +358,14 @@ color: rgba(34, 34, 34, 0.5);">{{i18n.accurately}}</text>
 			// 	}
 			// }
 			confirm(e) {
+				this.keyword =''
 				console.log('confirm', e)
 				this.show = false
 				if (this.type == 0) {
-					this.original = e.value[0].name 
+					this.original = e.value[0].name
 					// console.log(e.value[0]);
 				} else {
-					this.bourn = e.value[0].name 
+					this.bourn = e.value[0].name
 					// this.province_id = e.value[1].id
 					this.country_id = e.value[0].id
 				}

+ 60 - 13
pageC/internationalAddress/internationalAddress.vue

@@ -15,7 +15,7 @@
 				<u-form-item labelWidth="150rpx" :label="i18n.name" borderBottom ref="item1">
 					<u--input v-model="model1.userInfo.name" :placeholder="i18n.goods" border="none"></u--input>
 				</u-form-item>
-<!-- 
+				<!-- 
 				<view class="item u-flex ">
 					<text class="left">{{i18n.phone}}</text>
 					<view class="right" style="display: flex;">
@@ -29,16 +29,16 @@
 
 
 				<u-form-item labelWidth="150rpx" :label="i18n.phone" borderBottom ref="item1">
-<!-- 					<u--input v-model="model1.userInfo.phone" :placeholder="i18n.pleasePhoneNumber"
+					<!-- 					<u--input v-model="model1.userInfo.phone" :placeholder="i18n.pleasePhoneNumber"
 						border="none"></u--input> -->
-						<view class="right" style="display: flex;">
-							<input style="width: 100rpx;" type="text" placeholder="(+86)"
-								v-model="model1.userInfo.phonecode" />
-							<!-- <u--input style="width: 100rpx;" v-model="model1.userInfo.phonecode" placeholder="(+86)" border="none"></u--input> -->
-							<text style="margin-right: 20rpx;">-</text>
-							<u--input v-model="model1.userInfo.phone" :placeholder="i18n.pleasePhone"
-								border="none"></u--input>
-						</view>
+					<view class="right" style="display: flex;">
+						<input style="width: 100rpx;" type="text" placeholder="(+86)"
+							v-model="model1.userInfo.phonecode" />
+						<!-- <u--input style="width: 100rpx;" v-model="model1.userInfo.phonecode" placeholder="(+86)" border="none"></u--input> -->
+						<text style="margin-right: 20rpx;">-</text>
+						<u--input v-model="model1.userInfo.phone" :placeholder="i18n.pleasePhone"
+							border="none"></u--input>
+					</view>
 				</u-form-item>
 				<u-form-item labelWidth="150rpx" :label="i18n.postalCode" borderBottom ref="item1">
 					<u--input v-model="model1.userInfo.zip_code" :placeholder="i18n.PleacePostalCode"
@@ -82,9 +82,17 @@
 		</view>
 
 		<u-picker :show="show" :columns="cityList" keyName="name" @confirm="countrycConfirm" @cancel="show = false"
-			:closeOnClickOverlay="true" @close="close"></u-picker>
+			:closeOnClickOverlay="true" @close="close">
+			<view class="" slot="input">
+				<u--input placeholder="请输入想要搜索的地址" border="surround" v-model="keyword1" @change="changecity"></u--input>
+			</view>
+		</u-picker>
 		<u-picker :show="showDialog" :columns="columns" keyName="name" @cancel="showDialog = false"
-			:closeOnClickOverlay="true" @confirm="confirm" @close="close"></u-picker>
+			:closeOnClickOverlay="true" @confirm="confirm" @close="close">
+			<view class="" slot="input">
+				<u--input placeholder="请输入想要搜索的地址" border="surround" v-model="keyword" @change="changeinput"></u--input>
+			</view>
+		</u-picker>
 	</view>
 </template>
 
@@ -123,6 +131,10 @@
 				cityList: [
 					[]
 				], //选中国家之后的城市数据
+				newlist: [],
+				newcitylist: [
+					[]
+				],
 				addressId: "", //编辑的地址id
 				rules: {
 					"userInfo.name": {
@@ -139,6 +151,8 @@
 						trigger: ["blur", "change"],
 					},
 				},
+				keyword:'',
+				keyword1:''
 			};
 		},
 		onLoad(options) {
@@ -152,6 +166,33 @@
 			}
 		},
 		methods: {
+			changeinput(e) {
+				console.log(e);
+				console.log(this.columns);
+				this.columns = this.newlist
+				var list = [
+					[]
+				]
+				this.columns[0].forEach(item => {
+					if (item.name.indexOf(e) != -1) {
+						list[0].push(item)
+					}
+				})
+				this.columns = list
+			},
+			changecity(e) {
+				this.cityList = this.newcitylist
+				console.log(this.cityList);
+				var list = [
+					[]
+				]
+				this.cityList[0].forEach(item => {
+					if (item.name.indexOf(e) != -1) {
+						list[0].push(item)
+					}
+				})
+				this.cityList = list
+			},
 			//回显数据
 			getAddressDetail(id) {
 				uni.setNavigationBarTitle({
@@ -185,7 +226,7 @@
 					email: "",
 					companyName: "",
 					zip_code: "",
-					phonecode:'',
+					phonecode: '',
 				};
 			},
 			//选择国家
@@ -194,6 +235,7 @@
 				this.model1.userInfo.country = this.country.name;
 				this.getCityList(this.country.id);
 				this.showDialog = false;
+				this.keyword = ''
 			},
 			//打开选择城市的弹窗
 			openCity() {
@@ -214,6 +256,7 @@
 				this.selectedCity = e.value[0];
 				this.model1.userInfo.city = this.selectedCity.name;
 				this.show = false;
+				this.keyword1 = ''
 			},
 			submit() {
 				const obj = {
@@ -245,11 +288,14 @@
 			close() {
 				this.show = false;
 				this.showDialog = false;
+				this.keyword = ''
+				this.keyword1 = ''
 			},
 			// 获取所有国家
 			getCountryList() {
 				uni.$u.http.get(`/api/area?is_domestic=0&pid=`).then((res) => {
 					this.columns = [res];
+					this.newlist = [res];
 				});
 			},
 			// getCountryList() {
@@ -261,6 +307,7 @@
 			getCityList(num) {
 				uni.$u.http.get(`/api/area/tree?pid=${num}`).then((res) => {
 					this.cityList = [res];
+					this.newcitylist = [res];
 				});
 			},
 		},

+ 190 - 213
uview-ui/components/u-picker/u-picker.vue

@@ -1,52 +1,25 @@
 <template>
-	<u-popup
-		:show="show"
-		@close="closeHandler"
-	>
+	<u-popup :show="show" @close="closeHandler">
 		<view class="u-picker">
-			<u-toolbar
-				v-if="showToolbar"
-				:cancelColor="cancelColor"
-				:confirmColor="confirmColor"
-				:cancelText="cancelText"
-				:confirmText="confirmText"
-				:title="title"
-				@cancel="cancel"
-				@confirm="confirm"
-			></u-toolbar>
-			<picker-view
-				class="u-picker__view"
-				:indicatorStyle="`height: ${$u.addUnit(itemHeight)}`"
-				:value="innerIndex"
-				:immediateChange="immediateChange"
-				:style="{
+			<u-toolbar v-if="showToolbar" :cancelColor="cancelColor" :confirmColor="confirmColor"
+				:cancelText="cancelText" :confirmText="confirmText" :title="title" @cancel="cancel"
+				@confirm="confirm"></u-toolbar>
+			<slot name="input"></slot>
+			<picker-view class="u-picker__view" :indicatorStyle="`height: ${$u.addUnit(itemHeight)}`"
+				:value="innerIndex" :immediateChange="immediateChange" :style="{
 					height: `${$u.addUnit(visibleItemCount * itemHeight)}`
-				}"
-				@change="changeHandler"
-			>
-				<picker-view-column
-					v-for="(item, index) in innerColumns"
-					:key="index"
-					class="u-picker__view__column"
-				>
-					<text
-						v-if="$u.test.array(item)"
-						class="u-picker__view__column__item u-line-1"
-						v-for="(item1, index1) in item"
-						:key="index1"
-						:style="{
+				}" @change="changeHandler">
+				<picker-view-column v-for="(item, index) in innerColumns" :key="index" class="u-picker__view__column">
+					<text v-if="$u.test.array(item)" class="u-picker__view__column__item u-line-1"
+						v-for="(item1, index1) in item" :key="index1" :style="{
 							height: $u.addUnit(itemHeight),
 							lineHeight: $u.addUnit(itemHeight),
 							fontWeight: index1 === innerIndex[index] ? 'bold' : 'normal',
 							display: 'block'
-						}"
-					>{{ getItemText(item1) }}</text>
+						}">{{ getItemText(item1) }}</text>
 				</picker-view-column>
 			</picker-view>
-			<view
-				v-if="loading"
-				class="u-picker--loading"
-			>
+			<view v-if="loading" class="u-picker--loading">
 				<u-loading-icon mode="circle"></u-loading-icon>
 			</view>
 		</view>
@@ -54,186 +27,190 @@
 </template>
 
 <script>
-/**
- * u-picker
- * @description 选择器
- * @property {Boolean}			show				是否显示picker弹窗(默认 false )
- * @property {Boolean}			showToolbar			是否显示顶部的操作栏(默认 true )
- * @property {String}			title				顶部标题
- * @property {Array}			columns				对象数组,设置每一列的数据
- * @property {Boolean}			loading				是否显示加载中状态(默认 false )
- * @property {String | Number}	itemHeight			各列中,单个选项的高度(默认 44 )
- * @property {String}			cancelText			取消按钮的文字(默认 '取消' )
- * @property {String}			confirmText			确认按钮的文字(默认 '确定' )
- * @property {String}			cancelColor			取消按钮的颜色(默认 '#909193' )
- * @property {String}			confirmColor		确认按钮的颜色(默认 '#3c9cff' )
- * @property {String | Number}	visibleItemCount	每列中可见选项的数量(默认 5 )
- * @property {String}			keyName				选项对象中,需要展示的属性键名(默认 'text' )
- * @property {Boolean}			closeOnClickOverlay	是否允许点击遮罩关闭选择器(默认 false )
- * @property {Array}			defaultIndex		各列的默认索引
- * @property {Boolean}			immediateChange		是否在手指松开时立即触发change事件(默认 false )
- * @event {Function} close		关闭选择器时触发
- * @event {Function} cancel		点击取消按钮触发
- * @event {Function} change		当选择值变化时触发
- * @event {Function} confirm	点击确定按钮,返回当前选择的值
- */
-import props from './props.js';
-export default {
-	name: 'u-picker',
-	mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
-	data() {
-		return {
-			// 上一次选择的列索引
-			lastIndex: [],
-			// 索引值 ,对应picker-view的value
-			innerIndex: [],
-			// 各列的值
-			innerColumns: [],
-			// 上一次的变化列索引
-			columnIndex: 0,
-		}
-	},
-	watch: {
-		// 监听默认索引的变化,重新设置对应的值
-		defaultIndex: {
-			immediate: true,
-			handler(n) {
-				this.setIndexs(n, true)
-			}
-		},
-		// 监听columns参数的变化
-		columns: {
-			immediate: true,
-			handler(n) {
-				this.setColumns(n)
-			}
-		},
-	},
-	methods: {
-		// 获取item需要显示的文字,判别为对象还是文本
-		getItemText(item) {
-			if (uni.$u.test.object(item)) {
-				return item[this.keyName]
-			} else {
-				return item
-			}
-		},
-		// 关闭选择器
-		closeHandler() {
-			if (this.closeOnClickOverlay) {
-				this.$emit('close')
+	/**
+	 * u-picker
+	 * @description 选择器
+	 * @property {Boolean}			show				是否显示picker弹窗(默认 false )
+	 * @property {Boolean}			showToolbar			是否显示顶部的操作栏(默认 true )
+	 * @property {String}			title				顶部标题
+	 * @property {Array}			columns				对象数组,设置每一列的数据
+	 * @property {Boolean}			loading				是否显示加载中状态(默认 false )
+	 * @property {String | Number}	itemHeight			各列中,单个选项的高度(默认 44 )
+	 * @property {String}			cancelText			取消按钮的文字(默认 '取消' )
+	 * @property {String}			confirmText			确认按钮的文字(默认 '确定' )
+	 * @property {String}			cancelColor			取消按钮的颜色(默认 '#909193' )
+	 * @property {String}			confirmColor		确认按钮的颜色(默认 '#3c9cff' )
+	 * @property {String | Number}	visibleItemCount	每列中可见选项的数量(默认 5 )
+	 * @property {String}			keyName				选项对象中,需要展示的属性键名(默认 'text' )
+	 * @property {Boolean}			closeOnClickOverlay	是否允许点击遮罩关闭选择器(默认 false )
+	 * @property {Array}			defaultIndex		各列的默认索引
+	 * @property {Boolean}			immediateChange		是否在手指松开时立即触发change事件(默认 false )
+	 * @event {Function} close		关闭选择器时触发
+	 * @event {Function} cancel		点击取消按钮触发
+	 * @event {Function} change		当选择值变化时触发
+	 * @event {Function} confirm	点击确定按钮,返回当前选择的值
+	 */
+	import list from '../../libs/config/props/list.js';
+	import props from './props.js';
+	export default {
+		name: 'u-picker',
+		mixins: [uni.$u.mpMixin, uni.$u.mixin, props],
+		data() {
+			return {
+				// 上一次选择的列索引
+				lastIndex: [],
+				// 索引值 ,对应picker-view的value
+				innerIndex: [],
+				// 各列的值
+				innerColumns: [],
+				// 上一次的变化列索引
+				columnIndex: 0,
+				keyword: '',
 			}
 		},
-		// 点击工具栏的取消按钮
-		cancel() {
-			this.$emit('cancel')
-		},
-		// 点击工具栏的确定按钮
-		confirm() {
-			this.$emit('confirm', {
-				indexs: this.innerIndex,
-				value: this.innerColumns.map((item, index) => item[this.innerIndex[index]]),
-				values: this.innerColumns
-			})
+		watch: {
+			// 监听默认索引的变化,重新设置对应的值
+			defaultIndex: {
+				immediate: true,
+				handler(n) {
+					this.setIndexs(n, true)
+				}
+			},
+			// 监听columns参数的变化
+			columns: {
+				immediate: true,
+				handler(n) {
+					this.setColumns(n)
+				}
+			},
 		},
-		// 选择器某一列的数据发生变化时触发
-		changeHandler(e) {
-			const {
-				value
-			} = e.detail
-			let index = 0,
-				columnIndex = 0
-			// 通过对比前后两次的列索引,得出当前变化的是哪一列
-			for (let i = 0; i < value.length; i++) {
-				let item = value[i]
-				if (item !== (this.lastIndex[i] || 0)) { // 把undefined转为合法假值0
-					// 设置columnIndex为当前变化列的索引
-					columnIndex = i
-					// index则为变化列中的变化项的索引
-					index = item
-					break // 终止循环,即使少一次循环,也是性能的提升
+		methods: {
+			// 获取item需要显示的文字,判别为对象还是文本
+			getItemText(item) {
+				if (uni.$u.test.object(item)) {
+					return item[this.keyName]
+				} else {
+					return item
 				}
-			}
-			this.columnIndex = columnIndex
-			const values = this.innerColumns
-			// 将当前的各项变化索引,设置为"上一次"的索引变化值
-			this.setLastIndex(value)
-			this.setIndexs(value)
+			},
+			// 关闭选择器
+			closeHandler() {
+				if (this.closeOnClickOverlay) {
+					this.$emit('close')
+				}
+			},
+			// 点击工具栏的取消按钮
+			cancel() {
+				this.$emit('cancel')
+				this.keyword = ''
+			},
+			// 点击工具栏的确定按钮
+			confirm() {
+				this.keyword = ''
+				this.$emit('confirm', {
+					indexs: this.innerIndex,
+					value: this.innerColumns.map((item, index) => item[this.innerIndex[index]]),
+					values: this.innerColumns
+				})
+			},
+			// 选择器某一列的数据发生变化时触发
+			changeHandler(e) {
+				const {
+					value
+				} = e.detail
+				let index = 0,
+					columnIndex = 0
+				// 通过对比前后两次的列索引,得出当前变化的是哪一列
+				for (let i = 0; i < value.length; i++) {
+					let item = value[i]
+					if (item !== (this.lastIndex[i] || 0)) { // 把undefined转为合法假值0
+						// 设置columnIndex为当前变化列的索引
+						columnIndex = i
+						// index则为变化列中的变化项的索引
+						index = item
+						break // 终止循环,即使少一次循环,也是性能的提升
+					}
+				}
+				this.columnIndex = columnIndex
+				const values = this.innerColumns
+				// 将当前的各项变化索引,设置为"上一次"的索引变化值
+				this.setLastIndex(value)
+				this.setIndexs(value)
 
-			this.$emit('change', {
-				// #ifndef MP-WEIXIN || MP-LARK
-				// 微信小程序不能传递this,会因为循环引用而报错
-				picker: this,
-				// #endif
-				value: this.innerColumns.map((item, index) => item[value[index]]),
-				index,
-				indexs: value,
-				// values为当前变化列的数组内容
-				values,
-				columnIndex
-			})
-		},
-		// 设置index索引,此方法可被外部调用设置
-		setIndexs(index, setLastIndex) {
-			this.innerIndex = uni.$u.deepClone(index)
-			if (setLastIndex) {
-				this.setLastIndex(index)
-			}
-		},
-		// 记录上一次的各列索引位置
-		setLastIndex(index) {
-			// 当能进入此方法,意味着当前设置的各列默认索引,即为“上一次”的选中值,需要记录,是因为changeHandler中
-			// 需要拿前后的变化值进行对比,得出当前发生改变的是哪一列
-			this.lastIndex = uni.$u.deepClone(index)
-		},
-		// 设置对应列选项的所有值
-		setColumnValues(columnIndex, values) {
-			// 替换innerColumns数组中columnIndex索引的值为values,使用的是数组的splice方法
-			this.innerColumns.splice(columnIndex, 1, values)
-			// 替换完成之后将修改列之后的已选值置空
-			this.setLastIndex(this.innerIndex.slice(0,columnIndex))
-			// 拷贝一份原有的innerIndex做临时变量,将大于当前变化列的所有的列的默认索引设置为0
-			let tmpIndex = uni.$u.deepClone(this.innerIndex)
-			for (let i = 0; i < this.innerColumns.length; i++) {
-				if (i > this.columnIndex) {
-					tmpIndex[i] = 0
+				this.$emit('change', {
+					// #ifndef MP-WEIXIN || MP-LARK
+					// 微信小程序不能传递this,会因为循环引用而报错
+					picker: this,
+					// #endif
+					value: this.innerColumns.map((item, index) => item[value[index]]),
+					index,
+					indexs: value,
+					// values为当前变化列的数组内容
+					values,
+					columnIndex
+				})
+			},
+			// 设置index索引,此方法可被外部调用设置
+			setIndexs(index, setLastIndex) {
+				this.innerIndex = uni.$u.deepClone(index)
+				if (setLastIndex) {
+					this.setLastIndex(index)
 				}
-			}
-			// 一次性赋值,不能单个修改,否则无效
-			this.setIndexs(tmpIndex)
-		},
-		// 获取对应列的所有选项
-		getColumnValues(columnIndex) {
-			// 进行同步阻塞,因为外部得到change事件之后,可能需要执行setColumnValues更新列的值
-			// 索引如果在外部change的回调中调用getColumnValues的话,可能无法得到变更后的列值,这里进行一定延时,保证值的准确性
-			(async () => {
-				await uni.$u.sleep()
-			})()
-			return this.innerColumns[columnIndex]
-		},
-		// 设置整体各列的columns的值
-		setColumns(columns) {
-			this.innerColumns = uni.$u.deepClone(columns)
-			// 如果在设置各列数据时,没有被设置默认的各列索引defaultIndex,那么用0去填充它,数组长度为列的数量
-			if (this.innerIndex.length === 0) {
-				this.innerIndex = new Array(columns.length).fill(0)
+			},
+			// 记录上一次的各列索引位置
+			setLastIndex(index) {
+				// 当能进入此方法,意味着当前设置的各列默认索引,即为“上一次”的选中值,需要记录,是因为changeHandler中
+				// 需要拿前后的变化值进行对比,得出当前发生改变的是哪一列
+				this.lastIndex = uni.$u.deepClone(index)
+			},
+			// 设置对应列选项的所有值
+			setColumnValues(columnIndex, values) {
+				// 替换innerColumns数组中columnIndex索引的值为values,使用的是数组的splice方法
+				this.innerColumns.splice(columnIndex, 1, values)
+				// 替换完成之后将修改列之后的已选值置空
+				this.setLastIndex(this.innerIndex.slice(0, columnIndex))
+				// 拷贝一份原有的innerIndex做临时变量,将大于当前变化列的所有的列的默认索引设置为0
+				let tmpIndex = uni.$u.deepClone(this.innerIndex)
+				for (let i = 0; i < this.innerColumns.length; i++) {
+					if (i > this.columnIndex) {
+						tmpIndex[i] = 0
+					}
+				}
+				// 一次性赋值,不能单个修改,否则无效
+				this.setIndexs(tmpIndex)
+			},
+			// 获取对应列的所有选项
+			getColumnValues(columnIndex) {
+				// 进行同步阻塞,因为外部得到change事件之后,可能需要执行setColumnValues更新列的值
+				// 索引如果在外部change的回调中调用getColumnValues的话,可能无法得到变更后的列值,这里进行一定延时,保证值的准确性
+				(async () => {
+					await uni.$u.sleep()
+				})()
+				return this.innerColumns[columnIndex]
+			},
+			// 设置整体各列的columns的值
+			setColumns(columns) {
+				this.innerColumns = uni.$u.deepClone(columns)
+				// 如果在设置各列数据时,没有被设置默认的各列索引defaultIndex,那么用0去填充它,数组长度为列的数量
+				if (this.innerIndex.length === 0) {
+					this.innerIndex = new Array(columns.length).fill(0)
+				}
+			},
+			// 获取各列选中值对应的索引
+			getIndexs() {
+				return this.innerIndex
+			},
+			// 获取各列选中的值
+			getValues() {
+				// 进行同步阻塞,因为外部得到change事件之后,可能需要执行setColumnValues更新列的值
+				// 索引如果在外部change的回调中调用getValues的话,可能无法得到变更后的列值,这里进行一定延时,保证值的准确性
+				(async () => {
+					await uni.$u.sleep()
+				})()
+				return this.innerColumns.map((item, index) => item[this.innerIndex[index]])
 			}
 		},
-		// 获取各列选中值对应的索引
-		getIndexs() {
-			return this.innerIndex
-		},
-		// 获取各列选中的值
-		getValues() {
-			// 进行同步阻塞,因为外部得到change事件之后,可能需要执行setColumnValues更新列的值
-			// 索引如果在外部change的回调中调用getValues的话,可能无法得到变更后的列值,这里进行一定延时,保证值的准确性
-			(async () => {
-				await uni.$u.sleep()
-			})()
-			return this.innerColumns.map((item, index) => item[this.innerIndex[index]])
-		}
-	},
-}
+	}
 </script>
 
 <style lang="scss" scoped>
@@ -283,4 +260,4 @@ export default {
 			z-index: 1000;
 		}
 	}
-</style>
+</style>