| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418 |
- <template>
- <div>
- <!-- 顶部条-->
- <van-nav-bar class="navBar" title="拜访任务" left-arrow @click-left="onClickLeft">
- <template #right>
- <!-- <span
- style="
- color: white;
- background: #74a4d9;
- display: block;
- padding: 6px 10px;
- border-radius: 6px;
- "
- @click="editorFn"
- v-if="!remarkShow && sameDay"
- >编辑</span
- > -->
- </template>
- </van-nav-bar>
- <!-- 主体内容-->
- <div class="container" v-if="list">
- <div class="lineGrey"></div>
- <div class="card mt10">
- <div class="title">
- {{ list.chainName }}(<span style="color: #1989fa">{{ list.chainCode }}</span
- >)
- </div>
- <div class="info">拜访人:{{ list.nickName }}</div>
- <div class="info">拜访日期:{{ list.startTime }}~{{ list.stopTime }}</div>
- <div class="info">身份类型:{{ list.typeName2 }}</div>
- <div class="info">实际经营者:{{ list.customerManager }}</div>
- <div class="info">开户日期:{{ formatCompactDate(list.openDate) }}</div>
- <div class="info">是否冻结:{{ list.freeze }}</div>
- <div class="info">是否关户:{{ list.close }}</div>
- </div>
- <van-collapse
- v-model="active"
- class="fontWeit"
- v-if="managerRemarkContents && managerRemarkContents.length > 0">
- <van-collapse-item name="1" title="点评">
- <div class="" v-for="(item, index) in managerRemarkContents" :key="index">
- <p>{{ item.deptName }} - {{ item.postName }} - {{ item.nickName }}的点评</p>
- <p class="contern">
- <van-field v-model="item.remarkContent" rows="4" autosize readonly type="textarea" />
- </p>
- <p style="text-align: right">点评时间:{{ item.createTime }}</p>
- </div>
- </van-collapse-item>
- </van-collapse>
- <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">任务</div>
- <div class="card" v-if="list.visitSource != 2">
- <div
- class="info"
- style="line-height: 44px; font-size: 14px"
- v-for="(item, index) in list.sfaTaskList"
- :key="index"
- @click="historiStoreVisit(item, index)">
- <div
- style="
- width: 100%;
- margin: 0;
- line-height: 24px;
- padding: 10px 0;
- display: flex;
- align-items: center;
- justify-content: space-between;
- ">
- <div
- class="taskName"
- style="flex: 1; font-weight: bold; color: #4a4a4a; font-size: 16px">
- {{ item.taskName }}
- </div>
- <div class="arrowdetils1">
- <van-icon name="arrow" />
- </div>
- </div>
- <div class="infoContent">
- <visitedTaskDetailMobile
- :taskType="item.taskType"
- :visitId="list.id"
- :taskId="item.taskId"
- :chainId="item.chainsId"
- :storeGroupId="list.storeGroupId"
- :visitsDetailData="item"
- v-if="item.collectionItemList.length" />
- <van-empty v-else />
- </div>
- </div>
- </div>
- <div v-if="list.visitSource == 2" style="background-color: #fff">
- <van-cell title="异常事由" :value="selectDictLabel(typeList, list.abnormalReason)" />
- <van-cell title="异常信息照" />
- <div style="padding: 10px 16px 0">
- <delete-upload-img :imgs="imgs"></delete-upload-img>
- </div>
- <van-cell title="异常信息" :value="list.remark" />
- </div>
- <!-- <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">更多记录</div>
- <van-cell-group>
- <van-cell v-for="(item1, index1) in list.visitsMore" :key="index1">
- <template #title>
- <van-row>
- <van-col span="6">拜访人:</van-col>
- <van-col span="18" class="custom-titles">{{ item1.userName }}</van-col>
- </van-row>
- </template>
- <template #right-icon>
- <span>{{ item1.visitTime }}</span>
- </template>
- </van-cell>
- </van-cell-group> -->
- <div style="padding: 10px 16px; font-size: 16px; font-weight: bold">点评</div>
- <div class="comment">
- <van-field
- v-model="dataform.remarkContent"
- rows="4"
- autosize
- maxlength="800"
- show-word-limit
- type="textarea"
- :formatter="formatter" />
- <br />
- <br />
- <div class="contentborder">
- <van-button type="info" size="small" plain class="Btn1" @click="submint"
- >提交点评</van-button
- >
- </div>
- </div>
- </div>
- </div>
- </template>
- <script>
- import deleteUploadImg from '@/components/deleteUploadImg';
- import { getPhotoTypeList1, insertVisitRemark, getListHistoryList } from '@/api/index';
- import { getVisitsDetail } from '@/api/agentList';
- import visitedTaskDetailMobile from './visitedTaskDetailMobile';
- export default {
- name: 'visitHistoryDetail',
- components: { deleteUploadImg, visitedTaskDetailMobile },
- data() {
- return {
- userShow: false,
- visitsId: '',
- imgs: '',
- typeList: [],
- active: ['1'],
- sameDay: false,
- ListHistoryTOTLE: '',
- managerRemarkContents: null,
- managerRemarkContent: '',
- CWShow: false,
- dataform: {
- remarkContent: '',
- },
- updateTimeShow: false,
- insert: true,
- remarkShow: false,
- ListHistoryList: [],
- list: null,
- urlParameter: null,
- imgs: '',
- };
- },
- created() {
- this.urlParameter = this.$route.query;
- this.getVisitsDetailFn();
- this.getPhotoTypeList();
- },
- methods: {
- getListHistoryList(instanceId) {
- var form = { visitsId: this.$route.query.visitId, pageNum: 1, pageSize: 999 };
- getListHistoryList(form).then((res) => {
- this.ListHistoryList = res.data;
- });
- },
- formatter(value) {
- return value.replace(
- /[\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,
- ''
- );
- },
- editorFn() {
- if (this.list.hideStr != '' && this.list.hideStr != null) {
- this.$toast(this.list.hideStr);
- } else {
- localStorage.setItem('ORGName', this.list.deptName);
- localStorage.setItem('chainNameR', this.list.storeName);
- if (this.list.visitSource == '2') {
- this.$router.push({
- path: '/abnormalVisit',
- query: {
- type: 'edit',
- storeCode: this.$route.query.storeCode || this.list.storeCode,
- rdId: this.$route.query.visitId,
- visitId: this.$route.query.visitId,
- storeId: this.list.storeId,
- visitSource: this.list.visitSource,
- visitModel: this.list.visitModel,
- marklat: this.list.lat,
- marklon: this.list.lon,
- },
- });
- } else {
- var LCshow = false;
- if (this.$route.query.taskId != null) {
- LCshow = true;
- } else {
- LCshow = false;
- }
- this.$router.push({
- path: '/storeVisitpage',
- query: {
- type: 'edit',
- storeGroupId: this.list.storeGroupId,
- storeCode: this.$route.query.storeCode || this.list.storeCode,
- storeName: this.list.storeName,
- addressLine: this.list.addressLine,
- rdId: this.$route.query.visitId,
- visitId: this.$route.query.visitId,
- storeId: this.list.storeId,
- visitSource: this.list.visitSource,
- visitModel: this.list.visitModel,
- LCshow: LCshow,
- instanceId: this.list.instanceId,
- taskId: this.$route.query.taskId,
- marklat: this.list.lat,
- marklon: this.list.lon,
- from: 'outPlan',
- },
- });
- }
- }
- },
- submint() {
- if (this.dataform.remarkContent.trim() == '') {
- this.$toast('请填写点评内容!');
- } else {
- insertVisitRemark({
- ...this.dataform,
- visitsId: this.$route.query.visitId,
- remarkType: '1',
- }).then((res) => {
- if (res.code == 200) {
- this.$toast('点评成功!');
- this.dataform.remarkContent = '';
- this.getVisitsDetailFn();
- }
- });
- }
- },
- getPhotoTypeList() {
- getPhotoTypeList1({}).then((res) => {
- this.typeList = res.data;
- });
- },
- getVisitsDetailFn() {
- getVisitsDetail({ visitsId: this.urlParameter.visitId }).then((res) => {
- if (res.code == 200) {
- this.list = res.data;
- if (res.data.visitSource != 2) {
- // this.getListHistoryList(res.data.instanceId);
- }
- if (res.data.stopTime != res.data.updateTime) {
- this.updateTimeShow = true;
- } else {
- this.updateTimeShow = false;
- }
- if (localStorage.getItem('userId') == this.$route.query.userId) {
- this.userShow = true;
- } else {
- this.userShow = false;
- }
- if (this.$route.query.taskId != null) {
- this.CWShow = true;
- } else {
- this.CWShow = false;
- }
- this.sameDay = res.data.sameDay;
- if (localStorage.getItem('userId') == res.data.userId) {
- this.remarkShow = false;
- } else {
- this.remarkShow = true;
- }
- if (res.data.visitRemarks != null) {
- if (res.data.visitRemarks.length > 0) {
- this.managerRemarkContents = res.data.visitRemarks;
- } else {
- this.managerRemarkContents = null;
- }
- }
- if (res.data.visitSource == 2) {
- this.imgs = res.data.sysFileInfos;
- }
- } else {
- this.$toast.fail(res.msg);
- }
- });
- },
- historiStoreVisit(val, index) {
- return;
- this.$router.push({
- path: '/visitedTaskDetail',
- query: {
- taskType: val.taskType,
- PhotoType: val.photoType,
- visitId: this.list.id,
- taskId: val.taskId,
- chainId: val.chainsId,
- storeGroupId: this.list.storeGroupId,
- activatedIndex: index,
- },
- });
- sessionStorage.setItem('collectionItemList', JSON.stringify(val.collectionItemList));
- },
- onClickLeft() {
- // 从代办消息列表来-返回拜访历史列表
- if (this.$route.query.loginName) {
- console.log(this.$router);
- this.$router.push({
- path: '/infoHistorVisit',
- });
- } else {
- // 从哪里来回哪里去
- this.$router.go(-1);
- }
- },
- },
- };
- </script>
- <style lang="scss" scoped>
- .container {
- padding-bottom: 50px;
- }
- .container .custom-titles {
- white-space: break-spaces;
- }
- .card {
- background: #fff;
- padding: 10px 15px;
- box-sizing: border-box;
- .title {
- line-height: 30px;
- font-size: 16px;
- font-weight: bold;
- color: #333;
- }
- .subtitle {
- line-height: 24px;
- font-size: 14px;
- color: #7b7b7b;
- }
- .info {
- font-size: 16px;
- color: #484848;
- line-height: 40px;
- border-bottom: 1px solid #dedede;
- position: relative;
- &:last-child {
- border-bottom: 0;
- }
- .arrow {
- float: right;
- display: inline-block;
- height: 20px;
- width: 20px;
- line-height: 20px;
- text-align: center;
- border-radius: 50%;
- background: #1989fa;
- color: #fff;
- font-weight: bold;
- font-size: 14px;
- margin-top: 9px;
- }
- .arrowdetils1 {
- background: #fff;
- // position: absolute;
- // top: 50%;
- color: #444;
- // right: 0;
- // margin-top: -22px;
- }
- }
- }
- .TCFXList {
- .van-field__control--custom {
- flex-direction: column;
- align-items: self-start;
- .TCFXListTreeSelec {
- padding: 3px;
- }
- }
- }
- </style>
- <style>
- .fontWeit .van-cell__title {
- font-weight: bold;
- font-size: 16px;
- }
- .fontWeit .van-cell__title p {
- margin: 0;
- }
- .comment .van-field__control {
- background-color: #ebf4ff;
- border-radius: 6px;
- }
- .contern .van-cell {
- background-color: #ebf4ff;
- border-radius: 6px;
- overflow: hidden;
- }
- </style>
|