publish.vue 5.0 KB
<template>
	<view class="main">
		<view class="top" style="justify-content: space-between;margin-bottom: 40rpx;">
			<p class="title">发布<text style="color: #3375D8;">出租</text></p>
			<view class="" style="width: 128rpx;">
				<u-button @click="goPub" text="发布" size="small" type="primary"></u-button>
			</view>
		</view>
		<view class="" style="padding: 0 32rpx;">
			<u--form labelPosition="left" :model="model1" :rules="rules" ref="uForm">
				<u-form-item label="设备信息" labelWidth="200rpx" prop="userInfo.name" borderBottom ref="item1">
					<u--input v-model="model1.userInfo.name" placeholder="请选择设备/品牌/型号" border="none"></u--input>
				</u-form-item>
				<u-form-item label="设备停放地" labelWidth="200rpx" prop="userInfo.sex" borderBottom @click="showSex = true;" ref="item1">
					<u--input v-model="model1.userInfo.sex" disabled disabledColor="#ffffff" placeholder="请选择"
						border="none"></u--input>
					<u-icon slot="right" name="arrow-right"></u-icon>
				</u-form-item>
				<u-form-item label="出厂年限" labelWidth="200rpx" prop="userInfo.sex" borderBottom @click="showSex = true;" ref="item1">
					<u--input v-model="model1.userInfo.sex" disabled disabledColor="#ffffff" placeholder="请选择"
						border="none"></u--input>
					<u-icon slot="right" name="arrow-right"></u-icon>
				</u-form-item>
				<u-form-item label="表显小时数" labelWidth="200rpx" prop="userInfo.name" borderBottom ref="item1">
					<u--input v-model="model1.userInfo.name" border="none"></u--input>
				</u-form-item>
				<u-form-item label="意向价格"  labelWidth="200rpx" prop="userInfo.name" borderBottom ref="item1">
					<u--input v-model="model1.userInfo.name" border="none"></u--input>
				</u-form-item>
				<u-form-item label="设备亮点" labelWidth="200rpx" prop="userInfo.name" labelPosition="top" borderBottom ref="item1">
					<u--input v-model="model1.userInfo.name" border="none"></u--input>
				</u-form-item>
				<u-form-item label="设备照片" labelWidth="200rpx" prop="userInfo.name" labelPosition="top"  borderBottom ref="item1">
					<view style="display: flex; flex-wrap: wrap; justify-content: space-evenly; margin-top: 40rpx;" class="">
						<view class="box" v-for="item in 10">
							<u-upload
									:fileList="fileList1"
									@afterRead="afterRead"
									@delete="deletePic"
									name="1"
									multiple
									:maxCount="10"
								></u-upload>
								<p>整机左前45°</p>
						</view>
					</view>
					
				</u-form-item>
			</u--form>
			<u-action-sheet :show="showSex" :actions="actions" title="请选择性别" description="如果选择保密会报错"
				@close="showSex = false" @select="sexSelect">
			</u-action-sheet>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				model1: {
					showSex: false,
					userInfo: {
						name: '',
						sex: '',
					},
				},
				fileList1: [],
				actions: [{
						name: '男',
					},
					{
						name: '女',
					},
					{
						name: '保密',
					},
				],
				rules: {
					'userInfo.name': {
						type: 'string',
						required: true,
						message: '请填写姓名',
						trigger: ['blur', 'change']
					},
					'userInfo.sex': {
						type: 'string',
						max: 1,
						required: true,
						message: '请选择男或女',
						trigger: ['blur', 'change']
					},
				},
			}
		},
		methods: {
			goPub(){
				
			},
			deletePic(event) {
				this[`fileList${event.name}`].splice(event.index, 1)
			},
			// 新增图片
			async afterRead(event) {
				// 当设置 multiple 为 true 时, file 为数组格式,否则为对象格式
				let lists = [].concat(event.file)
				let fileListLen = this[`fileList${event.name}`].length
				lists.map((item) => {
					this[`fileList${event.name}`].push({
						...item,
						status: 'uploading',
						message: '上传中'
					})
				})
				for (let i = 0; i < lists.length; i++) {
					const result = await this.uploadFilePromise(lists[i].url)
					let item = this[`fileList${event.name}`][fileListLen]
					this[`fileList${event.name}`].splice(fileListLen, 1, Object.assign(item, {
						status: 'success',
						message: '',
						url: result
					}))
					fileListLen++
				}
			},
			uploadFilePromise(url) {
				return new Promise((resolve, reject) => {
					let a = uni.uploadFile({
						url: 'http://192.168.2.21:7001/upload', // 仅为示例,非真实的接口地址
						filePath: url,
						name: 'file',
						formData: {
							user: 'test'
						},
						success: (res) => {
							setTimeout(() => {
								resolve(res.data.data)
							}, 1000)
						}
					});
				})
			},
		},
		onReady() {
			//如果需要兼容微信小程序,并且校验规则中含有方法等,只能通过setRules方法设置规则。
			this.$refs.uForm.setRules(this.rules)
		},
	}
</script>

<style scoped>
	.main{
		padding: 32rpx 24rpx;
		background-color: white;
	}
.top{
	display: flex;
	align-items: center;
}
.title{
	 color: #000000e6;
	 font-size: 56rpx;
	 font-weight: 600;
}
.box{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-right: 18rpx;
}
</style>