information.vue 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. <template name='information'>
  2. <view class="container">
  3. <view class="wrap-info">
  4. <view class="row">
  5. <view class="info-title">基本信息</view>
  6. </view>
  7. <view class="info-from">
  8. <view class="label">公司名称</view>
  9. <input class="row-input" type="text" placeholder="请与营业执照的注册名称保持一致" maxlength="6"/>
  10. </view>
  11. <view class="info-from">
  12. <view class="label">公司简称</view>
  13. <input class="row-input" type="text" placeholder="请输入公司简称" maxlength="6"/>
  14. </view>
  15. <view class="info-from">
  16. <view class="label">公司地址</view>
  17. <view class="row-input" @click="showMulLinkageThreePicker">
  18. <text :class="addressData.address === '请选择公司所在地区' ? 'none' : ''">
  19. {{addressData.address}}
  20. </text>
  21. <text class="iconfont icon-xiayibu"></text>
  22. </view>
  23. </view>
  24. <textarea value="" placeholder="请填写详细地址,如街道/小区/门牌等" maxlength="50" class="address-details"/>
  25. <view class="info-from">
  26. <view class="label">联系人</view>
  27. <input class="row-input" type="text" placeholder="请输入联系人姓名" maxlength="6"/>
  28. </view>
  29. <view class="info-from">
  30. <view class="label">邮箱</view>
  31. <input class="row-input" type="text" placeholder="请输入邮箱地址 " maxlength="6"/>
  32. </view>
  33. <text class="info-email">邮箱可用作登录账号,请使用公司邮箱或法人邮箱</text>
  34. <view class="info-from">
  35. <view class="label">固定电话</view>
  36. <input class="row-input" type="text" placeholder="请在号码前加区 " maxlength="6"/>
  37. </view>
  38. <view class="info-from">
  39. <view class="label">传真</view>
  40. <input class="row-input" type="text" placeholder="请输入公司传真号 " maxlength="6"/>
  41. </view>
  42. <view class="info-from">
  43. <view class="label">法人代表</view>
  44. <input class="row-input" type="text" placeholder="请输入公司法人代表姓名 " maxlength="6"/>
  45. </view>
  46. <view class="info-from">
  47. <view class="label">注册资本</view>
  48. <input class="row-input" type="text" placeholder="请填写公司注册资本 " maxlength="6"/>
  49. </view>
  50. <view class="info-from">
  51. <view class="label">公司性质</view>
  52. <input class="row-input" type="text" placeholder="请填写公司性质 " maxlength="6"/>
  53. </view>
  54. <view class="info-from">
  55. <view class="label">年营业额</view>
  56. <input class="row-input" type="text" placeholder="请输入公司年营业额 " maxlength="6"/>
  57. </view>
  58. </view>
  59. <view class="wrap-content">
  60. <view class="row">
  61. <view class="info-title">经营信息</view>
  62. </view>
  63. <view class="info-from" style="border: 0;">
  64. <view class="label">公司类型</view>
  65. <view class="row-input ShopTyperadio">
  66. <radio-group>
  67. <label class="radio" v-for="(item, index) in typename" :key="item.value" @click="firstShopTypeRidio(item)">
  68. <radio :value="item.value" color='#E15616'/>{{item.name}}
  69. </label>
  70. </radio-group>
  71. </view>
  72. </view>
  73. <view class="secondTyperadio" v-if="isfirstShow" >
  74. <view class="radio" v-for="(item,index) in secondtype" :key="index" @click="secondypeRidio(item)" :class="secontype==item.value?'active':''">
  75. <view class="secondRadio">{{item.name}}</view>
  76. </view>
  77. </view>
  78. <view class="zizhi" v-if="issecondshow">
  79. <view class="info2-title zizhi-title">资质</view>
  80. <view class="uploadImage">
  81. <view class="form-upload-image" v-if="params.medicalPracticeLicenseImg1!=''">
  82. <image class="upload-img" :src="params.medicalPracticeLicenseImg1" alt="" ></image>
  83. <view class="iconfont icon-shanchu1" @click="deleteMedicalImage()"></view>
  84. </view>
  85. <view class="formLine-file" @click="uploadzizhiImageFn" v-else>
  86. <view class="file-zizhi"></view>
  87. </view>
  88. <view class="form-upload-tips">
  89. <text class="iconfont icon-wenhao"></text>
  90. <view class="wen-tips">点击图片可放大图片</view>
  91. </view>
  92. </view>
  93. </view>
  94. <view class="business">
  95. <view class="info2-title business-title">主营内容</view>
  96. <view class="business-info">
  97. <checkbox-group class="row-group">
  98. <label class="diyBox second" v-for="(item, index) in mentuzCampNullList" :key="item.value">
  99. <checkbox :value="item.value" :class="{on: item.checked}" v-model="shopMainPros" ></checkbox>
  100. <view class="row-text">{{item.name}}</view>
  101. </label>
  102. </checkbox-group>
  103. <view class="addbusiness">
  104. <input class="row-input other" type="text" placeholder="请输入自定义项目" @blur="onBlurInput" maxlength="5"/>
  105. <button type="default" class="button" @click.stop="addCustomItem">确认添加</button>
  106. </view>
  107. </view>
  108. </view>
  109. <view class="business">
  110. <view class="info2-title business-title">经营范围</view>
  111. <view class="business-info">
  112. <checkbox-group class="row-group">
  113. <label class="row-input" v-for="(item, index) in Scopelist" :key="item.value">
  114. <checkbox :value="item.value" :class="{on: item.checked}" v-model="shopScope"></checkbox>
  115. <view class="row-text">{{item.name}}</view>
  116. </label>
  117. </checkbox-group>
  118. <view class="addbusiness">
  119. <input class="row-input other" type="text" placeholder="请输入自定义经营范围" @blur="onBlurInput" maxlength="5"/>
  120. <button type="default" class="button" @click.stop="shopScopeAdd">确认添加</button>
  121. </view>
  122. </view>
  123. </view>
  124. <view class="info">
  125. <view class="info2-title">公司介绍</view>
  126. <textarea placeholder="公司简介会在公司介绍页面展示,有助于机构更好的了解您, 建议从个人规模、代理产品、机构服务、荣誉资质这4方面进行介绍" name="textarea"/>
  127. </view>
  128. <view class="info">
  129. <view class="info2-title">主打系列商品说明</view>
  130. <textarea placeholder="请输入主打系列商品说明" name="textarea"/>
  131. </view>
  132. </view>
  133. <view class="wrap-image">
  134. <view class="row">
  135. <view class="info-title">资质证明</view>
  136. </view>
  137. <view class="info-from">
  138. <view class="label Code">营业执照编号</view>
  139. <input class="row-input Code" v-model.trim="params.socialCreditCode" type="text" placeholder="请输入公司营业执照编号" maxlength="18"/>
  140. </view>
  141. <view class="zizhi">
  142. <view class="info2-title zizhi-title">营业执照图片</view>
  143. <view class="uploadImage">
  144. <view class="form-upload-image" v-if="params.businessLicenseImage!=''">
  145. <image class="upload-img" :src="params.businessLicenseImage" @click="showViewerImageFn()" ></image>
  146. <view class="iconfont icon-shanchu1" @click="deleteBusinessImage()"></view>
  147. </view>
  148. <view class="formLine-file" @click="uploadBusinessLicenseImageFn" v-else>
  149. <view class="file-biss iconImage"></view>
  150. </view>
  151. </view>
  152. </view>
  153. <view class="zizhi">
  154. <view class="info2-title zizhi-title">公司LOGO</view>
  155. <view class="uploadImage">
  156. <view class="form-upload-image" v-if="params.logo!=''">
  157. <image class="upload-img" :src="params.logo" alt="" @click="showViewerImageFn1()"></image>
  158. <view class="iconfont icon-shanchu1" @click="deletelogoImage()"></view>
  159. </view>
  160. <view class="formLine-file" @click="uploadlogoImageFn" v-else>
  161. <view class="file-logo iconImage"></view>
  162. </view>
  163. </view>
  164. </view>
  165. <view class="zizhi">
  166. <view class="info2-title zizhi-title">生产许可证</view>
  167. <view class="uploadImage">
  168. <view class="form-upload-image" v-if="params.productionLicence!=''">
  169. <image class="upload-img" :src="params.productionLicence" alt="" @click="showViewerImageFn2()"></image>
  170. <view class="iconfont icon-shanchu1" @click="deleteproducImage()"></view>
  171. </view>
  172. <view class="formLine-file" @click="uploadproductionLicenceImageFn" v-else>
  173. <view class="file-produce iconImage"></view>
  174. </view>
  175. </view>
  176. </view>
  177. <view class="zizhi">
  178. <view class="info2-title zizhi-title">卫生许可证</view>
  179. <view class="uploadImage">
  180. <view class="form-upload-image" v-if="params.hygienicLicense!=''">
  181. <image class="upload-img" :src="params.hygienicLicense" alt="" @click="showViewerImageFn3()"></image>
  182. <view class="iconfont icon-shanchu1" @click="deletehygienicImage()"></view>
  183. </view>
  184. <view class="formLine-file" @click="uploadhygienicLicenseImageFn" v-else>
  185. <view class="file-health iconImage"></view>
  186. </view>
  187. </view>
  188. </view>
  189. <view class="zizhi">
  190. <view class="info2-title zizhi-title">税务许可证</view>
  191. <view class="uploadImage">
  192. <view class="form-upload-image" v-if="params.taxLicense!=''">
  193. <image class="upload-img" :src="params.taxLicense" alt="" @click="showViewerImageFn4()"></image>
  194. <view class="iconfont icon-shanchu1" @click="deletaxImage()"></view>
  195. </view>
  196. <view class="formLine-file" @click="uploadtaxLicenseImageFn" v-else>
  197. <view class="file-tax iconImage"></view>
  198. </view>
  199. </view>
  200. </view>
  201. <view class="zizhi">
  202. <view class="info2-title zizhi-title hoor">荣誉证书</view>
  203. <view class="uploadImage list-image">
  204. <view class="formLine-file" @click="uploadHonorImageFn" v-if="HonorImagesList.length<5" >
  205. <view class="file-tax iconImage"></view>
  206. </view>
  207. <view class="form-upload-image" v-for="(item, index) in HonorImagesList" :key="index">
  208. <image class="upload-img" :src="item" alt="" @click="showViewerImageFn5()"></image>
  209. <view class="iconfont icon-shanchu1" @click="removeGoodsImagesFn(index)"></view>
  210. </view>
  211. </view>
  212. </view>
  213. <view class="zizhi">
  214. <view class="info2-title zizhi-title hoor">产品证书</view>
  215. <view class="uploadImage list-image">
  216. <view class="formLine-file" @click="uploadproductImageFn" v-if="productImagesList.length<5" >
  217. <view class="file-tax iconImage"></view>
  218. </view>
  219. <view class="form-upload-image" v-for="(item, index) in productImagesList" :key="index">
  220. <image class="upload-img" :src="item" alt="" @click="showViewerImageFn6()"></image>
  221. <view class="iconfont icon-shanchu1" @click="removeproductImagesFn(index)"></view>
  222. </view>
  223. </view>
  224. </view>
  225. </view>
  226. <view class="wrap-Btn">
  227. <button type="default" class="confirmBbtn" @click="shopSubmit">确定</button>
  228. </view>
  229. <mpvue-city-picker :themeColor="themeColor"
  230. ref="mpvueCityPicker"
  231. :pickerValueDefault="cityPickerValueDefault"
  232. @onCancel="onCancel"
  233. @onConfirm="onConfirm">
  234. </mpvue-city-picker>
  235. </view>
  236. </template>
  237. <script>
  238. import mpvueCityPicker from '@/components/mpvue-citypicker/mpvueCityPicker.vue'
  239. import { uploadFileImage } from "@/api/utils.js"
  240. import { mapState,mapMutations } from 'vuex';
  241. export default{
  242. name:'information',
  243. components:{
  244. mpvueCityPicker,
  245. },
  246. data(){
  247. return{
  248. isShowInput:false,
  249. firsttype:0,
  250. secontype:0,
  251. isfirstShow:false,
  252. issecondshow:false,
  253. addressData:{
  254. address:'请选择公司所在地区',
  255. townID:'', //区ID
  256. cityID:'', //区ID
  257. provinceID:'', //区ID
  258. addressDetail: '', //地址
  259. },
  260. typename:[
  261. {name:'医疗',value:'1'},
  262. {name:'非医疗',value:'2'}
  263. ],
  264. secondtype:[
  265. {name:'一类器械',value:'1'},
  266. {name:'二类器械',value:'2'},
  267. {name:'三类器械',value:'3'},
  268. {name:'其它',value:'4'}
  269. ],
  270. mentuzCampNullList:[
  271. {value:'1',name:'产品'},
  272. {value:'2',name:'仪器'},
  273. {value:'3',name:'服务'}
  274. ],
  275. Scopelist:[
  276. {value:'1',name:'仪器护理类'},
  277. {value:'2',name:'护肤品类'},
  278. {value:'3',name:'纹绣类'},
  279. {value:'4',name:'美体内衣'},
  280. {value:'5',name:'整形耗材'},
  281. {value:'6',name:'国际品牌'},
  282. {value:'7',name:'美胸类'},
  283. {value:'8',name:'健康保健类'},
  284. {value:'9',name:'面膜类'},
  285. {value:'10',name:'抗衰老'},
  286. {value:'11',name:'生殖保养'},
  287. {value:'12',name:'健康养生'},
  288. {value:'13',name:'纤体减肥'}
  289. ],
  290. shopMainPros:[],
  291. shopScope:[],
  292. params:{
  293. medicalPracticeLicenseImg1:'',//三级器械/医疗执照
  294. socialCreditCode:'',//营业执照编号
  295. businessLicenseImage:'',//营业执照
  296. logo:'',//公司logo
  297. productionLicence:'',//生产
  298. hygienicLicense:'',//卫生
  299. taxLicense:'',//税务
  300. certificateHonor:'',//荣誉
  301. productCertification:'',//产品
  302. },
  303. HonorImagesList:[],
  304. productImagesList:[],
  305. }
  306. },
  307. methods:{
  308. uploadproductImageFn(event){//产品证书
  309. uploadFileImage().then(res =>{
  310. this.productImagesList.push(JSON.parse(res.data).data);
  311. this.params.productCertification =this.productImagesList.toString()+',';
  312. })
  313. },
  314. uploadHonorImageFn(event){//荣誉证书上传
  315. uploadFileImage().then(res =>{
  316. this.HonorImagesList.push(JSON.parse(res.data).data);
  317. this.params.certificateHonor =this.HonorImagesList.toString()+',';
  318. })
  319. },
  320. uploadlogoImageFn(event){//上传公司logo
  321. uploadFileImage().then(res =>{
  322. this.params.logo = JSON.parse(res.data).data;
  323. })
  324. },
  325. uploadproductionLicenceImageFn(event){//上传生产
  326. uploadFileImage().then(res =>{
  327. this.params.productionLicence = JSON.parse(res.data).data;
  328. })
  329. },
  330. uploadhygienicLicenseImageFn(event){//上传卫生
  331. uploadFileImage().then(res =>{
  332. this.params.hygienicLicense = JSON.parse(res.data).data;
  333. })
  334. },
  335. uploadtaxLicenseImageFn(event){//上传税务
  336. uploadFileImage().then(res =>{
  337. this.params.taxLicense = JSON.parse(res.data).data;
  338. })
  339. },
  340. uploadBusinessLicenseImageFn(event){//上传营业执照图片
  341. uploadFileImage().then(res =>{
  342. this.params.businessLicenseImage = JSON.parse(res.data).data;
  343. })
  344. },
  345. uploadzizhiImageFn(event){//上传医疗图片
  346. uploadFileImage().then(res =>{
  347. this.params.medicalPracticeLicenseImg1 = JSON.parse(res.data).data;
  348. })
  349. },
  350. removeGoodsImagesFn(index){//删除荣誉图片
  351. this.HonorImagesList.splice(index,1);
  352. this.params.certificateHonor = this.HonorImagesList.toString()+',';
  353. },
  354. removeproductImagesFn(index){//删除产品图片
  355. this.productImagesList.splice(index,1);
  356. this.params.productCertification = this.productImagesList.toString()+',';
  357. },
  358. deletaxImage(){//删除卫生
  359. this.params.taxLicense = '';
  360. },
  361. deletehygienicImage(){//删除卫生
  362. this.params.hygienicLicense = '';
  363. },
  364. deleteproducImage(){//删除生产
  365. this.params.productionLicence = '';
  366. },
  367. deletelogoImage(){//删除logo图片
  368. this.params.logo = '';
  369. },
  370. deleteBusinessImage(){//删除营业执照图片
  371. this.params.businessLicenseImage = '';
  372. },
  373. deleteMedicalImage(){//删除商品图片
  374. this.medicalPracticeLicenseImg1 = '';
  375. },
  376. secondypeRidio(item){
  377. this.secontype = item.value;
  378. if (item.value==3){
  379. this.issecondshow = true;
  380. }else {
  381. this.issecondshow = false;
  382. }
  383. },
  384. firstShopTypeRidio(item){
  385. this.firsttype = item.value;
  386. if (item.value==1){
  387. this.isfirstShow = true;
  388. }else {
  389. this.isfirstShow = false;
  390. }
  391. },
  392. showMulLinkageThreePicker() {//三级地址联动
  393. this.isShowInput = true
  394. this.$refs.mpvueCityPicker.show()
  395. },
  396. onConfirm(e) {//获取选择的地址信息
  397. console.log('地址',e);
  398. this.addressData.address = e.name;
  399. this.addressData.townID = e.townCode;
  400. this.addressData.cityID = e.cityCode;
  401. this.addressData.provinceID = e.provinceCode;
  402. this.secondParams.townId = this.addressData.townID;
  403. this.secondParams.address = this.addressData.address;
  404. },
  405. onConfirmbrand(e){
  406. this.brandname = e.name;
  407. },
  408. }
  409. }
  410. </script>
  411. <style lang="scss">
  412. .row{
  413. line-height: 80rpx;
  414. background: #f7f7f7;
  415. padding: 0 24rpx;
  416. .info-title{
  417. font-size: $font-size-30;
  418. color: $text-color;
  419. font-weight: bold;
  420. }
  421. }
  422. .info-from{
  423. width: 702rpx;
  424. height: 90rpx;
  425. line-height: 90rpx;
  426. border-bottom: 2rpx solid #e1e1e1;
  427. margin: auto;
  428. position: relative;
  429. .label{
  430. width: 112rpx;
  431. text-align: left;
  432. font-size: $font-size-28;
  433. color: #666666;
  434. line-height: 90rpx;
  435. float: left;
  436. &.Code{
  437. width: 170rpx;
  438. }
  439. }
  440. .row-input{
  441. width: 520rpx;
  442. padding-left:10rpx;
  443. font-size: $font-size-28;
  444. color: $text-color;
  445. line-height: 90rpx;
  446. float: left;
  447. height: 90rpx;
  448. margin-left: 50rpx;
  449. &.Code{
  450. width: 470rpx;
  451. }
  452. .icon-xiayibu{
  453. position: absolute;
  454. right: 0;
  455. color: #b2b2b2;
  456. }
  457. .none{
  458. color: #b2b2b2;
  459. }
  460. }
  461. }
  462. .address-details{
  463. height: 146rpx;
  464. border-bottom: 2rpx solid #e1e1e1;
  465. width: 702rpx;
  466. margin: auto;
  467. font-size: $font-size-28;
  468. padding-top: 20rpx;
  469. }
  470. input[type="text"]::placeholder,textarea::placeholder {color: #b2b2b2;font-size: $font-size-28;}
  471. .info-email{
  472. color: #fea785;
  473. font-size: $font-size-20;
  474. padding-left: 24rpx ;
  475. }
  476. .ShopTyperadio{
  477. overflow: hidden;
  478. height: auto;
  479. border: 0;
  480. .radio{
  481. float: left;
  482. margin-right: 60rpx;
  483. .iconfont{
  484. margin-right: 10rpx;
  485. font-size: $font-size-36;
  486. }
  487. .icon-weixuanze{
  488. color: #b2b2b2;
  489. }
  490. .icon-yixuanze{
  491. color: $color-system;
  492. }
  493. }
  494. }
  495. .active{
  496. color: $color-system;
  497. }
  498. .secondTyperadio{
  499. overflow: hidden;
  500. height: auto;
  501. padding: 0 24rpx;
  502. margin-bottom: 20rpx;
  503. color: #999999;
  504. .radio{
  505. float: left;
  506. margin-right: 20rpx;
  507. .secondRadio{
  508. border: 2rpx solid #e1e1e1;
  509. padding: 0 30rpx;
  510. text-align: center;
  511. line-height: 42rpx;
  512. font-size: $font-size-26;
  513. border-radius: 21rpx;
  514. }
  515. }
  516. }
  517. .zizhi{
  518. .uploadImage{
  519. padding: 0 24rpx;
  520. &.list-image{
  521. overflow: hidden;
  522. display: flex;
  523. overflow-x: auto;
  524. padding-top: 20rpx;
  525. .formLine-file{
  526. float: left;
  527. }
  528. .form-upload-image{
  529. float: left;
  530. -webkit-flex-shrink: 0;
  531. flex-shrink: 0;
  532. position: relative;
  533. display: inline-block;
  534. margin: 0 15rpx;
  535. }
  536. }
  537. .form-upload-image{
  538. width: 256rpx;
  539. height:180rpx;
  540. position: relative;
  541. .upload-img{
  542. width: 100%;
  543. height: 100%;
  544. }
  545. .icon-shanchu1{
  546. position: absolute;
  547. top: -20rpx;
  548. right:-15rpx;
  549. color: #f94b4b;
  550. font-size: $font-size-36;
  551. }
  552. }
  553. .formLine-file{
  554. width: 270rpx;
  555. height: 200rpx;
  556. display: inline-block;
  557. .file-zizhi{
  558. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-zizhi.png') no-repeat;
  559. width: 270rpx;
  560. height: 200rpx;
  561. }
  562. .iconImage{
  563. width: 256rpx;
  564. height:180rpx;
  565. &.file-biss{
  566. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-business(1).png') no-repeat;
  567. }
  568. &.file-logo{
  569. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-logo.png') no-repeat;
  570. }
  571. &.file-produce{
  572. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-produce.png') no-repeat;
  573. }
  574. &.file-health{
  575. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-health.png') no-repeat;
  576. }
  577. &.file-tax{
  578. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-tax.png') no-repeat;
  579. }
  580. &.file-honor{
  581. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-honor.png') no-repeat;
  582. }
  583. &.file-product{
  584. background: url('https://admin-b.caimei365.com/userfiles/1/images/photo/2020/11/icon-product.png') no-repeat;
  585. }
  586. }
  587. }
  588. .form-upload-tips{
  589. display: inline-block;
  590. vertical-align: top;
  591. position: relative;
  592. .icon-wenhao{
  593. font-size: 41rpx;
  594. color:#1890f9 ;
  595. }
  596. .wen-tips{
  597. width: 360rpx;
  598. height: 64rpx;
  599. line-height: 64rpx;
  600. text-align: center;
  601. color: #FFF;
  602. font-size: 28rpx;
  603. background-color: #1890f9;
  604. position: absolute;
  605. bottom: -80rpx;
  606. left: -4rpx;
  607. border-radius: 2rpx;
  608. display: none ;
  609. }
  610. .wen-tips:before {
  611. content: '';
  612. width: 0px;
  613. height: 0px;
  614. border-width: 20rpx;
  615. border-style: solid;
  616. border-color: transparent transparent #1890f9 transparent;
  617. position: absolute;
  618. top: -35rpx;
  619. left: 10rpx;
  620. }
  621. .form-upload-tips:hover .wen-tips{display: block;}
  622. }
  623. }
  624. }
  625. .business{overflow: hidden;}
  626. .business-info{
  627. float: left;
  628. margin-left: 60rpx;
  629. width: 550rpx;
  630. }
  631. .info2-title{
  632. padding: 0 0 24rpx 24rpx;
  633. font-size: $font-size-28;
  634. color: #666666;
  635. &.zizhi-title{
  636. padding: 24rpx;
  637. &.hoor{padding: 24rpx 24rpx 0 24rpx;}
  638. }
  639. &.business-title{
  640. float: left;
  641. }
  642. }
  643. .addbusiness{
  644. margin: 20rpx 0;
  645. .other{
  646. width: 350rpx;
  647. height: 64rpx;
  648. border: 2rpx solid #b2b2b2;
  649. border-radius: 45rpx;
  650. text-align: center;
  651. line-height: 64rpx;
  652. padding-left: 10rpx;
  653. font-size: 28rpx;
  654. display: inline-block;
  655. }
  656. .button{
  657. width: 160rpx;
  658. height: 64rpx;
  659. text-align: center;
  660. line-height: 64rpx;
  661. display: inline-block;
  662. color: $color-system;
  663. background:#ffe6dc ;
  664. margin-left: 15rpx;
  665. border-radius: 45rpx;
  666. }
  667. }
  668. .row-group{
  669. .row-text{
  670. display: inline-block;
  671. }
  672. .row-input{
  673. width: 50%;
  674. display: inline-block;
  675. margin-bottom: 10rpx;
  676. }
  677. .diyBox{
  678. margin-right: 60rpx;
  679. }
  680. }
  681. radio .wx-radio-input{
  682. border-radius: 50%;
  683. width: 36rpx;
  684. height: 36rpx;
  685. }
  686. checkbox .wx-checkbox-input{
  687. border-radius: 50%;
  688. width: 36rpx;
  689. height: 36rpx;
  690. }
  691. /* 选中后的 背景样式 */
  692. checkbox .wx-checkbox-input.wx-checkbox-input-checked{
  693. background: #E15616;
  694. }
  695. checkbox .wx-checkbox-input.wx-checkbox-input-checked::before{
  696. border-radius: 50%;
  697. border: 2rpx solid #e15616;
  698. width: 36rpx;
  699. height: 36rpx;
  700. line-height: 36rpx;
  701. text-align: center;
  702. font-size:24rpx;
  703. color:#fff;
  704. background: transparent;
  705. transform:translate(-50%, -50%) scale(1);
  706. -webkit-transform:translate(-50%, -50%) scale(1);
  707. }
  708. .info{
  709. margin: 20rpx 0;
  710. textarea{
  711. width: 680rpx;
  712. height: 200rpx;
  713. border: 2rpx solid #b2b2b2;
  714. border-radius: 6rpx;
  715. font-size: $font-size-28;
  716. padding: 10rpx;
  717. margin: auto;
  718. line-height: 48rpx;
  719. }
  720. }
  721. .wrap-Btn{
  722. margin:100rpx auto;
  723. .confirmBbtn{
  724. width: 600rpx;
  725. height: 90rpx;
  726. line-height: 90rpx;
  727. text-align: center;
  728. color: #fff;
  729. background:$btn-confirm;
  730. border-radius: 45rpx;
  731. }
  732. }
  733. </style>