perfectStore.vue 23 KB

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