123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062 |
- <template name='information'>
- <view class="container" :style="{paddingBottom :isIphoneX ? '218rpx' : '184rpx'}">
- <view class="wrap-info">
- <view class="row">
- <view class="info-title">基本信息</view>
- </view>
- <view class="info-from">
- <view class="label">公司名称</view>
- <input class="row-input" type="text" v-model="params.name" placeholder="请与营业执照的注册名称保持一致" placeholder-class="placeholder" maxlength="30"/>
- </view>
- <view class="info-from">
- <view class="label">公司简称</view>
- <input class="row-input" type="text" v-model="params.sname" placeholder="请输入公司简称" placeholder-class="placeholder" maxlength="10"/>
- </view>
- <view class="info-from">
- <view class="label">公司地址</view>
- <view class="row-input" @click="showMulLinkageThreePicker">
- <text :class="addressData.address === '请选择公司所在地区' ? 'none' : ''">
- {{addressData.address}}
- </text>
- <text class="iconfont icon-xiayibu"></text>
- </view>
- </view>
- <textarea value="" v-model="params.address" placeholder="请填写详细地址,如街道/小区/门牌等" maxlength="50" placeholder-class="placeholder" class="address-details"/>
- <view class="info-from">
- <view class="label">联系人</view>
- <input class="row-input" v-model="params.linkMan" type="text" placeholder="请输入联系人姓名" placeholder-class="placeholder" maxlength="6"/>
- </view>
- <view class="info-from">
- <view class="label">邮箱</view>
- <input class="row-input" v-model="params.email" type="text" placeholder="请输入邮箱地址" placeholder-class="placeholder"/>
- </view>
- <text class="info-email">邮箱可用作登录账号,请使用公司邮箱或法人邮箱</text>
- <view class="info-from">
- <view class="label">固定电话</view>
- <input class="row-input" v-model="params.contractPhone" type="text" placeholder="请在号码前加区" placeholder-class="placeholder" maxlength="11"/>
- </view>
- <view class="info-from">
- <view class="label">传真</view>
- <input class="row-input" v-model="params.fax" type="text" placeholder="请输入公司传真号" placeholder-class="placeholder"/>
- </view>
- <view class="info-from">
- <view class="label">法人代表</view>
- <input class="row-input" v-model="params.legalPerson" type="text" placeholder="请输入公司法人代表姓名" placeholder-class="placeholder" maxlength="6"/>
- </view>
- <view class="info-from">
- <view class="label">注册资本</view>
- <input class="row-input" v-model="params.registeredCapital" type="text" placeholder="请填写公司注册资本 " placeholder-class="placeholder" />
- </view>
- <view class="info-from">
- <view class="label">公司性质</view>
- <input class="row-input" v-model="params.nature" type="text" placeholder="请填写公司性质" placeholder-class="placeholder"/>
- </view>
- <view class="info-from">
- <view class="label">年营业额</view>
- <input class="row-input" v-model="params.turnover" type="text" placeholder="请输入公司年营业额" placeholder-class="placeholder"/>
- </view>
- </view>
-
- <view class="wrap-content">
- <view class="row">
- <view class="info-title">经营信息</view>
- </view>
- <view class="info-from" style="border: 0;">
- <view class="label">公司类型</view>
- <view class="row-input ShopTyperadio">
- <radio-group @change="radioChange">
- <label class="radio" v-for="(item, index) in typename" :key="item.value">
- <radio :value="item.value" :checked="item.value == params.firstShopType" color='#E15616'/>{{item.name}}
- </label>
- </radio-group>
- </view>
- </view>
- <view class="secondTyperadio" v-if="params.firstShopType==1" >
- <view class="radio" v-for="(item,index) in secondtype" :key="index" @click="secondypeRidio(item)" :class="item.value==params.secondShopType?'active':''">
- <view class="secondRadio" >{{item.name}}</view>
- </view>
- </view>
- <view class="zizhi" v-if="params.secondShopType==3">
- <view class="info2-title zizhi-title">资质</view>
- <view class="uploadImage">
- <view class="form-upload-image" v-if="params.medicalPracticeLicenseImg1!=''&¶ms.medicalPracticeLicenseImg1!=null">
- <image class="upload-img" :src="params.medicalPracticeLicenseImg1" alt="" ></image>
- <view class="iconfont icon-shanchu1" @click="deleteMedicalImage()"></view>
- </view>
- <view class="formLine-file" @click="uploadzizhiImageFn" v-else>
- <view class="file-zizhi"></view>
- </view>
- <view class="form-upload-tips">
- <text class="iconfont icon-wenhao"></text>
- <view class="wen-tips">点击图片可放大图片</view>
- </view>
- </view>
- </view>
- <view class="business">
- <view class="info2-title business-title">主营内容</view>
- <view class="business-info">
- <checkbox-group class="row-group" @change="chooseMaleLike">
- <label class="diyBox" v-for="(item, index) in mentuzCampList" :key="item.value" >
- <checkbox :value="item.value" :checked="item.checked"></checkbox>
- <view class="row-text">{{item.name}}</view>
- </label>
- </checkbox-group>
- <view class="addbusiness">
- <input class="row-input other" type="text" placeholder="请输入自定义项目" v-model="mainProEdit"placeholder-class="placeholder" maxlength="5"/>
- <button type="default" class="button" @click.stop="mainProAdd">确认添加</button>
- </view>
- </view>
- </view>
- <view class="business">
- <view class="info2-title business-title">经营范围</view>
- <view class="business-info">
- <checkbox-group class="row-group" @change="chooseMaleLikes">
- <label class="row-input" v-for="(item, index) in medicaCampList" :key="item.value" >
- <checkbox :value="item.value" :checked="item.checked" ></checkbox>
- <view class="row-text">{{item.name}}</view>
- </label>
- </checkbox-group>
- <view class="addbusiness">
- <input class="row-input other" type="text" placeholder="请输入自定义经营范围" v-model="shopScopeEdit" placeholder-class="placeholder" maxlength="5"/>
- <button type="default" class="button" @click.stop="shopScopeAdd">确认添加</button>
- </view>
- </view>
- </view>
- <view class="info">
- <view class="info2-title">公司介绍</view>
- <textarea v-model="params.info" maxlength="2000" placeholder="公司简介会在公司介绍页面展示,有助于机构更好的了解您, 建议从个人规模、代理产品、机构服务、荣誉资质这4方面进行介绍" placeholder-class="placeholder" name="textarea"/>
- </view>
- <view class="info">
- <view class="info2-title">主打系列商品说明</view>
- <textarea placeholder="请输入主打系列商品说明" v-model="params.productDesc" maxlength="500" placeholder-class="placeholder" name="textarea"/>
- </view>
- </view>
-
- <view class="wrap-image">
- <view class="row">
- <view class="info-title">资质证明</view>
- </view>
- <view class="info-from">
- <view class="label Code">营业执照编号</view>
- <input class="row-input Code" v-model.trim="params.socialCreditCode" type="text" placeholder="请输入公司营业执照编号" placeholder-class="placeholder" maxlength="18"/>
- </view>
- <view class="zizhi">
- <view class="info2-title zizhi-title">营业执照图片</view>
- <view class="uploadImage">
- <view class="form-upload-image" v-if="params.businessLicenseImage!=''&¶ms.businessLicenseImage!=null">
- <image class="upload-img" :src="params.businessLicenseImage" @click="showViewerImageFn()" ></image>
- <view class="iconfont icon-shanchu1" @click="deleteBusinessImage()"></view>
- </view>
- <view class="formLine-file" @click="uploadBusinessLicenseImageFn" v-else>
- <view class="file-biss iconImage"></view>
- </view>
- </view>
- </view>
- <view class="zizhi">
- <view class="info2-title zizhi-title">公司LOGO</view>
- <view class="uploadImage">
- <view class="form-upload-image" v-if="params.logo!=''&¶ms.logo!=null">
- <image class="upload-img" :src="params.logo" alt="" @click="showViewerImageFn1()"></image>
- <view class="iconfont icon-shanchu1" @click="deletelogoImage()"></view>
- </view>
- <view class="formLine-file" @click="uploadlogoImageFn" v-else>
- <view class="file-logo iconImage"></view>
- </view>
- </view>
- </view>
- <view class="zizhi">
- <view class="info2-title zizhi-title">生产许可证</view>
- <view class="uploadImage">
- <view class="form-upload-image" v-if="params.productionLicence!=''&¶ms.productionLicence!=null">
- <image class="upload-img" :src="params.productionLicence" alt="" @click="showViewerImageFn2()"></image>
- <view class="iconfont icon-shanchu1" @click="deleteproducImage()"></view>
- </view>
- <view class="formLine-file" @click="uploadproductionLicenceImageFn" v-else>
- <view class="file-produce iconImage"></view>
- </view>
- </view>
- </view>
- <view class="zizhi">
- <view class="info2-title zizhi-title">卫生许可证</view>
- <view class="uploadImage">
- <view class="form-upload-image" v-if="params.hygienicLicense!=''&¶ms.hygienicLicense!=null">
- <image class="upload-img" :src="params.hygienicLicense" alt="" @click="showViewerImageFn3()"></image>
- <view class="iconfont icon-shanchu1" @click="deletehygienicImage()"></view>
- </view>
- <view class="formLine-file" @click="uploadhygienicLicenseImageFn" v-else>
- <view class="file-health iconImage"></view>
- </view>
- </view>
- </view>
- <view class="zizhi">
- <view class="info2-title zizhi-title">税务许可证</view>
- <view class="uploadImage">
- <view class="form-upload-image" v-if="params.taxLicense!=''&¶ms.taxLicense!=null">
- <image class="upload-img" :src="params.taxLicense" alt="" @click="showViewerImageFn4()"></image>
- <view class="iconfont icon-shanchu1" @click="deletaxImage()"></view>
- </view>
- <view class="formLine-file" @click="uploadtaxLicenseImageFn" v-else>
- <view class="file-tax iconImage"></view>
- </view>
- </view>
- </view>
- <view class="zizhi">
- <view class="info2-title zizhi-title hoor">荣誉证书</view>
- <view class="uploadImage list-image">
- <view class="formLine-file" @click="uploadHonorImageFn" v-if="HonorImagesList.length<5" >
- <view class="file-honor iconImage"></view>
- </view>
- <view class="form-upload-image" v-for="(item, index) in HonorImagesList" :key="index">
- <image class="upload-img" :src="item" alt="" @click="showViewerImageFn5()"></image>
- <view class="iconfont icon-shanchu1" @click="removeGoodsImagesFn(HonorImagesList)"></view>
- </view>
- </view>
- </view>
- <view class="zizhi">
- <view class="info2-title zizhi-title hoor">产品证书</view>
- <view class="uploadImage list-image">
- <view class="formLine-file" @click="uploadproductImageFn" v-if="productImagesList.length<5" >
- <view class="file-product iconImage"></view>
- </view>
- <view class="form-upload-image" v-for="(item, index) in productImagesList" :key="index">
- <image class="upload-img" :src="item" alt="" @click="showViewerImageFn6()"></image>
- <view class="iconfont icon-shanchu1" @click="removeproductImagesFn(index)"></view>
- </view>
- </view>
- </view>
- </view>
- <view class="wrap-Btn" :style="{paddingBottom :isIphoneX ? '68rpx' : '34rpx'}">
- <button type="default" class="confirmBbtn" @click="shopSubmit">保存</button>
- </view>
- <mpvue-city-picker :themeColor="themeColor"
- ref="mpvueCityPicker"
- :pickerValueDefault="cityPickerValueDefault"
- @onCancel="onCancel"
- @onConfirm="onConfirm">
- </mpvue-city-picker>
- </view>
- </template>
- <script>
- import mpvueCityPicker from '@/components/mpvue-citypicker/mpvueCityPicker.vue'
- import { uploadFileImage } from "@/api/utils.js"
- import { mapState,mapMutations } from 'vuex';
- export default{
- name:'information',
- components:{
- mpvueCityPicker,
- },
- data(){
- return{
- isShowInput:false,
- firsttype:0,
- secontype:0,
- isfirstShow:false,
- issecondshow:false,
- addressData:{
- address:'请选择公司所在地区',
- townID:'', //区ID
- cityID:'', //区ID
- provinceID:'', //区ID
- addressDetail: '', //地址
- },
- typename:[
- {name:'医疗',value:'1'},
- {name:'非医疗',value:'2'}
- ],
- secondtype:[
- {name:'一类器械',value:'1'},
- {name:'二类器械',value:'2'},
- {name:'三类器械',value:'3'},
- {name:'其它',value:'4'}
- ],
- mentuzCampNullList:[
- {value:'1',name:'产品'},
- {value:'2',name:'仪器'},
- {value:'3',name:'服务'}
- ],
- medicaCampNullList:[
- {value:'1',name:'仪器护理类'},
- {value:'2',name:'护肤品类'},
- {value:'3',name:'纹绣类'},
- {value:'4',name:'美体内衣'},
- {value:'5',name:'整形耗材'},
- {value:'6',name:'国际品牌'},
- {value:'7',name:'美胸类'},
- {value:'8',name:'健康保健类'},
- {value:'9',name:'面膜类'},
- {value:'10',name:'抗衰老'},
- {value:'11',name:'生殖保养'},
- {value:'12',name:'健康养生'},
- {value:'13',name:'纤体减肥'}
- ],
- params:{
- userID:'',
- shopID:'',
- townID:'',
- provinceID: '',//省id
- cityID: '',
- address:'',
- name:'',//公司名称
- sname:'',//公司简称
- linkMan:'',//联系人
- email:'',//
- contractPhone:'',//固定电话
- fax:'',//传真
- legalPerson:'',//法人代表
- registeredCapital:'',//注册资本
- nature:'',//公司性质
- turnover:'',//年营业额
- firstShopType:'',//公司类型 1医疗 2非医疗
- secondShopType:'',//医疗下的二级分类
- medicalPracticeLicenseImg1:'',//资质
- mainpro:'',//主营产品
- businessScope:'',//经营内容
- info:'',//公司介绍
- productDesc:'',//主打说明
- medicalPracticeLicenseImg1:'',//三级器械/医疗执照
- socialCreditCode:'',//营业执照编号
- businessLicenseImage:'',//营业执照
- logo:'',//公司logo
- productionLicence:'',//生产
- hygienicLicense:'',//卫生
- taxLicense:'',//税务
- certificateHonor:'',//荣誉
- productCertification:'',//产品
- },
- mentuzCampList:[],
- medicaCampList:[],
- shopMainPros:[],
- shopScope:[],
- mainProEdit: '',
- shopScopeEdit:'',
- HonorImagesList:[],
- productImagesList:[],
- isPreviewImage:false, //预览图片开关
- isMainproCheck:false,
- isIphoneX:this.$store.state.isIphoneX,
- }
- },
- onLoad() {
- },
- created() {
- this.shopInfo();
- },
- methods:{
- chooseMaleLike(e){
- this.isMainproCheck = true
- this.params.mainpro = this.checkLikes(e,this.mentuzCampList)
- },
- chooseMaleLikes(e){
- this.isMainproCheck = true
- this.params.businessScope = this.checkLikes(e,this.medicaCampList)
- },
- checkLikes(e,list){
- let values = e.detail.value;
- let arr = []
- list.forEach(item => {
- if(values.indexOf(item.value) >= 0){
- this.$set(item,'checked',true)
- arr.push(item.name)
- }else{
- this.$set(item,'checked',false)
- }
- })
- console.log(arr)
- return arr.join('/')
- },
- setNewMainpro(arr){//回显处理主营内容
- let _ARRAY = [];
- arr.split('/').forEach((item,index) =>{
- if(item != ""){
- let _OBJ = {value:(index+1).toString(),name:item,checked:true}
- _ARRAY.push(_OBJ)
- }
- })
- return _ARRAY
- },
- shopInfo(){
- this.$api.getStorage().then((resolve) =>{
- this.params.userID = resolve.userID;
- this.params.shopID = resolve.shopID;
- console.log(resolve)
- this.UserService.SupplierShopInfo({userId:this.params.userID}).then(response =>{
- if(response.code==0){
- console.log(response)
- let shop = response.data.shop;
- let user = response.data.user;
- this.params.name = shop.name;
- this.params.sname = shop.sname;
- this.params.linkMan = shop.linkMan;
- this.params.email = user.email;
- this.addressData.address = shop.provincialAddress;
- this.params.address = shop.address;
- this.params.provinceID = shop.provinceID;
- this.params.cityID = shop.cityID;
- this.params.townID = shop.townID;
- if(shop.contractPhone!=""&&shop.contractPhone!=null){
- this.params.contractPhone = shop.contractPhone;
- }
- if(shop.fax!=""&&shop.fax!=null){
- this.params.fax = shop.fax;
- }
- this.params.legalPerson = shop.legalPerson;
- this.params.registeredCapital = shop.registeredCapital;
- this.params.nature = shop.nature;
- this.params.turnover = shop.turnover;
- this.params.firstShopType = shop.firstShopType ? shop.firstShopType:'';
- this.params.secondShopType = shop.secondShopType ? shop.secondShopType : '';
- this.params.medicalPracticeLicenseImg1 = shop.medicalPracticeLicenseImg1;
- this.params.info = shop.info;
- this.params.productDesc = shop.productDesc;
- this.params.socialCreditCode = shop.socialCreditCode;
- this.params.businessLicenseImage = shop.businessLicenseImage;
- this.params.logo = shop.logo;
- this.params.productionLicence = shop.productionLicence;
- this.params.hygienicLicense = shop.hygienicLicense;
- this.params.taxLicense = shop.taxLicense;
- this.HonorImagesList = response.data.certificateHonor;
- this.productImagesList = response.data.productCertification;
- if( response.data.certificateHonor!=''&& response.data.certificateHonor!=null){
- this.params.certificateHonor =this.HonorImagesList.toString()+',';
- }
- if( response.data.productCertification!=''&& response.data.productCertification!=null){
- this.params.productCertification =this.productImagesList.toString()+',';
- }
- if(shop.mainpro == "" || shop.mainpro == null){
- this.mentuzCampList = this.mentuzCampNullList
- }else{
- this.mentuzCampList = this.setNewMainpro(shop.mainpro)
- this.params.mainpro = shop.mainpro
- }
- if(shop.businessScope == "" || shop.businessScope == null){
- this.medicaCampList = this.medicaCampNullList
- }else{
- this.medicaCampList = this.setNewMainpro(shop.businessScope)
- this.params.businessScope = shop.businessScope
- }
- }
- })
- })
- },
- shopSubmit(){//提交修改
- console.log(this.params);
- if(this.params.name==''||this.params.name==null){
- this.$util.msg('请输入公司名称',2000);
- return
- }else if(this.params.townID==''||this.params.townID==null){
- this.$util.msg('请选择联系地址',2000);
- return
- }else if(this.params.address==''||this.params.address==null){
- this.$util.msg('请输入正确的联系地址',2000);
- return
- }else if(this.params.linkMan==''||this.params.linkMan==null){
- this.$util.msg('请输入正确的联系人姓名',2000);
- return
- }else if(this.params.legalPerson==''||this.params.legalPerson==null){
- this.$util.msg('请输入法人代表姓名',2000);
- return
- }else if(this.params.registeredCapital==''||this.params.registeredCapital==null){
- this.$util.msg('请输入注册资本',2000);
- return
- }else if(this.params.nature==''||this.params.nature==null){
- this.$util.msg('请输入公司性质',2000);
- return
- }else if(this.params.turnover==''||this.params.turnover==null){
- this.$util.msg('请输入年营业额',2000);
- return
- }else if(this.params.firstShopType==''||this.params.firstShopType==null){
- this.$util.msg('请选择公司类型',2000);
- return
- }else if(this.params.firstShopType==1 && this.params.secondShopType==""){
- this.$util.msg('请选择公司类型',2000);
- return
- }else if(this.params.mainpro==''||this.params.mainpro==null){
- this.$util.msg('请选择主营内容',2000);
- return
- }else if(this.params.businessScope==''||this.params.businessScope==null){
- this.$util.msg('请选择经营内容',2000);
- return
- }else if(this.params.info==''||this.params.info==null){
- this.$util.msg('请填写公司介绍',2000);
- return
- }else if(this.params.productDesc==''||this.params.productDesc==null){
- this.$util.msg('请填系列商品说明',2000);
- return
- }else if(this.params.socialCreditCode==''||this.params.socialCreditCode==null){
- this.$util.msg('请输入正确的统一社会信用代码',2000);
- return
- }else if(this.params.businessLicenseImage==''||this.params.businessLicenseImage==null){
- this.$util.msg('请上传营业执照图片',2000);
- return
- }else if(this.params.logo==''||this.params.logo==null){
- this.$util.msg('请上传公司logo',2000);
- return
- }else if(this.params.productionLicence==''||this.params.productionLicence==null){
- this.$util.msg('请上传生产许可证',2000);
- return
- }else if(this.params.hygienicLicense==''||this.params.hygienicLicense==null){
- this.$util.msg('请上传卫生许可证',2000);
- return
- }else if(this.params.taxLicense==''||this.params.taxLicense==null){
- this.$util.msg('请上传税务许可证',2000);
- return
- }else if(this.params.certificateHonor==''||this.params.certificateHonor==null){
- this.$util.msg('请上传荣誉证书',2000);
- return
- }else if(this.params.productCertification==''||this.params.productCertification==null){
- this.$util.msg('请上传产品证书',2000);
- return
- }else{
- this.UserService.SupplierModifiedData(this.params).then(res=>{
- if(res.code === 0){
- this.$util.msg('保存成功',2000,true,'success')
- setTimeout(()=>{
- uni.navigateBack();
- },2000)
- } else {
- this.$util.msg(res.msg,2000);
- this.loginLoading = false;
- }
- })
- }
- },
- mainProAdd(){//添加主营内容
- if (this.mainProEdit.length>0) {
- let obj = {name:this.mainProEdit,value:`${this.mentuzCampList.length+1}`};
- if(this.checkedArray(this.mainProEdit,this.mentuzCampList)){
- this.$util.msg('主营内容已存在!',2000)
- }else {
- this.mentuzCampList.push(obj);
- }
- }
- },
- shopScopeAdd(){ //经营内容
- if (this.shopScopeEdit.length>0) {
- let obj = {name:this.shopScopeEdit,value:`${this.medicaCampList.length+1}`};
- if(this.checkedArray(this.shopScopeEdit,this.medicaCampList)){
- this.$util.msg('主营内容已存在!',2000)
- }else {
- this.medicaCampList.push(obj);
-
- }
- }
- },
- checkedArray(content,arr){//判断主营内容是否已存在
- console.log(content,arr)
- for(var i in arr){
- if(arr[i].name == content){
- return true;
- }
- }
- return false;
- },
- radioChange(e){
- this.params.firstShopType = e.target.value;
- // if (e.target.value==1){
- // this.isfirstShow = true;
- // }else {
- // this.isfirstShow = false;
- // }
- console.log(e.target.value)
- },
- showViewerImageFn6(e) {//预览产品
- this.myPreviewImageFnlist(this.productImagesList)
- },
- showViewerImageFn5(e) {//预览荣誉
- this.myPreviewImageFnlist(this.HonorImagesList)
- },
- showViewerImageFn4(e) {//预览税务
- this.myPreviewImageFn(this.params.taxLicense)
- },
- showViewerImageFn3(e) {//预览卫生
- this.myPreviewImageFn(this.params.hygienicLicense)
- },
- showViewerImageFn2(e) {//预览生产
- this.myPreviewImageFn(this.params.productionLicence)
- },
- showViewerImageFn1(e) {//预览logo
- this.myPreviewImageFn(this.params.logo)
- },
- showViewerImageFn(e) {//预览营业执照
- this.myPreviewImageFn(this.params.businessLicenseImage)
- },
- myPreviewImageFnlist(arr){//多张预览
- this.isPreviewImage = true;
- uni.previewImage({
- urls: arr,
- current: 0
- })
- },
- myPreviewImageFn(url){//单张预览
- this.isPreviewImage = true
- let mentuzArray = []
- mentuzArray.push(url)
- uni.previewImage({
- urls: mentuzArray,
- current: 0
- });
- },
- uploadproductImageFn(event){//产品证书
- uploadFileImage().then(res =>{
- this.productImagesList.push(JSON.parse(res.data).data);
- this.params.productCertification =this.productImagesList.toString()+',';
- })
- },
- uploadHonorImageFn(event){//荣誉证书上传
- uploadFileImage().then(res =>{
- this.HonorImagesList.push(JSON.parse(res.data).data);
- this.params.certificateHonor =this.HonorImagesList.toString()+',';
- })
- },
- uploadlogoImageFn(event){//上传公司logo
- uploadFileImage().then(res =>{
- this.params.logo = JSON.parse(res.data).data;
- })
- },
- uploadproductionLicenceImageFn(event){//上传生产
- uploadFileImage().then(res =>{
- this.params.productionLicence = JSON.parse(res.data).data;
- })
- },
- uploadhygienicLicenseImageFn(event){//上传卫生
- uploadFileImage().then(res =>{
- this.params.hygienicLicense = JSON.parse(res.data).data;
- })
- },
- uploadtaxLicenseImageFn(event){//上传税务
- uploadFileImage().then(res =>{
- this.params.taxLicense = JSON.parse(res.data).data;
- })
- },
- uploadBusinessLicenseImageFn(event){//上传营业执照图片
- uploadFileImage().then(res =>{
- this.params.businessLicenseImage = JSON.parse(res.data).data;
- })
- },
- uploadzizhiImageFn(event){//上传医疗图片
- uploadFileImage().then(res =>{
- this.params.medicalPracticeLicenseImg1 = JSON.parse(res.data).data;
- })
- },
- removeGoodsImagesFn(index){//删除荣誉图片
- this.HonorImagesList.splice(index,1);
- this.params.certificateHonor = this.HonorImagesList.toString()+',';
- },
- removeproductImagesFn(index){//删除产品图片
- this.productImagesList.splice(index,1);
- this.params.productCertification = this.productImagesList.toString()+',';
- },
- deletaxImage(){//删除卫生
- this.params.taxLicense = '';
- },
- deletehygienicImage(){//删除卫生
- this.params.hygienicLicense = '';
- },
- deleteproducImage(){//删除生产
- this.params.productionLicence = '';
- },
- deletelogoImage(){//删除logo图片
- this.params.logo = '';
- },
- deleteBusinessImage(){//删除营业执照图片
- this.params.businessLicenseImage = '';
- },
- deleteMedicalImage(){//删除商品图片
- this.medicalPracticeLicenseImg1 = '';
- },
- secondypeRidio(item){
- this.params.secondShopType = item.value;
- // if (item.value==3){
- // this.issecondshow = true;
- // }else {
- // this.issecondshow = false;
- // }
- },
- showMulLinkageThreePicker() {//三级地址联动
- this.isShowInput = true
- this.$refs.mpvueCityPicker.show()
- },
- onConfirm(e) {//获取选择的地址信息
- console.log('地址',e);
- this.addressData.address = e.name;
- this.addressData.townID = e.townCode;
- this.addressData.cityID = e.cityCode;
- this.addressData.provinceID = e.provinceCode;
- this.params.townID = this.addressData.townID;
- this.params.provinceID = this.addressData.provinceID;
- this.params.cityID = this.addressData.cityID;
- this.params.address = this.addressData.address;
- },
- onConfirmbrand(e){
- this.brandname = e.name;
- },
- },
- }
- </script>
- <style lang="scss">
- .container{
- width: 100%;
- height: auto;
- }
- .row{
- line-height: 80rpx;
- background: #f7f7f7;
- padding: 0 24rpx;
- .info-title{
- font-size: $font-size-30;
- color: $text-color;
- font-weight: bold;
- }
- }
- .placeholder{
- color: #b2b2b2;
- }
- .info-from{
- width: 702rpx;
- height: 90rpx;
- line-height: 90rpx;
- border-bottom: 2rpx solid #e1e1e1;
- margin: auto;
- position: relative;
- .label{
- width: 112rpx;
- text-align: left;
- font-size: $font-size-28;
- color: #666666;
- line-height: 90rpx;
- float: left;
- &.Code{
- width: 170rpx;
- }
- }
- .row-input{
- width: 520rpx;
- padding-left:10rpx;
- font-size: $font-size-28;
- color: $text-color;
- line-height: 90rpx;
- float: left;
- height: 90rpx;
- margin-left: 50rpx;
- &.Code{
- width: 470rpx;
- }
- .icon-xiayibu{
- position: absolute;
- right: 0;
- color: #b2b2b2;
- }
- .none{
- color: #b2b2b2;
- }
- }
- }
- .address-details{
- height: 146rpx;
- border-bottom: 2rpx solid #e1e1e1;
- width: 702rpx;
- margin: auto;
- font-size: $font-size-28;
- padding-top: 20rpx;
- }
- input[type="text"]::placeholder,textarea::placeholder {color: #b2b2b2;font-size: $font-size-28;}
- .info-email{
- color: #fea785;
- font-size: $font-size-20;
- padding-left: 24rpx ;
- }
- .ShopTyperadio{
- overflow: hidden;
- height: auto;
- border: 0;
- .radio{
- float: left;
- margin-right: 77rpx;
- .iconfont{
- margin-right: 10rpx;
- font-size: $font-size-36;
- }
- .icon-weixuanze{
- color: #b2b2b2;
- }
- .icon-yixuanze{
- color: $color-system;
- }
- }
- }
- .active{
- color: $color-system;
- }
- .secondTyperadio{
- overflow: hidden;
- height: auto;
- padding: 20rpx 24rpx;
- margin-bottom: 20rpx;
- color: #999999;
- .radio{
- float: left;
- margin-right: 20rpx;
- .secondRadio{
- border: 2rpx solid #e1e1e1;
- padding: 0 30rpx;
- text-align: center;
- line-height: 42rpx;
- font-size: $font-size-26;
- border-radius: 21rpx;
- }
- }
- }
- .zizhi{
- .uploadImage{
- padding: 0 24rpx;
- &.list-image{
- overflow: hidden;
- display: flex;
- overflow-x: auto;
- flex-shrink: 0;
- padding-top: 15rpx;
-
- max-width: 702rpx;
- .formLine-file{
- float: left;
- display: flex;
- flex-shrink: 0;
- margin:15rpx 15rpx 15rpx 0rpx;
- }
- .form-upload-image{
- float: left;
- -webkit-flex-shrink: 0;
- flex-shrink: 0;
- position: relative;
- display: inline-block;
- margin:15rpx 15rpx 15rpx 0rpx;
- display: flex;
- align-items: center;
- }
- }
- .form-upload-image{
- width: 200rpx;
- height:180rpx;
- position: relative;
- .upload-img{
- width: 100%;
- height: 100%;
- }
- .icon-shanchu1{
- position: absolute;
- top: -20rpx;
- right:-15rpx;
- color: #f94b4b;
- font-size: $font-size-36;
- }
- }
- .formLine-file{
- width:200rpx;
- height: 180rpx;
- display: inline-block;
- .file-zizhi{
- background: url('https://static.caimei365.com/app/img/upload/club-yiliao.png') no-repeat;
- width:100%;
- height:100%;
- background-size: 100% 100%;
- }
- .iconImage{
- width: 100%;
- height:100%;
- &.file-biss{
- background: url('https://static.caimei365.com/app/img/upload/club-zizhi.png') no-repeat;
- background-size: 100% 100%;
- }
- &.file-logo{
- background: url('https://static.caimei365.com/app/img/upload/icon-logo.png') no-repeat;
- background-size: 100% 100%;
- }
- &.file-produce{
- background: url('https://static.caimei365.com/app/img/upload/icon-produce.png') no-repeat;
- background-size: 100% 100%;
- }
- &.file-health{
- background: url('https://static.caimei365.com/app/img/upload/icon-health.png') no-repeat;
- background-size: 100% 100%;
- }
- &.file-tax{
- background: url('https://static.caimei365.com/app/img/upload/icon-tax.png') no-repeat;
- background-size: 100% 100%;
- }
- &.file-honor{
- background: url('https://static.caimei365.com/app/img/upload/icon-honor.png') no-repeat;
- background-size: 100% 100%;
- }
- &.file-product{
- background: url('https://static.caimei365.com/app/img/upload/icon-product.png') no-repeat;
- background-size: 100% 100%;
- }
-
- }
- }
- .form-upload-tips{
- display: inline-block;
- vertical-align: top;
- position: relative;
- margin-left: 20rpx;
- .icon-wenhao{
- font-size: 41rpx;
- color:#1890f9 ;
- }
- .wen-tips{
- width: 360rpx;
- height: 64rpx;
- line-height: 64rpx;
- text-align: center;
- color: #FFF;
- font-size: 28rpx;
- background-color: #1890f9;
- position: absolute;
- bottom: -80rpx;
- left: -4rpx;
- border-radius: 2rpx;
- display: none ;
- }
- .wen-tips:before {
- content: '';
- width: 0px;
- height: 0px;
- border-width: 20rpx;
- border-style: solid;
- border-color: transparent transparent #1890f9 transparent;
- position: absolute;
- top: -35rpx;
- left: 10rpx;
- }
- }
- }
- }
- .form-upload-tips:hover .wen-tips {display: block;}
- .business{overflow: hidden;margin: 20rpx 0;}
- .business-info{
- float: left;
- margin-left: 60rpx;
- width: 550rpx;
- }
- .info2-title{
- padding: 0 0 24rpx 24rpx;
- font-size: $font-size-28;
- color: #666666;
- &.zizhi-title{
- padding: 24rpx;
- &.hoor{padding: 24rpx 24rpx 0 24rpx;}
- }
- &.business-title{
- float: left;
- }
-
- }
- .addbusiness{
- margin: 20rpx 0;
- .other{
- width: 350rpx;
- height: 64rpx;
- border: 2rpx solid #b2b2b2;
- border-radius: 45rpx;
- text-align: center;
- line-height: 64rpx;
- padding-left: 10rpx;
- font-size: 28rpx;
- display: inline-block;
- }
- .button{
- width: 160rpx;
- height: 64rpx;
- text-align: center;
- line-height: 64rpx;
- display: inline-block;
- color: $color-system;
- background:#ffe6dc ;
- margin-left: 15rpx;
- border-radius: 45rpx;
- }
- }
- .row-group{
- .row-text{
- display: inline-block;
- font-size: 28rpx;
- color: #333333;
- }
- .row-input{
- width: 50%;
- display: inline-block;
- margin-bottom: 10rpx;
- }
- .diyBox{
- margin-bottom: 5px;
- // width: 33%;
- margin-right: 70rpx;
- display: inline-block;
- }
-
- }
- radio .wx-radio-input{
- border-radius: 50%;
- width: 36rpx;
- height: 36rpx;
- }
- radio .wx-radio-input.wx-radio-input-checked::before{
- font-size:28rpx;
- }
- checkbox .wx-checkbox-input{
- border-radius: 50%;
- width: 36rpx;
- height: 36rpx;
- }
- /* 选中后的 背景样式 */
- checkbox .wx-checkbox-input.wx-checkbox-input-checked{
- background: #E15616;
- border: 2rpx solid #e15616;
- }
- checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
- border-radius: 50%;
- width: 36rpx;
- height: 36rpx;
- line-height: 36rpx;
- text-align: center;
- font-size:20rpx;
- color:#fff;
- // background: transparent;
- transform:translate(-50%, -50%) scale(1);
- -webkit-transform:translate(-50%, -50%) scale(1);
- }
- .info{
- margin: 20rpx 0;
- textarea{
- width: 680rpx;
- height: 200rpx;
- border: 2rpx solid #b2b2b2;
- border-radius: 6rpx;
- font-size: $font-size-28;
- padding: 10rpx;
- margin: auto;
- line-height: 48rpx;
- }
- }
- .wrap-Btn{
- width: 100%;
- height: 90rpx;
- position: fixed;
- left: 0;
- bottom: 0;
- padding-top: 40rpx;
- background-color: #FFFFFF;
- z-index: 999;
- .confirmBbtn{
- width: 600rpx;
- height: 90rpx;
- line-height: 90rpx;
- text-align: center;
- color: #fff;
- background:$btn-confirm;
- border-radius: 45rpx;
- }
- }
- </style>
|