rapidRep.vue 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790
  1. <template>
  2. <view class="handler">
  3. <view class="body view-body">
  4. <view class="form_item column">
  5. <view class="title"><text class="required newicon newicon-bitian"></text>故障描述:</view>
  6. <uni-easyinput class="value" type="textarea" v-model="dataInfo.description" placeholder="请输入故障描述" :class="{formRed: isSubmit && !dataInfo.description.trim()}" />
  7. </view>
  8. <!-- <view class="candidate">
  9. <view class="candidate-item" v-for="item in candidateData" :key="item" @click="itemCandidate(item)">{{item.name}}</view>
  10. </view> -->
  11. <view class="form_item" v-if="cmdbRepair.valueconfig==1">
  12. <view class="title select">关联资产:</view>
  13. <input class="item-input" disabled placeholder="请扫描资产卡二维码" v-model="dataInfo.property"/>
  14. <text class="newicon newicon-saoma icon" @click="scanCodes"></text>
  15. </view>
  16. <view class="form_item">
  17. <view class="title">照片:</view>
  18. <view class="value">
  19. <uni-file-picker ref="handlerImgRef" v-model="dataInfo.handlerImgList"
  20. limit="4" @success="handlerImgSuccess" file-mediatype="image" mode="grid"
  21. @fail="handlerImgFail" @select="handlerImgSelect" @delete="handlerImgDelete">
  22. </uni-file-picker>
  23. <view class="imgTips">(支持JPG/PNG格式图片,单张大小10M以内)</view>
  24. </view>
  25. </view>
  26. <view class="form_item">
  27. <view class="title">录音:</view>
  28. <view class="chunk" v-if="!dataInfo.localId" @touchstart.stop="examineRecord($event)">点击录音</view>
  29. <view class="chunk-2" v-if="dataInfo.localId">
  30. <view class="chunk-2-2" @click="playAudio">
  31. <view>播放录音</view>
  32. <image v-if="isPlayOut==1" class="chunk-img" src="../../static/img/audio_play.gif" mode=""></image>
  33. </view>
  34. <icon class="chunk-icon" type="clear" size="22" @click="clearRec"/>
  35. </view>
  36. </view>
  37. </view>
  38. <view class="foot_common_btns">
  39. <button @click="goBackOrToList" type="default" class="cancelButton btn">返回</button>
  40. <button @click="submit" type="default" class="primaryButton btn">下一步</button>
  41. </view>
  42. <view class="mask-class" v-if="isrecordType">
  43. <view class="mask-box">
  44. <image class="mask-img" src="../../static/img/audio_play.gif" mode=""></image>
  45. </view>
  46. <view class="mask-bottom">
  47. <view class="mask-bottom-txt" @click.stop="recStop($event)">结束录音</view>
  48. </view>
  49. </view>
  50. </view>
  51. </template>
  52. <script setup>
  53. import { SM } from "@/http/http.js"
  54. import { ref, reactive, computed } from 'vue'
  55. import NumberModal from '@/components/NumberModal.vue';
  56. import { onLoad } from '@dcloudio/uni-app'
  57. import { generateNumberArray } from '@/utils/index.js'
  58. import { api_group, api_repairScanCode, api_incidentDetail, api_getSolution, api_user, api_incidentTask, api_branch, api_dutyDepartment, api_getDictionary, api_querySummaryDoc, api_addSummaryDoc } from "@/http/api.js"
  59. import { defaultColor } from '@/static/js/theme.js'
  60. import { useSetTitle } from '@/share/useSetTitle.js'
  61. import { useMakePhoneCall } from '@/share/useMakePhoneCall.js'
  62. import { useUploadFile } from '@/share/useUploadFile.js'
  63. import { useGoBack } from '@/share/useGoBack.js'
  64. import { useLoginUserStore } from '@/stores/loginUser'
  65. import { useHandlerStore } from '@/stores/handler'
  66. import { post } from "@/http/http.js"
  67. import wx from 'weixin-jsapi'
  68. // import Recorder from 'recorder-core';
  69. // import 'recorder-core/src/engine/mp3';
  70. // import 'recorder-core/src/engine/mp3-engine';
  71. // import 'recorder-core/src/engine/wav';
  72. // import 'recorder-core/src/extensions/waveview';
  73. useSetTitle();
  74. const loginUserStore = useLoginUserStore();
  75. const handlerStore = useHandlerStore();
  76. const { makePhoneCall } = useMakePhoneCall();
  77. const { uploadFile } = useUploadFile();
  78. const { goBack } = useGoBack();
  79. let rec = null
  80. let wave = null
  81. // 主题颜色
  82. const primaryColor = ref(defaultColor)
  83. // 数据
  84. const dataInfo = reactive({
  85. tabs: [
  86. // {id: 5, name: '故障处理', value: 'doing', num: ''},
  87. // {id: 6, name: '延期处理', value: 'overtime', num: ''},
  88. ],
  89. tabActiveValue: 0,//当前选择的tab
  90. incidentId: undefined,//事件ID
  91. incidentData: {},//事件对象
  92. description: '',//故障描述
  93. property:'', //资产
  94. assetId:null,//资产id
  95. handlerImgList: [],//处理图片列表
  96. localId:'' ,//录音本地id
  97. serverId:'',//录音服务器id
  98. })
  99. // 故障处理用是否提供备用机
  100. const newProvideBackupMachine = ref(0)
  101. // 知识库id
  102. const solutionId = ref(null)
  103. // 是否提交
  104. const isSubmit = ref(false)
  105. // 处理图片
  106. const handlerImgRef = ref(null)
  107. const ifShow = ref(false)
  108. const listStyles = ref({
  109. // 是否显示边框
  110. border: true,
  111. // 是否显示分隔线
  112. dividline: true,
  113. // 线条样式
  114. borderStyle: {
  115. width:1,
  116. color:'blue',
  117. radius:2
  118. }
  119. })
  120. const candidateData = ref([
  121. {name:'马桶肃杀'},
  122. {name:'马桶肃杀'},
  123. {name:'马桶肃杀'},
  124. {name:'马桶肃杀'},
  125. {name:'马桶肃杀'},
  126. {name:'马桶肃杀'},
  127. {name:'马桶肃杀'},
  128. {name:'马桶肃杀'},
  129. {name:'马桶肃杀'},
  130. ])
  131. const cmdbRepair = ref(null)
  132. const recwave = ref(null);
  133. // 是否播放完毕
  134. const isPlayOut = ref(null);
  135. // 录音状态
  136. const isrecordType = ref(false);
  137. const longPressTimer = ref(null); // 长按定时器
  138. const touchStartTime = ref(0); // 触摸开始时间
  139. // 上一步或者返回列表
  140. function goBackOrToList(){
  141. let repairsType = uni.getStorageSync('repairsType')
  142. uni.setStorageSync('repairData','')
  143. if(repairsType=='subpage'){
  144. uni.navigateTo({
  145. url: `/pages/myRepair/myRepair?type=1`
  146. })
  147. }else{
  148. uni.switchTab({
  149. url: `/pages/repair/home`
  150. })
  151. }
  152. }
  153. function itemCandidate(item){
  154. dataInfo.description = item.name
  155. }
  156. // 开始录音
  157. function recOpen() {
  158. let param = {
  159. requestUrl: location.href.split('#')[0]
  160. };
  161. post("/wechat/getJsConfig", param).then(res => {
  162. if (res) {
  163. wx.config({
  164. debug: false, // 开启调试模式,调用的所有api的返回值会在客户端alert出来,若要查看传入的参数,可以在pc端打开,参数信息会通过log打出,仅在pc端时才会打印。
  165. appId: res.appId, // 必填,企业号的唯一标识,此处填写企业号corpid
  166. timestamp: res.timestamp, // 必填,生成签名的时间戳
  167. nonceStr: res.nonceStr, // 必填,生成签名的随机串
  168. signature: res.signature, // 必填,签名,见附录1
  169. jsApiList: res.jsApiList // 必填,需要使用的JS接口列表,所有JS接口列表见附录2
  170. });
  171. wx.ready(function() {
  172. // 开始录音
  173. wx.startRecord({
  174. success: function(res) {
  175. isrecordType.value = true
  176. },
  177. cancel: function() {
  178. alert('用户拒绝授权录音');
  179. }
  180. });
  181. // 录音录音自动停止接口
  182. wx.onVoiceRecordEnd({
  183. complete: function (res) {
  184. dataInfo.localId = res.localId;
  185. }
  186. })
  187. // 监听语音播放完毕接口
  188. wx.onVoicePlayEnd({
  189. success: function (res) {
  190. dataInfo.localId = res.localId; // 返回音频的本地ID
  191. isPlayOut.value = 2
  192. },
  193. fail:function(res){
  194. },
  195. complete: function(res) {
  196. dataInfo.localId = res.localId; // 返回音频的本地ID
  197. isPlayOut.value = 2
  198. }
  199. });
  200. });
  201. }
  202. })
  203. }
  204. // 开始录音
  205. function examineRecord(e) {
  206. // touchStartTime.value = e.timeStamp;
  207. // 设置长按定时器
  208. // longPressTimer.value = setTimeout(() => {
  209. // 长按事件处理
  210. recOpen()
  211. // }, 300);
  212. }
  213. // 结束录音
  214. function recStop(e) {
  215. // clearTimeout(longPressTimer.value);
  216. // 如果手指松开时间太短,则不是长按
  217. // const touchEndTime = e.timeStamp;
  218. // if (touchEndTime - touchStartTime.value < 1000) {
  219. // // 处理快速点击
  220. // uni.showToast({
  221. // icon: 'none',
  222. // title: '长按时间太短'
  223. // });
  224. // return
  225. // }
  226. if(isrecordType.value){
  227. wx.stopRecord({
  228. success: function (res) {
  229. dataInfo.localId = res.localId;
  230. isrecordType.value = false
  231. }
  232. });
  233. }
  234. }
  235. // 播放录音
  236. function playAudio(){
  237. wx.playVoice({
  238. localId: dataInfo.localId, // 需要播放的音频的本地ID,由stopRecord接口获得
  239. success: function (res) {
  240. isPlayOut.value = 1
  241. }
  242. })
  243. }
  244. // 删除录音
  245. function clearRec(){
  246. dataInfo.localId = null
  247. isPlayOut.value = 2
  248. }
  249. // 上传录音
  250. function uploadAudio(){
  251. wx.uploadVoice({
  252. localId: dataInfo.localId, // 需要上传的音频的本地ID,由stopRecord接口获得
  253. isShowProgressTips: 1, // 默认为1,显示进度提示
  254. success: function (res) {
  255. dataInfo.serverId = res.serverId; // 返回音频的服务器端ID
  256. setTimeout(_=>{
  257. uni.setStorageSync('repairData',JSON.stringify(dataInfo))
  258. uni.navigateTo({
  259. url: `/pages/repair/rapidRepNext`,
  260. });
  261. },100)
  262. }
  263. });
  264. }
  265. // 扫码资产码
  266. function scanCodes(){
  267. uni.showLoading({
  268. title: "加载中",
  269. mask: true,
  270. });
  271. SM().then((res) => {
  272. api_repairScanCode({
  273. code:res
  274. }).then((res2) => {
  275. uni.hideLoading();
  276. if (res2.state == 200) {
  277. dataInfo.property = res2.data.name
  278. dataInfo.assetId = res2.data.id
  279. } else {
  280. uni.showToast({
  281. icon: 'none',
  282. title: res2.msg || '请求数据失败!'
  283. });
  284. }
  285. });
  286. })
  287. }
  288. // 上传处理图片成功
  289. function handlerImgSuccess(e){
  290. dataInfo.handlerImgList.forEach(v => {
  291. v.url = v.path;
  292. })
  293. console.log('上传成功',dataInfo.handlerImgList);
  294. let handlerOrder$ = handlerOrder();
  295. let requestList = [handlerOrder$];
  296. dataInfo.handlerImgList.forEach(v => {
  297. let handlerOrderImg$ = handlerOrderImg(v);
  298. requestList.push(handlerOrderImg$);
  299. })
  300. Promise.all(requestList).then(resList => {
  301. uni.hideLoading();
  302. console.log(resList);
  303. if(resList[0].state == 200){
  304. uni.showToast({
  305. icon: 'none',
  306. title: '处理成功',
  307. mask: true,
  308. });
  309. }else{
  310. uni.showToast({
  311. icon: 'none',
  312. title: resList[0].msg || '请求数据失败!'
  313. });
  314. }
  315. })
  316. }
  317. // 上传处理图片失败
  318. function handlerImgFail(e){
  319. dataInfo.handlerImgList.forEach(v => {
  320. v.url = v.path;
  321. })
  322. console.log(dataInfo.handlerImgList);
  323. }
  324. // 选择上传图片
  325. function handlerImgSelect(e){
  326. console.log(6666,e.tempFiles[0].extname)
  327. // 10*1024*1024 //10M
  328. if(e.tempFiles[0].extname=='mp4' ||
  329. e.tempFiles[0].extname=='avi' ||
  330. e.tempFiles[0].extname=='mpeg' ||
  331. e.tempFiles[0].extname=='wmv' ||
  332. e.tempFiles[0].extname=='mov' ||
  333. e.tempFiles[0].extname=='3gp' ||
  334. e.tempFiles[0].extname=='flv' ||
  335. e.tempFiles[0].extname=='mkv'
  336. ){
  337. let item = dataInfo.handlerImgList.findIndex(i=>i.extname==e.tempFiles[0].extname)
  338. if(item!=-1){
  339. uni.showToast({
  340. icon: 'none',
  341. title: '只能上传一个视频文件'
  342. });
  343. dataInfo.handlerImgList = dataInfo.handlerImgList.splice(item,1);
  344. }else{
  345. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  346. }
  347. }else{
  348. dataInfo.handlerImgList = dataInfo.handlerImgList.concat(e.tempFiles);
  349. if(e.tempFiles[0].extname=='png' ||
  350. e.tempFiles[0].extname=='jpg' ||
  351. // e.tempFiles[0].extname=='mp4' ||
  352. // e.tempFiles[0].extname=='avi' ||
  353. // e.tempFiles[0].extname=='mpeg' ||
  354. // e.tempFiles[0].extname=='wmv' ||
  355. // e.tempFiles[0].extname=='mov' ||
  356. // e.tempFiles[0].extname=='3gp' ||
  357. // e.tempFiles[0].extname=='flv' ||
  358. // e.tempFiles[0].extname=='mkv' ||
  359. e.tempFiles[0].extname=='heic' ||
  360. e.tempFiles[0].extname=='‌‌heif' ||
  361. e.tempFiles[0].extname=='‌‌‌‌proraw' ||
  362. e.tempFiles[0].extname=='gif'
  363. ){
  364. }else if('jpeg' == e.tempFiles[0].extname){
  365. }else{
  366. uni.showToast({
  367. icon: 'none',
  368. title: `不支持${e.tempFiles[0].extname}文件类型`
  369. });
  370. let item = dataInfo.handlerImgList.findIndex(i=>i.uuid==e.tempFiles[0].uuid)
  371. dataInfo.handlerImgList.splice(item,1);
  372. }
  373. }
  374. }
  375. // 删除上传图片
  376. function handlerImgDelete(e){
  377. dataInfo.handlerImgList = dataInfo.handlerImgList.filter(v => e.tempFile.uuid != v.uuid);
  378. console.log(dataInfo.handlerImgList);
  379. }
  380. // 获取事件详情
  381. function getIncidentDetail(){
  382. if(uni.getStorageSync('repairData')){
  383. let data = JSON.parse(uni.getStorageSync('repairData'))
  384. if(data){
  385. dataInfo.description = data.description
  386. dataInfo.property = data.property
  387. dataInfo.assetId = data.assetId
  388. dataInfo.handlerImgList = data.handlerImgList
  389. dataInfo.recBlob = data.recBlob
  390. }
  391. }
  392. }
  393. // 下一步
  394. function submit(){
  395. isSubmit.value = true;
  396. if(dataInfo.description==''){
  397. uni.showToast({
  398. icon: 'none',
  399. title: '请选择输入故障描述'
  400. });
  401. return;
  402. }
  403. if(dataInfo.localId){
  404. uploadAudio()
  405. }else{
  406. uni.setStorageSync('repairData',JSON.stringify(dataInfo))
  407. uni.navigateTo({
  408. url: `/pages/repair/rapidRepNext`,
  409. });
  410. }
  411. }
  412. // 处理提交事件
  413. function handlerOrder(){
  414. dataInfo.incidentData.returnBackupMachine = dataInfo.returnBackupMachine
  415. let postData = {
  416. incident: dataInfo.incidentData
  417. }
  418. postData.incident.description = dataInfo.description;
  419. if(dataInfo.assetId){
  420. postData.incident.assetId = dataInfo.assetId;
  421. }else{
  422. delete postData.incident.assetId
  423. }
  424. return api_incidentTask(dataInfo.tabActiveValue, postData);
  425. }
  426. // 处理图片
  427. function handlerOrderImg(imgObj){
  428. return uploadFile(imgObj, 'wechatRequesterIncident', dataInfo.incidentId)
  429. }
  430. onLoad((option) => {
  431. let data = JSON.parse(uni.getStorageSync('sysData'))
  432. cmdbRepair.value = data.find(i=>i.keyconfig=='cmdbRepair')
  433. if(option){
  434. if(option.property && option.assetId){
  435. dataInfo.property = option.property
  436. dataInfo.assetId = option.assetId
  437. }
  438. }
  439. getIncidentDetail();
  440. })
  441. </script>
  442. <style lang="scss" scoped>
  443. .mask-class{
  444. position: fixed;
  445. width: 100%;
  446. height: 100%;
  447. top: 0;
  448. left: 0;
  449. background: rgba(0,0,0,0.3);
  450. display: flex;
  451. justify-content: center;
  452. align-items: center;
  453. .mask-box{
  454. height: 160rpx;
  455. padding: 0 25%;
  456. background: #95EC6A;
  457. border-radius: 25rpx;
  458. display: flex;
  459. align-items: center;
  460. .mask-img{
  461. width: 100rpx;
  462. height: 100rpx;
  463. position: relative;
  464. background-color: transparent;
  465. mix-blend-mode: multiply;
  466. }
  467. }
  468. .mask-bottom{
  469. position: absolute;
  470. bottom: 0;
  471. width: 100%;
  472. height: 300rpx;
  473. color: #A5A5A5;
  474. background: #eee;
  475. text-align: center;
  476. border-top-left-radius: 30rpx;
  477. border-top-right-radius: 30rpx;
  478. .mask-bottom-txt{
  479. margin-top: 50rpx;
  480. font-weight: 500;
  481. }
  482. }
  483. }
  484. .handler{
  485. height: 100%;
  486. display: flex;
  487. flex-direction: column;
  488. justify-content: space-between;
  489. padding: 0 30rpx;
  490. .head{
  491. height: 88rpx;
  492. display: flex;
  493. position: fixed;
  494. z-index: 99;
  495. width: 100%;
  496. background-color: #fff;
  497. font-size: 30rpx;
  498. .tab{
  499. flex: 1;
  500. display: flex;
  501. justify-content: center;
  502. align-items: center;
  503. border-bottom: 4rpx solid transparent;
  504. &.active{
  505. color: $uni-primary;
  506. border-color: $uni-primary;
  507. }
  508. }
  509. }
  510. .body{
  511. box-sizing: border-box;
  512. flex: 1;
  513. min-height: 0;
  514. &.bg{
  515. background-color: #F7F7F7;
  516. }
  517. .summaryItem{
  518. &:first-of-type{
  519. .summaryItem_head{
  520. border-bottom: 1rpx solid #DDDDDD;
  521. }
  522. }
  523. .summary_total{
  524. padding: 20rpx 0;
  525. display: flex;
  526. justify-content: center;
  527. align-items: center;
  528. }
  529. .summaryItem_head{
  530. padding: 24rpx;
  531. font-size: 26rpx;
  532. color: #3A3A3A;
  533. }
  534. .summaryItem_body{
  535. font-size: 30rpx;
  536. background-color: #fff;
  537. .summaryItem_bodyItem{
  538. padding: 24rpx;
  539. border-bottom: 1rpx solid #DDDDDD;
  540. .summaryItem_bodyItem_top{
  541. display: flex;
  542. justify-content: space-between;
  543. align-items: center;
  544. .value{
  545. padding-left: 48rpx;
  546. flex-shrink: 0;
  547. }
  548. }
  549. .summaryItem_bodyItem_bottom{
  550. margin-top: 24rpx;
  551. display: flex;
  552. justify-content: space-between;
  553. align-items: center;
  554. .name{
  555. text-align: right;
  556. flex: 1;
  557. }
  558. .value{
  559. width: 240rpx;
  560. text-align: right;
  561. padding-left: 48rpx;
  562. flex-shrink: 0;
  563. }
  564. }
  565. }
  566. }
  567. .summaryItem_foot{
  568. font-size: 30rpx;
  569. background-color: #fff;
  570. &.total{
  571. margin-top: 24rpx;
  572. }
  573. .summaryItem_foot_total{
  574. padding: 24rpx 0;
  575. display: flex;
  576. justify-content: center;
  577. align-items: center;
  578. }
  579. .summaryItem_foot_add{
  580. border-top: 1rpx solid #DDDDDD;
  581. padding: 24rpx 0;
  582. display: flex;
  583. justify-content: center;
  584. align-items: center;
  585. .newicon-icon-test{
  586. font-size: 30rpx;
  587. font-weight: bold;
  588. }
  589. }
  590. }
  591. }
  592. .form_item_column{
  593. padding-top: 24rpx;
  594. min-height: 86rpx;
  595. .form_item{
  596. padding-top: 0;
  597. min-height: auto;
  598. }
  599. }
  600. .candidate{
  601. display: flex;
  602. flex-wrap: wrap;
  603. .candidate-item{
  604. padding: 6rpx 15rpx;
  605. font-size: 26rpx;
  606. color: #949494;
  607. background: #E9E9E9;
  608. border-radius: 50rpx;
  609. margin-right: 20rpx;
  610. margin-top: 15rpx;
  611. }
  612. }
  613. .form_item{
  614. display: flex;
  615. align-items: center;
  616. padding-top: 24rpx;
  617. min-height: 86rpx;
  618. position: relative;
  619. .chunk{
  620. width: 100%;
  621. height: 70rpx;
  622. line-height: 70rpx;
  623. text-align: center;
  624. background: #F7F8FA;
  625. box-shadow: 0px 3px 6px 1px rgba(0,0,0,0.16);
  626. border-radius: 10rpx;
  627. }
  628. .chunk-2{
  629. width: 100%;
  630. height: 70rpx;
  631. display: flex;
  632. align-items: center;
  633. .chunk-2-2{
  634. flex: 1;
  635. height: 70rpx;
  636. display: flex;
  637. align-items: center;
  638. justify-content: center;
  639. background: #F3FAF7;
  640. .chunk-img{
  641. width: 80rpx;
  642. height: 80rpx;
  643. position: relative;
  644. background-color: transparent;
  645. mix-blend-mode: multiply; /* 根据需要选择合适的混合模式 */
  646. }
  647. }
  648. .chunk-icon{
  649. margin-left: 20rpx;
  650. }
  651. }
  652. &.column{
  653. height: auto;
  654. flex-direction: column;
  655. align-items: flex-start;
  656. .import-rep{
  657. padding: 5rpx 10rpx;
  658. border-radius: 50rpx;
  659. background: #d1fcd5;
  660. color: #49b856;
  661. font-size: 24rpx;
  662. }
  663. .title{
  664. margin-right: 0;
  665. }
  666. .title-width{
  667. width: 100%;
  668. }
  669. .title-fl-sb{
  670. display: flex;
  671. justify-content: space-between;
  672. width: 100%;
  673. }
  674. .value{
  675. margin-top: 10rpx;
  676. // padding-left: 20rpx;
  677. box-sizing: border-box;
  678. }
  679. .tips{
  680. padding: 24rpx;
  681. text-align: center;
  682. font-size: 22rpx;
  683. color: #909399;
  684. width: 100%;
  685. box-sizing: border-box;
  686. }
  687. }
  688. .title{
  689. font-size: 26rpx;
  690. display: flex;
  691. align-items: center;
  692. margin-right: 12rpx;
  693. flex-shrink: 0;
  694. &.select{
  695. width: calc(5em + 20rpx);
  696. }
  697. }
  698. .value{
  699. width: 100%;
  700. &.category{
  701. width: 100%;
  702. display: flex;
  703. justify-content: space-between;
  704. align-items: center;
  705. .categoryName{
  706. font-size: 26rpx;
  707. color: #555;
  708. flex: 1;
  709. }
  710. .newicon-weibiaoti2010104{
  711. color: $uni-primary;
  712. margin-left: 24rpx;
  713. }
  714. }
  715. .imgTips{
  716. color: #909399;
  717. font-size: 22rpx;
  718. margin-top: 10rpx;
  719. }
  720. }
  721. .item-input{
  722. border: 1px solid #DBDBDB;
  723. height: 70rpx;
  724. line-height: 70rpx;
  725. padding: 0 10rpx;
  726. border-radius: 4rpx;
  727. width: 100%;
  728. font-size: 14px;
  729. }
  730. .icon{
  731. position: absolute;
  732. right: 20rpx;
  733. color: #49b856;
  734. }
  735. .synergeticNames{
  736. font-size: 26rpx;
  737. margin-right: 24rpx;
  738. }
  739. .synergeticAdd{
  740. flex-shrink: 0;
  741. }
  742. }
  743. }
  744. }
  745. </style>