PerfectStore.vue 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693
  1. <template>
  2. <div class="PerfectStore">
  3. <!-- 顶部条-->
  4. <van-nav-bar class="navBar" title="完美门店报告" left-arrow @click-left="onClickLeft">
  5. <template #right>
  6. <!-- <span
  7. style="
  8. color: white;
  9. background: #74a4d9;
  10. display: block;
  11. padding: 6px 10px;
  12. border-radius: 6px;
  13. "
  14. @click="editorFn"
  15. v-if="!remarkShow && sameDay"
  16. >编辑</span> -->
  17. </template>
  18. </van-nav-bar>
  19. <!-- 主体内容-->
  20. <div class="container" v-if="list">
  21. <div class="lineGrey"></div>
  22. <div class="card mt10">
  23. <div class="title">
  24. {{ list.storeName }}(<span style="color: #1989fa">{{ list.storeCode }}</span
  25. >)
  26. </div>
  27. <div class="subtitle">地址:{{ list.addressLine }}</div>
  28. <div class="subtitle">拜访人:{{ list.nickName }}</div>
  29. <div class="subtitle">拜访日期:{{ list.startTime }}~{{ list.stopTime }}</div>
  30. <div class="subtitle" v-if="list.dwellTime">拜访时长:{{ list.dwellTime }}</div>
  31. <!-- 分销店 -->
  32. <template
  33. v-if="
  34. verifyStoreType(list.storeCategory) && verifyStoreType(list.storeCategory).type == 'fxd'
  35. ">
  36. <div class="subtitle" style="display: flex">
  37. <div class="label" style="width: 75px">经销商:</div>
  38. <div class="valuue TCFXList">
  39. <div
  40. class="sfaStoreChainsContactList"
  41. v-for="(item, index) in list.sfaStoreChainsContactList"
  42. :key="index">
  43. {{ item.categoryDescribe }}
  44. {{ item.chainCode }}
  45. {{ item.chainName }}
  46. </div>
  47. </div>
  48. </div>
  49. </template>
  50. <template v-else>
  51. <div class="subtitle">经销商:{{ list.chainName }}</div>
  52. </template>
  53. <div class="subtitle" v-if="updateTimeShow">更新时间:{{ list.updateTime }}</div>
  54. </div>
  55. <p
  56. style="padding: 0 10px; font-size: 14px; color: #222; font-weight: bold"
  57. v-if="list.visitSource != 2 && ListHistoryList.length > 0">
  58. 审批历史
  59. </p>
  60. <div
  61. v-for="(item1, index1) in ListHistoryList"
  62. :key="index1"
  63. style="background-color: white; padding-top: 14px">
  64. <p style="padding: 0 16px; font-size: 14px; color: #222; margin: 0">
  65. 流程名称:{{ item1.modelName }}
  66. </p>
  67. <van-steps direction="vertical" :active="item1.processList.length">
  68. <van-step v-for="(item, index) in item1.processList" :key="index">
  69. <h3 style="font-size: 14px">{{ item.activityName }} &nbsp;{{ item.assigneeName }}</h3>
  70. <p>{{ item.comment }}</p>
  71. </van-step>
  72. </van-steps>
  73. <div style="border-bottom: 2px solid #f5f5f5; margin: 0 16px 16px"></div>
  74. </div>
  75. <van-collapse
  76. v-model="active"
  77. class="fontWeit"
  78. v-if="managerRemarkContents != null && managerRemarkContents.length > 0">
  79. <van-collapse-item name="1" title="点评">
  80. <p>
  81. {{ managerRemarkContents[0].deptName }} - {{ managerRemarkContents[0].postName }} -
  82. {{ managerRemarkContents[0].nickName }}的点评
  83. </p>
  84. <p class="contern">
  85. <van-field
  86. v-model="managerRemarkContents[0].remarkContent"
  87. rows="4"
  88. autosize
  89. readonly
  90. type="textarea" />
  91. </p>
  92. <p style="text-align: right">点评时间:{{ managerRemarkContents[0].createTime }}</p>
  93. </van-collapse-item>
  94. </van-collapse>
  95. <template v-if="list.isSku == '是'">
  96. <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">SKU图像识别结果</div>
  97. <div class="card">
  98. <div
  99. class="info"
  100. @click="toSkuRecognize"
  101. style="
  102. display: flex;
  103. align-items: center;
  104. justify-content: space-between;
  105. padding: 3px;
  106. ">
  107. <p
  108. style="flex: 1; margin: 0; line-height: 24px; padding: 10px 0; display: inline-block">
  109. 拍摄的所有产品陈列照识别结果:<span v-if="list.skuTotal" style="color: red"
  110. >{{ list.skuTotal }}个</span
  111. >
  112. </p>
  113. <p class="arrowdetils1">
  114. <van-icon name="arrow" />
  115. </p>
  116. </div>
  117. </div>
  118. </template>
  119. <!-- 特殊任务展示 -->
  120. <!-- 店招 -->
  121. <div class="shopSign specialTask" v-if="shopSignDetail">
  122. <div class="specialTaskLeft">
  123. <div class="SignText">{{ shopSignDetail.taskName }}:</div>
  124. <div class="signContent">
  125. <div class="icon">
  126. <van-icon name="checked" color="#07c160" v-if="shopSignDetail.status == '1'" />
  127. <van-icon name="warning" color="#ee0a24" v-else />
  128. </div>
  129. <div
  130. class="content"
  131. :style="{ color: shopSignDetail.status == '1' ? '#07c160' : '#ee0a24' }">
  132. {{ shopSignDetail.status == '1' ? '已通过' : '未通过' }}
  133. </div>
  134. </div>
  135. </div>
  136. <div class="shopSignImg">
  137. <img :src="shopSignDetail.fileUrl" @click="previewsImg(shopSignDetail.fileUrl)" />
  138. </div>
  139. </div>
  140. <!-- 调色机 -->
  141. <div class="TSJBox specialTask" v-if="tiaoSJDetail">
  142. <div class="specialTaskLeft">
  143. <div class="SignText">{{ tiaoSJDetail.taskName }}:</div>
  144. <div class="signContent">
  145. <div class="icon">
  146. <van-icon name="checked" color="#07c160" v-if="tiaoSJDetail.status == '1'" />
  147. <van-icon name="warning" color="#ee0a24" v-else />
  148. </div>
  149. <div
  150. class="content"
  151. :style="{ color: tiaoSJDetail.status == '1' ? '#07c160' : '#ee0a24' }">
  152. {{ tiaoSJDetail.status == '1' ? '已通过' : '未通过' }}
  153. </div>
  154. </div>
  155. </div>
  156. <div class="shopSignImg">
  157. <img :src="tiaoSJDetail.fileUrl" @click="previewsImg(tiaoSJDetail.fileUrl)" />
  158. </div>
  159. </div>
  160. <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">任务</div>
  161. <div class="card" v-if="list.visitSource != 2">
  162. <div
  163. class="info"
  164. style="
  165. font-size: 14px;
  166. display: flex;
  167. align-items: center;
  168. justify-content: space-between;
  169. padding: 3px;
  170. "
  171. v-for="(item, index) in list.sfaTaskList"
  172. :key="index"
  173. @click="historiStoreVisit(item, index)">
  174. <template v-if="item.photoIdentifyType != '1' && item.photoIdentifyType != '3'">
  175. <p style="flex: 1; margin: 0">
  176. {{ item.taskName }}
  177. </p>
  178. <div class="taskPhotoConditionPassed" @click.stop>
  179. <el-popover
  180. :popper-class="item.taskPhotoConditionPassed == 1 ? 'zpoverSuccess' : 'zpover'"
  181. placement="bottom"
  182. width="120"
  183. trigger="click"
  184. :content="
  185. item.taskPhotoConditionPassed == 1
  186. ? '陈列奖励案拍照AI识别通过'
  187. : '陈列奖励案拍照AI识别不通过'
  188. ">
  189. <div class="taskPhotoConditionPassed" slot="reference">
  190. <img
  191. v-if="item.taskPhotoConditionPassed == 1"
  192. :src="require('@/assets/taskPhotoSu.png')" />
  193. <img
  194. v-if="item.taskPhotoConditionPassed == 0"
  195. :src="require('@/assets/taskPhotoErr.png')" />
  196. </div>
  197. </el-popover>
  198. </div>
  199. <p class="arrowdetils1">
  200. <van-icon name="arrow" />
  201. </p>
  202. </template>
  203. </div>
  204. </div>
  205. <!-- <div v-if="list.visitSource == 2" style="background-color: #fff">
  206. <van-cell title="异常事由" :value="selectDictLabel(typeList, list.abnormalReason)" />
  207. <van-cell title="异常信息照" />
  208. <div style="padding: 10px 16px 0">
  209. <delete-upload-img :imgs="imgs"></delete-upload-img>
  210. </div>
  211. <van-cell title="异常信息" :value="list.remark" />
  212. </div> -->
  213. <!-- <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">更多记录</div>
  214. <van-cell-group>
  215. <van-cell v-for="(item1, index1) in list.visitsMore" :key="index1">
  216. <template #title>
  217. <van-row>
  218. <van-col span="6">拜访人:</van-col>
  219. <van-col span="18" class="custom-titles">{{ item1.userName }}</van-col>
  220. </van-row>
  221. </template>
  222. <template #right-icon>
  223. <span>{{ item1.visitTime }}</span>
  224. </template>
  225. </van-cell>
  226. </van-cell-group> -->
  227. <!-- 业务员拜访记录回显部主管反馈内容 -->
  228. <!-- <template v-if="list.sfaPhotoApproveList && list.sfaPhotoApproveList.length">
  229. <div
  230. class="sfaPhotoApproveList"
  231. v-for="(item, index) in list.sfaPhotoApproveList"
  232. :key="item.identifyType">
  233. <template v-if="item.identifyType == 1 || item.identifyType == 3">
  234. <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">
  235. {{ filterTitle(item.identifyType) }}
  236. </div>
  237. <template v-if="item.historyFeedback == '0'">
  238. <van-cell-group>
  239. <van-cell> AI识别结果: {{ item.resultCorrect == 1 ? '正确' : '不正确' }} </van-cell>
  240. <van-cell>
  241. 拜访照异常原因及解决方案: {{ item.feedbackError || item.reasonsSolutions }}
  242. </van-cell>
  243. </van-cell-group>
  244. </template>
  245. <template v-if="item.historyFeedback == '1'">
  246. <van-cell-group>
  247. <van-cell v-if="item.identifyType == 1">
  248. 店招异常原因: {{ resultCorrect(item.resultCorrect) }}
  249. </van-cell>
  250. <van-cell> 反馈: {{ item.feedbackError || item.reasonsSolutions }} </van-cell>
  251. </van-cell-group>
  252. </template>
  253. </template>
  254. </div>
  255. </template>
  256. <div
  257. style="padding: 10px 16px; font-size: 16px; font-weight: bold"
  258. v-if="managerRemarkContents == null && remarkShow">
  259. 点评
  260. </div>
  261. <div class="comment" v-if="managerRemarkContents == null && remarkShow">
  262. <van-field
  263. v-model="dataform.remarkContent"
  264. rows="4"
  265. autosize
  266. maxlength="800"
  267. show-word-limit
  268. type="textarea"
  269. :formatter="formatter" />
  270. <br />
  271. <br />
  272. <div class="contentborder">
  273. <van-button type="info" size="small" plain class="Btn1" @click="submint"
  274. >提交点评</van-button
  275. >
  276. </div>
  277. </div> -->
  278. </div>
  279. </div>
  280. </template>
  281. <script>
  282. import deleteUploadImg from '@/components/deleteUploadImg';
  283. import {
  284. getVisitsDetail,
  285. getPhotoTypeList1,
  286. insertVisitRemark,
  287. getListHistoryList,
  288. } from '@/api/index';
  289. import { getDictOption } from '@/api/index';
  290. import { ImagePreview } from 'vant';
  291. export default {
  292. components: { deleteUploadImg },
  293. data() {
  294. return {
  295. userShow: false,
  296. visitsId: '',
  297. imgs: '',
  298. typeList: [],
  299. active: ['1'],
  300. sameDay: false,
  301. ListHistoryTOTLE: '',
  302. managerRemarkContents: null,
  303. managerRemarkContent: '',
  304. CWShow: false,
  305. dataform: {
  306. remarkContent: '',
  307. visitsId: 0,
  308. },
  309. updateTimeShow: false,
  310. insert: true,
  311. remarkShow: false,
  312. ListHistoryList: [],
  313. list: null,
  314. AIResultOption: [],
  315. shopSignDetail: null,
  316. tiaoSJDetail: null,
  317. };
  318. },
  319. activated() {
  320. this.list = null;
  321. this.toastLoading(0, '加载中...', true);
  322. this.visitsId = this.$route.query.visitId;
  323. this.dataform.visitsId = this.$route.query.visitId;
  324. this.getVisitsDetailFn();
  325. // 获取店招异常原因字典
  326. getDictOption({}, 'feedback_error_msg').then((res) => {
  327. this.AIResultOption = res.data;
  328. });
  329. this.getPhotoTypeList();
  330. },
  331. methods: {
  332. resultCorrect(resultCorrect) {
  333. let data = this.AIResultOption.find((item) => item.dictValue == resultCorrect);
  334. return data ? data.dictLabel : '';
  335. },
  336. filterTitle(item) {
  337. switch (item) {
  338. case 1:
  339. return '店招识别异常,主管反馈:';
  340. // case '2':
  341. // return '门店代码识别';
  342. case 3:
  343. return '调色机识别异常,主管反馈:';
  344. // case '4':
  345. // return '更换店招';
  346. }
  347. },
  348. getListHistoryList(instanceId) {
  349. var form = { visitsId: this.$route.query.visitId, pageNum: 1, pageSize: 999 };
  350. getListHistoryList(form).then((res) => {
  351. this.ListHistoryList = res.data;
  352. });
  353. },
  354. formatter(value) {
  355. return value.replace(
  356. /[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF][\u200D|\uFE0F]|[\uD83C|\uD83D|\uD83E][\uDC00-\uDFFF]|[0-9|*|#]\uFE0F\u20E3|[0-9|#]\u20E3|[\u203C-\u3299]\uFE0F\u200D|[\u203C-\u3299]\uFE0F|[\u2122-\u2B55]|\u303D|[\A9|\AE]\u3030|\uA9|\uAE|\u3030/gi,
  357. '',
  358. );
  359. },
  360. editorFn() {
  361. if (this.list.hideStr != '' && this.list.hideStr != null) {
  362. this.$toast(this.list.hideStr);
  363. } else {
  364. localStorage.setItem('ORGName', this.list.deptName);
  365. localStorage.setItem('chainNameR', this.list.storeName);
  366. if (this.list.visitSource == '2') {
  367. this.$router.push({
  368. path: '/abnormalVisit',
  369. query: {
  370. type: 'edit',
  371. storeCode: this.$route.query.storeCode || this.list.storeCode,
  372. rdId: this.$route.query.visitId,
  373. visitId: this.$route.query.visitId,
  374. storeId: this.list.storeId,
  375. visitSource: this.list.visitSource,
  376. visitModel: this.list.visitModel,
  377. marklat: this.list.lat,
  378. marklon: this.list.lon,
  379. },
  380. });
  381. } else {
  382. var LCshow = false;
  383. if (this.$route.query.taskId != null) {
  384. LCshow = true;
  385. } else {
  386. LCshow = false;
  387. }
  388. this.$router.push({
  389. path: '/storeVisitpage',
  390. query: {
  391. type: 'edit',
  392. storeGroupId: this.list.storeGroupId,
  393. storeCode: this.$route.query.storeCode || this.list.storeCode,
  394. storeName: this.list.storeName,
  395. addressLine: this.list.addressLine,
  396. rdId: this.$route.query.visitId,
  397. visitId: this.$route.query.visitId,
  398. storeId: this.list.storeId,
  399. visitSource: this.list.visitSource,
  400. visitModel: this.list.visitModel,
  401. LCshow: LCshow,
  402. instanceId: this.list.instanceId,
  403. taskId: this.$route.query.taskId,
  404. marklat: this.list.lat,
  405. marklon: this.list.lon,
  406. from: 'outPlan',
  407. },
  408. });
  409. }
  410. }
  411. },
  412. submint() {
  413. if (this.dataform.remarkContent.trim() == '') {
  414. this.$toast('请填写点评内容!');
  415. } else {
  416. insertVisitRemark(this.dataform).then((res) => {
  417. if (res.code == 200) {
  418. this.getVisitsDetailFn();
  419. }
  420. });
  421. }
  422. },
  423. getPhotoTypeList() {
  424. getPhotoTypeList1({}).then((res) => {
  425. this.typeList = res.data;
  426. });
  427. },
  428. getVisitsDetailFn() {
  429. getVisitsDetail({ visitsId: this.$route.query.visitId }).then((res) => {
  430. this.toastLoading().clear();
  431. if (res.code == 200) {
  432. this.list = res.data;
  433. this.list.sfaTaskList = this.filterSfaTaskList(this.list.sfaTaskList);
  434. this.list.sfaTaskList.forEach((val) => {
  435. if (val.photoIdentifyType == '1') {
  436. this.shopSignDetail = val;
  437. }
  438. if (val.photoIdentifyType == '3') {
  439. this.tiaoSJDetail = val;
  440. }
  441. });
  442. if (res.data.visitSource != 2) {
  443. this.getListHistoryList(res.data.instanceId);
  444. }
  445. if (res.data.stopTime != res.data.updateTime) {
  446. this.updateTimeShow = true;
  447. } else {
  448. this.updateTimeShow = false;
  449. }
  450. if (localStorage.getItem('userId') == this.$route.query.userId) {
  451. this.userShow = true;
  452. } else {
  453. this.userShow = false;
  454. }
  455. if (this.$route.query.taskId != null) {
  456. this.CWShow = true;
  457. } else {
  458. this.CWShow = false;
  459. }
  460. this.sameDay = res.data.sameDay;
  461. if (localStorage.getItem('userId') == res.data.userId) {
  462. this.remarkShow = false;
  463. } else {
  464. this.remarkShow = true;
  465. }
  466. if (res.data.visitRemarks != null) {
  467. if (res.data.visitRemarks.length > 0) {
  468. this.managerRemarkContents = res.data.visitRemarks;
  469. } else {
  470. this.managerRemarkContents = null;
  471. }
  472. }
  473. if (res.data.visitSource == 2) {
  474. this.imgs = res.data.sysFileInfos;
  475. }
  476. } else {
  477. this.$toast.fail(res.msg);
  478. }
  479. });
  480. },
  481. filterSfaTaskList(list) {
  482. let taskTypeArr = list.filter((val) => val.taskType !== '5');
  483. let taskType5Index = list.findIndex((val) => val.taskType == '5');
  484. if (taskType5Index != -1) {
  485. let taskType5Arr = list.filter((val) => val.taskType == '5');
  486. let taskIds = [];
  487. taskType5Arr.forEach((val) => {
  488. taskIds.push(val.taskId);
  489. });
  490. let taskType5 = {
  491. ...list[taskType5Index],
  492. taskIds: taskIds,
  493. taskPhotoConditionPassed: null,
  494. };
  495. taskType5.taskName = '生动化陈列';
  496. taskTypeArr.splice(taskType5Index, 0, taskType5);
  497. }
  498. console.log(taskTypeArr);
  499. return taskTypeArr;
  500. },
  501. historiStoreVisit(val, index) {
  502. if (val.taskType == '5') {
  503. this.$router.push({
  504. path: '/taskPhotoTaking',
  505. query: {
  506. storeCode: this.$route.query.storeCode || this.list.storeCode,
  507. visitsId: this.visitsId,
  508. taskIds: val.taskIds.join(','),
  509. storeGroupId: this.list.storeGroupId,
  510. insert: 0,
  511. source: 'historicalDetails',
  512. },
  513. });
  514. } else {
  515. this.$router.push({
  516. path: '/historiStoreVisit',
  517. query: { visitId: this.visitsId, ids: index, taskType: val.taskType, taskId: val.taskId },
  518. });
  519. }
  520. sessionStorage.setItem('collectionItemList', JSON.stringify(val.collectionItemList));
  521. },
  522. toSkuRecognize() {
  523. this.$router.push({
  524. path: '/skuRecognize',
  525. query: { visitId: this.visitsId },
  526. });
  527. },
  528. onClickLeft() {
  529. if (this.$route.query.token) {
  530. this.$router.push({
  531. path: '/historicalVisit',
  532. });
  533. } else {
  534. this.$router.go(-1);
  535. }
  536. },
  537. previewsImg(url) {
  538. ImagePreview([url]);
  539. },
  540. },
  541. };
  542. </script>
  543. <style lang="scss" scoped>
  544. .PerfectStore {
  545. .specialTask {
  546. display: flex;
  547. flex-direction: row;
  548. margin: 5px 10px;
  549. border-radius: 10px;
  550. height: 90px;
  551. padding: 10px 20px;
  552. font-size: 16px;
  553. justify-content: space-between;
  554. .specialTaskLeft {
  555. display: flex;
  556. flex-direction: row;
  557. }
  558. .SignText {
  559. margin-right: 10px;
  560. color: rgb(25, 137, 250);
  561. }
  562. .signContent {
  563. display: flex;
  564. flex-direction: row;
  565. .icon {
  566. padding-top: 2px;
  567. margin-right: 5px;
  568. }
  569. }
  570. .shopSignImg {
  571. height: 100%;
  572. width: 70px;
  573. }
  574. }
  575. .shopSign {
  576. background: #e5faff;
  577. }
  578. .TSJBox {
  579. background: #fff4e4;
  580. margin-top: 20px;
  581. }
  582. }
  583. .container {
  584. padding-bottom: 50px;
  585. }
  586. .container .custom-titles {
  587. white-space: break-spaces;
  588. }
  589. .card {
  590. background: #fff;
  591. padding: 10px 15px;
  592. box-sizing: border-box;
  593. .title {
  594. line-height: 30px;
  595. font-size: 16px;
  596. font-weight: bold;
  597. color: #333;
  598. }
  599. .subtitle {
  600. line-height: 24px;
  601. font-size: 14px;
  602. color: #7b7b7b;
  603. }
  604. .info {
  605. font-size: 16px;
  606. color: #484848;
  607. line-height: 40px;
  608. border-bottom: 1px solid #dedede;
  609. position: relative;
  610. &:last-child {
  611. border-bottom: 0;
  612. }
  613. .arrow {
  614. float: right;
  615. display: inline-block;
  616. height: 20px;
  617. width: 20px;
  618. line-height: 20px;
  619. text-align: center;
  620. border-radius: 50%;
  621. background: #1989fa;
  622. color: #fff;
  623. font-weight: bold;
  624. font-size: 14px;
  625. margin-top: 9px;
  626. }
  627. .taskPhotoConditionPassed {
  628. width: 33px;
  629. margin: 0 5px;
  630. display: inline-flex;
  631. img {
  632. width: 33px;
  633. height: 25px;
  634. }
  635. }
  636. .arrowdetils1 {
  637. background: #fff;
  638. color: #444;
  639. margin: 0;
  640. margin-left: 5px;
  641. }
  642. }
  643. }
  644. .TCFXList {
  645. .van-field__control--custom {
  646. flex-direction: column;
  647. align-items: self-start;
  648. .TCFXListTreeSelec {
  649. padding: 3px;
  650. }
  651. }
  652. }
  653. </style>
  654. <style lang="scss">
  655. .fontWeit .van-cell__title {
  656. font-weight: bold;
  657. font-size: 16px;
  658. }
  659. .fontWeit .van-cell__title p {
  660. margin: 0;
  661. }
  662. .comment .van-field__control {
  663. background-color: #ebf4ff;
  664. border-radius: 6px;
  665. }
  666. .contern .van-cell {
  667. background-color: #ebf4ff;
  668. border-radius: 6px;
  669. overflow: hidden;
  670. }
  671. .PerfectStore {
  672. .card {
  673. .el-popover__reference-wrapper {
  674. display: flex;
  675. }
  676. }
  677. }
  678. .zpoverSuccess {
  679. background-color: #28e978 !important;
  680. color: #fff !important;
  681. padding: 8px 10px !important;
  682. z-index: 1 !important;
  683. border-radius: 6px !important;
  684. border: 0 !important;
  685. box-shadow: none !important;
  686. }
  687. </style>