2024-06-05 19:16:02 +08:00
|
|
|
|
<template>
|
|
|
|
|
<view class="hehuo_view">
|
2024-07-17 10:43:18 +08:00
|
|
|
|
<view class="advantage-title">
|
2024-08-23 14:26:09 +08:00
|
|
|
|
<image style="width: 35rpx; height: 35rpx; margin-right:10rpx; margin-top: 5rpx;" src="../../static/technician.png"></image>申请合作技师</view>
|
2024-07-17 10:43:18 +08:00
|
|
|
|
<view class="advantage-bor" style="margin-right: 10rpx;"></view>
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="text_view">
|
2024-08-14 15:48:32 +08:00
|
|
|
|
<!-- <view class="item_view">
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="item_title">服务城市 </view>
|
2024-07-30 14:17:50 +08:00
|
|
|
|
<u-input @click="goCity" type="text" v-model="city" placeholder="请输入服务城市 " />
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="xian"></view>
|
2024-08-14 15:48:32 +08:00
|
|
|
|
</view> -->
|
2024-08-26 09:56:29 +08:00
|
|
|
|
|
2024-08-14 15:48:32 +08:00
|
|
|
|
<uni-forms ref="baseForm" :disabled="true" v-if="city">
|
|
|
|
|
<uni-forms-item label="选择城市" required :disabled="true">
|
|
|
|
|
<picker class="addRess" :disabled="true" range-key="AreaName" mode="multiSelector">
|
|
|
|
|
<view class="uni-input">
|
|
|
|
|
<text>{{city}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</picker>
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
</uni-forms>
|
|
|
|
|
<uni-forms ref="baseForm" v-else>
|
|
|
|
|
<uni-forms-item label="服务城市" required>
|
|
|
|
|
<picker class="addRess" @change="bindPickerChange" @columnchange="pluginclass" :value="pickVal" :range="cityArr"
|
|
|
|
|
range-key="AreaName" mode="multiSelector">
|
|
|
|
|
<view class="qing" v-if="pickVal2.length==0">请选择城市</view>
|
|
|
|
|
<view v-else class="uni-input">
|
|
|
|
|
<text>{{cityData}}</text>
|
|
|
|
|
</view>
|
|
|
|
|
</picker>
|
|
|
|
|
</uni-forms-item>
|
|
|
|
|
</uni-forms>
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="item_view">
|
|
|
|
|
<view class="item_title">姓名</view>
|
2024-07-30 14:17:50 +08:00
|
|
|
|
<u-input type="text" v-model="userName" placeholder="请输入姓名" />
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="xian"></view>
|
2024-07-09 13:43:58 +08:00
|
|
|
|
</view>
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="item_view">
|
|
|
|
|
<view class="item_title">联系电话</view>
|
2024-07-30 14:17:50 +08:00
|
|
|
|
<u-input type="number" v-model="phone" maxlength="11" placeholder="请输入联系电话" />
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="xian"></view>
|
2024-07-09 13:43:58 +08:00
|
|
|
|
</view>
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="item_view">
|
|
|
|
|
<view class="item_title">年龄</view>
|
2024-07-30 14:17:50 +08:00
|
|
|
|
<u-input type="number" v-model="age" maxlength="11" placeholder="请输入年龄" />
|
2024-07-09 14:07:54 +08:00
|
|
|
|
<view class="xian"></view>
|
2024-06-05 19:16:02 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="item_view">
|
2024-08-23 14:26:09 +08:00
|
|
|
|
<view class="item_title" style="margin-bottom: 10px;">上传身份证正面</view>
|
2024-08-26 09:56:29 +08:00
|
|
|
|
<view class="flex" style="overflow: hidden;flex-direction: initial;">
|
|
|
|
|
<view v-if="front.length">
|
2024-06-05 19:16:02 +08:00
|
|
|
|
<view class="margin-top flex margin-right-sm">
|
|
|
|
|
<view class="flex"
|
|
|
|
|
style="width: 150upx;height: 150upx;margin-right: 10rpx;position: relative;">
|
2024-08-23 14:26:09 +08:00
|
|
|
|
<image :src="front" style="width: 100%;height: 100%;"></image>
|
2024-06-15 09:08:10 +08:00
|
|
|
|
<view style="z-index: 9;position: absolute;margin-top: -1px;right: 0px;"
|
2024-08-23 14:26:09 +08:00
|
|
|
|
@click="frontremove(index)">
|
2024-07-17 10:43:18 +08:00
|
|
|
|
<u-icon name="close-circle-fill" color="#039d88" size="50rpx"></u-icon>
|
2024-06-05 19:16:02 +08:00
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-08-26 09:56:29 +08:00
|
|
|
|
<view class="margin-top" @click="addImage()" v-else>
|
2024-06-15 09:08:10 +08:00
|
|
|
|
<view class="flex justify-center align-center margin-top-view">
|
2024-06-05 19:16:02 +08:00
|
|
|
|
<view>
|
|
|
|
|
<view class="text-center">
|
2024-06-15 09:08:10 +08:00
|
|
|
|
<image style="width: 43.06rpx;height: 38.19rpx;" src="../../static/orderDetail/img-shang.png" mode=""></image>
|
2024-06-05 19:16:02 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="text-center text-xs margin-top-xs">上传图片</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-08-26 09:56:29 +08:00
|
|
|
|
|
2024-06-05 19:16:02 +08:00
|
|
|
|
</view>
|
2024-08-23 14:26:09 +08:00
|
|
|
|
<view class="item_view">
|
|
|
|
|
<view class="item_title" style="margin-bottom: 10px;">上传身份证反面</view>
|
2024-08-26 09:56:29 +08:00
|
|
|
|
<view class="flex" style="overflow: hidden;flex-direction: initial;">
|
2024-08-23 14:26:09 +08:00
|
|
|
|
<view v-if="back.length">
|
|
|
|
|
<view class="margin-top flex margin-right-sm">
|
|
|
|
|
<view class="flex"
|
|
|
|
|
style="width: 150upx;height: 150upx;margin-right: 10rpx;position: relative;">
|
|
|
|
|
<image :src="back" style="width: 100%;height: 100%;"></image>
|
|
|
|
|
<view style="z-index: 9;position: absolute;margin-top: -1px;right: 0px;"
|
|
|
|
|
@click="frontremoves(index)">
|
|
|
|
|
<u-icon name="close-circle-fill" color="#039d88" size="50rpx"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-08-26 09:56:29 +08:00
|
|
|
|
<view class="margin-top" @click="addImageBack()" v-else>
|
2024-08-23 14:26:09 +08:00
|
|
|
|
<view class="flex justify-center align-center margin-top-view">
|
|
|
|
|
<view>
|
|
|
|
|
<view class="text-center">
|
|
|
|
|
<image style="width: 43.06rpx;height: 38.19rpx;" src="../../static/orderDetail/img-shang.png" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="text-center text-xs margin-top-xs">上传图片</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
2024-08-26 09:56:29 +08:00
|
|
|
|
|
2024-08-23 14:26:09 +08:00
|
|
|
|
</view>
|
|
|
|
|
<view class="item_view">
|
|
|
|
|
<view class="item_title" style="margin-bottom: 10px;">上传资格证书(可多张)</view>
|
2024-08-26 09:56:29 +08:00
|
|
|
|
<view class="flex" style="overflow: hidden;flex-direction: initial;">
|
2024-08-23 14:26:09 +08:00
|
|
|
|
<view class="margin-top flex margin-right-sm flex-wrap" v-if="certification.length">
|
|
|
|
|
<view class="flex" style="width: 150upx;height: 150upx;margin-right: 10rpx;position: relative;"
|
|
|
|
|
v-for="(image,index) in certification" :key="index">
|
|
|
|
|
<image :src="image" style="width: 100%;height: 100%;"></image>
|
|
|
|
|
<view style="z-index: 9;position: absolute;margin-top: -1px;right: 0px;"
|
|
|
|
|
@click="frontremoveC(index)">
|
|
|
|
|
<u-icon name="close-circle-fill" color="#039d88" size="50rpx"></u-icon>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="margin-top" @click="addImageC()" v-if="certification.length < 6">
|
|
|
|
|
<view class="flex justify-center align-center margin-top-view">
|
|
|
|
|
<view>
|
|
|
|
|
<view class="text-center">
|
|
|
|
|
<image style="width: 43.06rpx;height: 38.19rpx;" src="../../static/orderDetail/img-shang.png" mode=""></image>
|
|
|
|
|
</view>
|
|
|
|
|
<view class="text-center text-xs margin-top-xs">上传图片</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
</view>
|
|
|
|
|
|
2024-06-05 19:16:02 +08:00
|
|
|
|
</view>
|
2024-07-17 10:43:18 +08:00
|
|
|
|
<view class="push-button">
|
2024-08-26 09:56:29 +08:00
|
|
|
|
<view class="que-btn" @tap="save" v-if="bb!=0">提交申请</view>
|
2024-07-17 10:43:18 +08:00
|
|
|
|
</view>
|
|
|
|
|
|
2024-06-05 19:16:02 +08:00
|
|
|
|
</view>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
import * as websocketUtils from 'utils/websocketUtils.js';
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
2024-08-14 15:48:32 +08:00
|
|
|
|
pickVal: [0, 0, 0], // 选择器默认值
|
|
|
|
|
pickVal2:[], // 辅助城市名字线索
|
|
|
|
|
cityArr: [], // 所有城市
|
2024-06-05 19:16:02 +08:00
|
|
|
|
hotCitys: ['杭州', '天津', '北京', '上海', '深圳', '广州', '成都', '重庆', '厦门'],
|
|
|
|
|
locationValue: '正在定位...',
|
|
|
|
|
// auditContent: '',
|
|
|
|
|
city: '',
|
|
|
|
|
money: '',
|
|
|
|
|
teamNumber: '',
|
|
|
|
|
userName: '',
|
|
|
|
|
phone: '',
|
|
|
|
|
age: '',
|
2024-08-23 14:26:09 +08:00
|
|
|
|
front: '',
|
|
|
|
|
back:'',
|
|
|
|
|
certification:[],
|
2024-08-14 15:48:32 +08:00
|
|
|
|
bb:'1',
|
|
|
|
|
cityData:''
|
2024-06-05 19:16:02 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
onLoad() {
|
|
|
|
|
this.getChannel();
|
2024-08-14 15:48:32 +08:00
|
|
|
|
this.loadProvinces()
|
2024-06-05 19:16:02 +08:00
|
|
|
|
},
|
|
|
|
|
methods: {
|
2024-08-14 15:48:32 +08:00
|
|
|
|
loadProvinces() { // 加载省份
|
|
|
|
|
uni.request({
|
|
|
|
|
url: 'http://test-api.tiananhub.com/api/province/GetListProvince',
|
|
|
|
|
method: 'get',
|
|
|
|
|
success: async (res) => {
|
|
|
|
|
let {
|
|
|
|
|
data
|
|
|
|
|
} = res.data
|
|
|
|
|
console.log(data)
|
|
|
|
|
this.cityArr[0] = data
|
|
|
|
|
this.loadCities(data[0].AreaId)
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
},
|
|
|
|
|
fail: async (res) => {}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 请求地级市
|
|
|
|
|
loadCities(AreaId) {
|
|
|
|
|
uni.request({
|
|
|
|
|
url: 'http://test-api.tiananhub.com/api/province/GetListCity',
|
|
|
|
|
data: {
|
|
|
|
|
AreaId
|
|
|
|
|
},
|
|
|
|
|
method: 'get',
|
|
|
|
|
success: async (res) => {
|
|
|
|
|
let {
|
|
|
|
|
data
|
|
|
|
|
} = res.data
|
|
|
|
|
this.cityArr[1] = data
|
|
|
|
|
this.loadAreas(data[0].AreaId)
|
|
|
|
|
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
},
|
|
|
|
|
fail: async (res) => {}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 请求县区市
|
|
|
|
|
loadAreas(AreaId) {
|
|
|
|
|
uni.request({
|
|
|
|
|
url: 'http://test-api.tiananhub.com/api/province/GetListCity',
|
|
|
|
|
data: {
|
|
|
|
|
AreaId
|
|
|
|
|
},
|
|
|
|
|
method: 'get',
|
|
|
|
|
success: async (res) => {
|
|
|
|
|
let {
|
|
|
|
|
data
|
|
|
|
|
} = res.data
|
|
|
|
|
this.cityArr[2] = data
|
|
|
|
|
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
},
|
|
|
|
|
fail: async (res) => {}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 确定其他选择的值
|
|
|
|
|
bindPickerChange(data) {
|
|
|
|
|
this.pickVal=data.target.value;
|
|
|
|
|
this.pickVal2=data.target.value;
|
2024-08-26 09:56:29 +08:00
|
|
|
|
console.log("data====",this.pickVal2)
|
2024-08-14 15:48:32 +08:00
|
|
|
|
this.cityData=this.cityArr[0][this.pickVal2[0]].AreaName+'-'+this.cityArr[1][this.pickVal2[1]].AreaName+'-'+this.cityArr[2][this.pickVal2[2]].AreaName
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
// 选择时且未点击确定是的值
|
|
|
|
|
pluginclass(e) {
|
|
|
|
|
if (e.detail.column == 0) {
|
|
|
|
|
this.loadCities(this.cityArr[0][e.detail.value].AreaId);
|
|
|
|
|
}
|
|
|
|
|
if (e.detail.column == 1) {
|
|
|
|
|
this.loadAreas(this.cityArr[1][e.detail.value].AreaId);
|
|
|
|
|
}
|
|
|
|
|
},
|
2024-08-23 14:26:09 +08:00
|
|
|
|
// 身份证正面删除
|
|
|
|
|
frontremove(index) {
|
|
|
|
|
this.front = ''
|
|
|
|
|
},
|
|
|
|
|
// 身份证反面删除
|
|
|
|
|
frontremoves(index) {
|
|
|
|
|
this.back = ''
|
|
|
|
|
},
|
|
|
|
|
// 资质证书删除
|
|
|
|
|
frontremoveC(index) {
|
|
|
|
|
this.certification = []
|
2024-06-05 19:16:02 +08:00
|
|
|
|
},
|
|
|
|
|
getChannel() {
|
|
|
|
|
let userId = this.$queue.getData('userId');
|
|
|
|
|
this.$Request.getT('/app/artificer/selectAgencyById?userId=' + userId).then(res => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
if (res.data == null) {
|
2024-08-14 15:48:32 +08:00
|
|
|
|
this.bb = '1';
|
2024-06-05 19:16:02 +08:00
|
|
|
|
} else {
|
|
|
|
|
this.bb = res.data.status;
|
|
|
|
|
this.city = res.data.city;
|
|
|
|
|
this.age = res.data.age;
|
|
|
|
|
this.userName = res.data.name;
|
|
|
|
|
this.phone = res.data.phone;
|
2024-08-26 09:56:29 +08:00
|
|
|
|
if(res.data.certification!=null){
|
|
|
|
|
this.certification = res.data.certification.split(',')
|
|
|
|
|
}
|
|
|
|
|
if(res.data.front!=null){
|
|
|
|
|
this.front = res.data.front;
|
|
|
|
|
}
|
|
|
|
|
if(res.data.back!=null){
|
|
|
|
|
this.back=res.data.back;
|
|
|
|
|
}
|
2024-08-23 14:26:09 +08:00
|
|
|
|
console.log('111111111',this.certification)
|
2024-06-05 19:16:02 +08:00
|
|
|
|
}
|
|
|
|
|
// this.auditContent = res.data.auditContent;
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
//获取省市区
|
|
|
|
|
Getcity(latitude, longitude) {
|
|
|
|
|
this.$Request.get("/app/Login/selectCity", {
|
|
|
|
|
lat: latitude,
|
|
|
|
|
lng: longitude
|
|
|
|
|
}).then(res => {
|
|
|
|
|
console.log(res)
|
|
|
|
|
this.city = res.data.city
|
|
|
|
|
console.log(this.address)
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
goCity() {
|
|
|
|
|
let that = this
|
|
|
|
|
uni.chooseLocation({
|
|
|
|
|
success: function(res) {
|
|
|
|
|
console.log('位置名称:' + res.name);
|
|
|
|
|
console.log('详细地址:' + res.address);
|
|
|
|
|
console.log('纬度:' + res.latitude);
|
|
|
|
|
console.log('经度:' + res.longitude);
|
|
|
|
|
that.Getcity(res.latitude, res.longitude)
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
save() {
|
2024-08-14 15:48:32 +08:00
|
|
|
|
if (this.cityData === '') {
|
2024-06-05 19:16:02 +08:00
|
|
|
|
this.$queue.showToast('请输入服务城市 ')
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.userName === '') {
|
|
|
|
|
this.$queue.showToast('请输入姓名')
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.phone === '' || this.phone.length != 11) {
|
|
|
|
|
this.$queue.showToast('请输入正确的手机号!')
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.age === '') {
|
|
|
|
|
this.$queue.showToast('请输入年龄')
|
|
|
|
|
return;
|
|
|
|
|
}
|
2024-08-23 14:26:09 +08:00
|
|
|
|
if (this.front == '') {
|
|
|
|
|
this.$queue.showToast('请上身份证正面')
|
2024-06-05 19:16:02 +08:00
|
|
|
|
return;
|
|
|
|
|
}
|
2024-08-23 14:26:09 +08:00
|
|
|
|
if (this.back == '') {
|
|
|
|
|
this.$queue.showToast('请上身份证反面')
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.certification = this.certification.toString();
|
2024-06-05 19:16:02 +08:00
|
|
|
|
let userId = this.$queue.getData('userId');
|
|
|
|
|
let data = {
|
|
|
|
|
userId: userId,
|
|
|
|
|
name: this.userName,
|
|
|
|
|
phone: this.phone,
|
|
|
|
|
age: this.age,
|
2024-08-14 15:48:32 +08:00
|
|
|
|
city: this.cityData,
|
2024-08-23 14:26:09 +08:00
|
|
|
|
front: this.front,
|
|
|
|
|
back:this.back,
|
|
|
|
|
certification:this.certification
|
2024-06-05 19:16:02 +08:00
|
|
|
|
}
|
|
|
|
|
this.$Request.postJson('/app/artificer/insertAgency', data).then(res => {
|
|
|
|
|
if (res.code == 0) {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
this.$queue.showToast('提交成功!');
|
|
|
|
|
setTimeout(d => {
|
|
|
|
|
uni.navigateBack();
|
|
|
|
|
}, 1000);
|
|
|
|
|
} else {
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
this.$queue.showToast(res.msg);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-08-23 14:26:09 +08:00
|
|
|
|
addImageC() {
|
|
|
|
|
let that = this
|
|
|
|
|
uni.chooseImage({
|
|
|
|
|
count: 4,
|
|
|
|
|
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认两者都有
|
|
|
|
|
sourceType: ['album', 'camera'],
|
|
|
|
|
success: res => {
|
|
|
|
|
that.$queue.showLoading("上传中...");
|
|
|
|
|
for (let i = 0; i < res.tempFilePaths.length; i++) {
|
|
|
|
|
var tempFilePaths=res.tempFilePaths[i]
|
|
|
|
|
console.log("tempFilePaths----",res)
|
|
|
|
|
that.checkImageSize(tempFilePaths, (isValid) => {
|
|
|
|
|
if (isValid) {
|
|
|
|
|
uni.uploadFile({ // 上传接口
|
|
|
|
|
url: websocketUtils.uploadFileUrl(), //真实的接口地址
|
|
|
|
|
filePath: tempFilePaths,
|
|
|
|
|
name: 'file',
|
|
|
|
|
success: (uploadFileRes) => {
|
|
|
|
|
console.log(uploadFileRes.data)
|
|
|
|
|
that.certification.push(JSON.parse(uploadFileRes.data)
|
|
|
|
|
.data)
|
|
|
|
|
// that.certification = JSON.parse(uploadFileRes.data).data
|
|
|
|
|
console.log(that.certification)
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// 图片校验通过后的逻辑
|
|
|
|
|
console.log('图片校验通过,可以上传');
|
|
|
|
|
} else {
|
|
|
|
|
console.log('图片超出大小限制,请重新选择');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
addImageBack() {
|
|
|
|
|
let that = this
|
|
|
|
|
uni.chooseImage({
|
|
|
|
|
count: 1,
|
|
|
|
|
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认两者都有
|
|
|
|
|
sourceType: ['album', 'camera'],
|
|
|
|
|
success: res => {
|
|
|
|
|
that.$queue.showLoading("上传中...");
|
|
|
|
|
var tempFilePaths=res.tempFilePaths[0]
|
|
|
|
|
console.log("tempFilePaths----",res)
|
|
|
|
|
that.checkImageSize(tempFilePaths, (isValid) => {
|
|
|
|
|
if (isValid) {
|
|
|
|
|
uni.uploadFile({ // 上传接口
|
|
|
|
|
url: websocketUtils.uploadFileUrl(), //真实的接口地址
|
|
|
|
|
filePath: res.tempFilePaths[0],
|
|
|
|
|
name: 'file',
|
|
|
|
|
success: (uploadFileRes) => {
|
|
|
|
|
console.log(uploadFileRes.data)
|
|
|
|
|
that.back = JSON.parse(uploadFileRes.data).data
|
|
|
|
|
console.log(that.back)
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
// 图片校验通过后的逻辑
|
|
|
|
|
console.log('图片校验通过,可以上传');
|
|
|
|
|
} else {
|
|
|
|
|
console.log('图片超出大小限制,请重新选择');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-06-05 19:16:02 +08:00
|
|
|
|
addImage() {
|
|
|
|
|
let that = this
|
|
|
|
|
uni.chooseImage({
|
|
|
|
|
count: 1,
|
2024-08-14 15:48:32 +08:00
|
|
|
|
sizeType: ['original', 'compressed'], // 可以指定是原图还是压缩图,默认两者都有
|
2024-06-05 19:16:02 +08:00
|
|
|
|
sourceType: ['album', 'camera'],
|
|
|
|
|
success: res => {
|
2024-08-14 15:48:32 +08:00
|
|
|
|
that.$queue.showLoading("上传中...");
|
|
|
|
|
var tempFilePaths=res.tempFilePaths[0]
|
|
|
|
|
console.log("tempFilePaths----",res)
|
|
|
|
|
that.checkImageSize(tempFilePaths, (isValid) => {
|
|
|
|
|
if (isValid) {
|
|
|
|
|
// 图片校验通过后的逻辑
|
2024-08-23 14:26:09 +08:00
|
|
|
|
uni.uploadFile({ // 上传接口
|
|
|
|
|
url: websocketUtils.uploadFileUrl(), //真实的接口地址
|
|
|
|
|
filePath: res.tempFilePaths[0],
|
|
|
|
|
name: 'file',
|
|
|
|
|
success: (uploadFileRes) => {
|
|
|
|
|
console.log(uploadFileRes.data)
|
|
|
|
|
that.front = JSON.parse(uploadFileRes.data).data
|
|
|
|
|
console.log(that.front)
|
|
|
|
|
uni.hideLoading();
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-08-14 15:48:32 +08:00
|
|
|
|
console.log('图片校验通过,可以上传');
|
|
|
|
|
} else {
|
|
|
|
|
console.log('图片超出大小限制,请重新选择');
|
|
|
|
|
}
|
|
|
|
|
});
|
2024-06-05 19:16:02 +08:00
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
2024-08-14 15:48:32 +08:00
|
|
|
|
// 检查图片尺寸
|
|
|
|
|
checkImageSize(filePath, callback) {
|
|
|
|
|
let that = this
|
|
|
|
|
uni.getFileInfo({
|
|
|
|
|
filePath: filePath,
|
|
|
|
|
success: (infoRes) => {
|
|
|
|
|
const size = infoRes.size;
|
2024-08-14 17:29:31 +08:00
|
|
|
|
if (size / 1024 / 1024 > 4) {
|
2024-08-14 15:48:32 +08:00
|
|
|
|
// 图片大于2MB
|
|
|
|
|
uni.showToast({
|
|
|
|
|
icon:'error',
|
|
|
|
|
title:'图片超出2MB限制,请重新选择'
|
|
|
|
|
})
|
|
|
|
|
callback(false);
|
|
|
|
|
} else {
|
|
|
|
|
// 图片小于等于2MB
|
|
|
|
|
callback(true);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
fail: () => {
|
|
|
|
|
callback(false);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
2024-06-05 19:16:02 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="less">
|
|
|
|
|
@import '../../static/less/index.less';
|
|
|
|
|
@import '../../static/css/index.css';
|
2024-08-14 15:48:32 +08:00
|
|
|
|
/deep/.is-required{
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
/deep/.uni-forms-item__label{
|
|
|
|
|
width:100% !important;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #333333;
|
2024-08-26 09:32:37 +08:00
|
|
|
|
font-weight: 400;
|
2024-08-14 15:48:32 +08:00
|
|
|
|
margin-bottom: 4px;
|
|
|
|
|
}
|
|
|
|
|
/deep/.uni-forms-item{
|
|
|
|
|
flex-direction: column !important;
|
|
|
|
|
}
|
|
|
|
|
.qing{
|
|
|
|
|
color: rgb(192, 196, 204);
|
|
|
|
|
}
|
2024-07-17 10:43:18 +08:00
|
|
|
|
.push-button{
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 48px;
|
|
|
|
|
position: fixed;
|
|
|
|
|
bottom: 0px;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
}
|
|
|
|
|
.que-btn{
|
|
|
|
|
display: inline-block;
|
|
|
|
|
width: 90%;
|
2024-06-15 09:08:10 +08:00
|
|
|
|
text-align: center;
|
2024-07-17 10:43:18 +08:00
|
|
|
|
background: linear-gradient(90deg, #019C88, #28BA92, #35C495);
|
2024-07-17 17:47:41 +08:00
|
|
|
|
height: 40px;
|
2024-07-17 10:43:18 +08:00
|
|
|
|
border-radius: 28px;
|
|
|
|
|
color: #ffffff;
|
2024-07-17 17:47:41 +08:00
|
|
|
|
line-height: 40px;
|
2024-07-17 10:43:18 +08:00
|
|
|
|
margin-top: 4px;
|
|
|
|
|
font-size: 34rpx;
|
2024-06-15 09:08:10 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.margin-top-view{
|
|
|
|
|
width: 150upx;
|
|
|
|
|
height: 150upx;
|
|
|
|
|
background: #f7f7f7;
|
|
|
|
|
}
|
2024-07-10 15:32:02 +08:00
|
|
|
|
.advantage-title{
|
|
|
|
|
font-size: 32rpx;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
margin-top: 60rpx;
|
|
|
|
|
margin-left: 35rpx;
|
|
|
|
|
}
|
|
|
|
|
.advantage-bor{
|
2024-07-17 10:43:18 +08:00
|
|
|
|
width: 80px;
|
2024-07-10 15:32:02 +08:00
|
|
|
|
height: 6px;
|
|
|
|
|
border-radius: 3px;
|
|
|
|
|
bottom: 0;
|
|
|
|
|
background: linear-gradient(90deg, rgba(234, 248, 245, 0.7), rgba(132, 211, 196, 0.7));
|
|
|
|
|
margin-bottom: 80rpx;
|
|
|
|
|
margin-left: 35rpx;
|
|
|
|
|
|
|
|
|
|
}
|
2024-06-05 19:16:02 +08:00
|
|
|
|
.hehuo_view {
|
|
|
|
|
width: 100%;
|
2024-06-15 09:08:10 +08:00
|
|
|
|
padding-top: 10px;
|
2024-07-09 14:07:54 +08:00
|
|
|
|
height: 100vh;
|
2024-07-10 15:32:02 +08:00
|
|
|
|
background:#fff url(../../static/cooperate/cooperate6.png)no-repeat ;
|
|
|
|
|
background-size: 100%;
|
2024-07-09 14:07:54 +08:00
|
|
|
|
position: relative;
|
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
2024-07-10 15:32:02 +08:00
|
|
|
|
//align-items: center;
|
2024-07-09 14:07:54 +08:00
|
|
|
|
|
|
|
|
|
.text_view {
|
|
|
|
|
width: 95%;
|
|
|
|
|
margin: 0 auto;
|
|
|
|
|
background-color: #fff;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 20px;
|
|
|
|
|
.audit_message {
|
|
|
|
|
color: red;
|
|
|
|
|
width: 650rpx;
|
|
|
|
|
height: 50rpx;
|
|
|
|
|
margin-top: 50rpx;
|
|
|
|
|
}
|
2024-06-05 19:16:02 +08:00
|
|
|
|
|
2024-06-15 09:08:10 +08:00
|
|
|
|
|
2024-06-05 19:16:02 +08:00
|
|
|
|
|
2024-07-09 14:07:54 +08:00
|
|
|
|
.save_btn1 {
|
|
|
|
|
width: 650rpx;
|
|
|
|
|
height: 88rpx;
|
|
|
|
|
background: #FFFFFF;
|
|
|
|
|
border-radius: 10rpx;
|
|
|
|
|
margin-top: 100rpx;
|
|
|
|
|
text-align: center;
|
|
|
|
|
line-height: 88rpx;
|
|
|
|
|
}
|
2024-06-05 19:16:02 +08:00
|
|
|
|
|
|
|
|
|
.item_view {
|
|
|
|
|
margin-top: 30rpx;
|
|
|
|
|
|
|
|
|
|
.item_title {
|
2024-06-27 21:53:03 +08:00
|
|
|
|
font-size: 32rpx;
|
2024-06-05 19:16:02 +08:00
|
|
|
|
font-family: PingFang SC Heavy, PingFang SC Heavy-Heavy;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
margin-top: 20rpx;
|
|
|
|
|
height: 40rpx;
|
|
|
|
|
font-size: 24rpx;
|
|
|
|
|
font-family: PingFang SC Regular, PingFang SC Regular-Regular;
|
|
|
|
|
font-weight: 400;
|
|
|
|
|
color: #333333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.xian {
|
|
|
|
|
width: 100%;
|
|
|
|
|
border-bottom: 1rpx solid #f7f7f7;
|
|
|
|
|
margin-top: 10rpx;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</style>
|