123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476 |
- <!-- 运输车辆新增 -->
- <template>
- <view id="register">
- <view class="register_li">
- <view class="register_li_min">
- <view>*</view>
- <view>车辆号牌:</view>
- <input v-model="form.carCode" maxlength="10" type="text" placeholder-style="color:#999;" placeholder="请输入车辆号牌">
- </view>
- </view>
- <view>
- </view>
- <view class="register_li2" v-for="(item,index) in carCredentialsDtos" :key="index">
- <view class="register_li_t"><text v-if="item.required==1" style="color: #f00;margin-right: 10rpx;">*</text>{{item.naturalName}}</view>
- <view class="register_li_b">
- <img class="register_li_b_img1" src="@/pages_supplier/images/icon_zc_scbg.png">
- <img class="register_li_b_img2" v-if="item.naturalName" :src="baseUrl+item.naturalUrl">
- <img class="register_li_b_img3" src="@/pages_supplier/images/icon_zc_sc.png" @click="selectImage(item)">
- </view>
- <view class="register_li_b2">
- <view><text v-if="item.required==1" style="color: #f00;margin-right: 10rpx;">*</text>有效期</view>
- <picker mode="date" @change="startChange(item,$event)">
- <input class="picker-text" disabled type="text" v-model="item.startTime" placeholder="开始时间">
- </picker>
- <view>-</view>
- <picker mode="date" @change="endChange(item,$event)">
- <input class="picker-text2" disabled type="text" v-model="item.endTime" placeholder="结束时间">
- </picker>
- </view>
- <view class="register_li_b3">{{item.remark}}</view>
- </view>
- <view class="sub_btn" @click="submitForm()">提交</view>
- </view>
- </template>
- <script>
- import {certificateList,transportCarAdd,transportCarDetail,transportCarAmend} from '@/api/apiDemo/index.js'
- import { config } from '@/api/request/config.js'
- export default {
- data() {
- return {
- baseUrl:config.base_url,
- form:{
- carCode:'',
- },
- carCredentialsDtos:[],
- status:null,//0添加1编辑
- id:null,
- }
- },
- onLoad(option) {
- this.status=option.status;
- this.id=option.id;
- },
- onShow(){
- },
- methods: {
- // 图片上传
- selectImage(item) {
- let self = this;
- wx.chooseImage({
- count: 1,
- sizeType: ["original", "compressed"],
- sourceType: ["album", "camera"],
- success: function(res) {
- let tempFilePaths = res.tempFilePaths[0];
- self.uploadImg(item,tempFilePaths);
- }
- });
- },
- async uploadImg(item,tempFilePaths){
- var self = this;
- uni.showLoading({
- title: '上传中',
- mask: true
- });
- uni.uploadFile({
- url: config.base_url + '/system/file/upload', //仅为示例,非真实的接口地址
- header:{'Authorization':uni.getStorageSync('token')},
- filePath: tempFilePaths,
- name: 'file',
- formData: {
- 'user': 'test'
- },
- success: (uploadFileRes) => {
- let res = JSON.parse(uploadFileRes.data);
- if(res.code == 200){
- item.naturalUrl=res.data.url;
- }else{
- uni.showToast({
- title: res.msg,
- icon:"none",
- mask:true,
- duration: 2000
- });
- }
- },
- fail: err => {},
- complete: () => {
- uni.hideLoading()
- }
- });
- },
- //删除图片
- delImg(index){
- this.newData.imgList.splice(index,1);
- },
- //开始时间选中事件
- startChange(item,e){
- if(new Date(e.target.value).getTime()>=new Date(item.endTime).getTime()){
- uni.showToast({
- title: '结束时间不能小于开始时间',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }else{
- item.startTime=e.target.value
- }
- },
- //结束时间选中事件
- endChange(item,e){
- if(new Date(item.startTime).getTime()>=new Date(e.target.value).getTime()){
- uni.showToast({
- title: '结束时间不能小于开始时间',
- icon:"none",
- mask:true,
- duration: 2000
- });
- }else{
- item.endTime=e.target.value
- }
- },
- //校验特殊字符
- verify(){
- if(!(/^1[3456789]\d{9}$/.test(this.form.phone))){
- uni.showToast({
- title: '请输入正确的手机号',
- icon:"none",
- mask:true,
- duration: 2000
- });
- this.form.phone='';
- }
- },
- //获取列表数据
- async getList(){
- let _this = this;
- const {data} = await certificateList({type:3})
- if(data.code==200){
- //重新渲染后台返回数据
- data.data.forEach(function(item){
- _this.carCredentialsDtos.push({'required':item.required,'naturalName':item.name,'naturalUrl':'','startTime':'','endTime':'','remark':item.remark,'certificateId':item.id})
- })
- }
- },
- //获取详情
- async getInfo(){
- let _this = this;
- const {data} = await transportCarDetail(this.id)
- if(data.code==200){
- let res=data.data
- this.isAudit=res.isAudit;
- this.form=res;
- _this.carCredentialsDtos.forEach(function(item){
- res.carCredentialsVos.forEach(function(item2){
- if(item.certificateId==item2.certificateId){
- item.naturalUrl=item2.naturalUrl
- item.startTime=item2.startTime
- item.endTime=item2.endTime
- }
- })
- })
- }
- },
- //注册提交
- async submitForm(){
- let _this = this;
- let isPass=true;//判断是否为空
- if(!this.form.carCode){
- uni.showToast({
- title: '请输入车辆号牌',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return
- }
- //提交的时候过滤空数据
- let arr=[];
- for(let i=0;i<_this.carCredentialsDtos.length;i++){
- if(_this.carCredentialsDtos[i].required==1){
- if(!_this.carCredentialsDtos[i].naturalUrl){
- isPass=false;
- uni.showToast({
- title: '未上传'+_this.carCredentialsDtos[i].naturalName+',请上传'+_this.carCredentialsDtos[i].naturalName,
- icon:"none",
- mask:true,
- duration: 2000
- });
- return
- }
- if(!_this.carCredentialsDtos[i].startTime || !_this.carCredentialsDtos[i].endTime){
- isPass=false;
- uni.showToast({
- title: '请选择'+_this.carCredentialsDtos[i].naturalName+'有效期',
- icon:"none",
- mask:true,
- duration: 2000
- });
- return
- }
- arr.push(_this.carCredentialsDtos[i])
- }else{
- arr.push(_this.carCredentialsDtos[i])
- }
- }
- // _this.carCredentialsDtos.forEach(function(item){
- // if(item.required==1){
- // if(!item.naturalUrl){
- // isPass=false;
- // uni.showToast({
- // title: '未上传'+item.naturalName+',请上传'+item.naturalName,
- // icon:"none",
- // mask:true,
- // duration: 2000
- // });
- // return
- // }
- // if(!item.startTime || !item.endTime){
- // isPass=false;
- // uni.showToast({
- // title: '请选择'+item.naturalName+'有效期',
- // icon:"none",
- // mask:true,
- // duration: 2000
- // });
- // return
- // }
- // arr.push(item)
- // }else{
- // arr.push(item)
- // }
- // })
- if(isPass){
- _this.form.carCredentialsDtos=arr;
- if(this.status==0){//新增
- const {data} = await transportCarAdd(_this.form);
- if(data.code == 200){
- uni.showToast({
- title: '提交成功',
- icon:"none",
- mask:true,
- duration: 2000
- });
- setTimeout(function(){
- uni.redirectTo({
- url: '/pages/supplierWorkbench',
- });
- },2000);
- }
- }else if(this.status==1){//编辑
- _this.form.userCredentialsVos=null;
- const {data} = await transportCarAmend(_this.form);
- if(data.code == 200){
- uni.showToast({
- title: '提交成功',
- icon:"none",
- mask:true,
- duration: 2000
- });
- setTimeout(function(){
- uni.redirectTo({
- url: '/pages/supplierWorkbench',
- });
- },2000);
- }
- }
- }
- },
- },
- mounted(){
- this.getList();
- if(this.status==1){
- this.getInfo();
- }
- },
- }
- </script>
- <style lang="stylus" scoped>
- #register{
- height:auto;
- width:100%;
- display flex
- flex-direction column;
- padding-bottom: 220rpx;
- .register_li{
- background #fff;
- padding:20rpx 0;
- box-sizing: border-box;
- .register_li_min{
- margin:0 26rpx;
- display flex;
- align-items center;
- view{
- line-height:100rpx;
- font-size:28rpx;
- }
- view:nth-child(1){
- color:red;
- line-height:28rpx;
- margin-right: 12rpx;
- }
- view:nth-child(2){
- width:140rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- >input{
- width 500rpx;
- text-align: right;
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- }
- }
- }
- .register_li2{
- background #fff;
- border-radius:20rpx;
- margin:20rpx 20rpx 0;
- padding:0 20rpx;
- box-sizing: border-box;
- .register_li_t{
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #333333;
- line-height: 28rpx;
- margin: 36rpx 0;
- }
- .register_li_b{
- width: 450rpx;
- height: 270rpx;
- margin-left: 106rpx;
- position: relative;
- // >img:nth-child(1){
- // width: 450rpx;
- // height: 270rpx;
- // position: absolute;
- // left: 0;
- // top: 0;
- // }
- // >img:nth-child(2){
- // width: 100rpx;
- // height: 100rpx;
- // position: absolute;
- // left: 187rpx;
- // top: 86rpx;
- // }
- .register_li_b_img1{
- width: 450rpx;
- height: 270rpx;
- position: absolute;
- left: 0;
- top: 0;
- }
- .register_li_b_img2{
- width: 450rpx;
- height: 270rpx;
- position: absolute;
- left: 0;
- top: 0;
- }
- .register_li_b_img3{
- width: 100rpx;
- height: 100rpx;
- position: absolute;
- left: 187rpx;
- top: 86rpx;
- }
- }
- .register_li_b2{
- border-bottom: 1px solid #f5f5f5;
- height: 100rpx;
- display: flex;
- justify-content: flex-start;
- align-items: center;
- >view:nth-child(1){
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 100rpx;
- margin-right: 120rpx;
- }
- .picker-text{
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #CCCCCC;
- line-height: 100rpx;
- width: 188rpx;
- }
- >view:nth-child(2){
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #CCCCCC;
- line-height: 100rpx;
- }
- .picker-text2{
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #CCCCCC;
- line-height: 100rpx;
- width: 188rpx;
- text-align: right;
- }
- }
- .register_li_b3{
- font-size: 24rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #999999;
- line-height: 36rpx;
- margin: 34rpx 0;
- }
- }
- /* 按钮 */
- .sub_btn{
- width: 650rpx;
- height: 100rpx;
- background: #0183FA;
- border-radius: 20rpx;
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 500;
- color: #FFFFFF;
- line-height: 100rpx;
- text-align: center;
- margin-left: 50rpx;
- position: fixed;
- bottom:30rpx;
- z-index: 1000;
- }
- }
- /deep/.input-value-border{
- display :none !important;
- }
- </style>
|