123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500 |
- <template>
- <view class="container qualifications" :style="{ paddingBottom: isIphoneX ? '68rpx' : '0' }">
- <view class="remarks-content-club" @click="handleClickClunInfo">
- <view class="content-club-le">
- <view class="club-le-text">
- <text class="label">机构名称:</text> <text class="text">{{ clubInfo.name }}</text>
- </view>
- <view class="club-le-text">
- <text class="label">联系人:</text> <text class="text">{{ clubInfo.linkMan }}</text>
- <text class="label phone">手机号:</text> <text class="text">{{ clubInfo.contractMobile }}</text>
- </view>
- <view class="club-le-text">
- <text class="label">地址:</text>
- <text class="text">{{ clubInfo.provincialAddress }}{{ clubInfo.address }}</text>
- </view>
- </view>
- <view class="content-club-ri"> <text class="iconfont icon-xiayibu"></text> </view>
- </view>
- <view class="remarks-content">
- <view class="list-view-title">
- <view class="list-view-h1"><text>*</text>咨询人:</view>
- </view>
- <view class="remarks-input">
- <input
- class="input"
- type="text"
- v-model="remarksParams.questionMan"
- value=""
- placeholder="请输入和你聊天的客户姓名"
- maxlength="10"
- />
- </view>
- <view class="list-view-title">
- <view class="list-view-h1"><text>*</text>关键词记录:</view>
- </view>
- <view class="remarks-textarea">
- <textarea
- class="textarea"
- v-model="remarksParams.remarks"
- value=""
- placeholder="请总结你和客户的聊天内容,以关键词形式填入框内,关键词之间用逗号隔开"
- maxlength="300"
- @input="conInput"
- />
- <text class="limit-text">{{ min }}/{{ max }}</text>
- </view>
- <view class="list-view-title">
- <view class="list-view-h1">上传图片</view>
- <view class="list-view-p">(可上传与客户的聊天截图或其他重要图片资料,最多10张)</view>
- </view>
- <view class="list-view-upload clearfix">
- <view class="photo-item" v-for="(image, imageIndex) in remarksParams.imageList" :key="imageIndex">
- <image
- :src="image"
- mode="aspectFill"
- @click.stop="previewImg(remarksParams.imageList, imageIndex)"
- ></image>
- <text
- class="iconfont icon-iconfontguanbi"
- @click.stop="deletePhotoFn(remarksParams.imageList, imageIndex)"
- ></text>
- </view>
- <view
- class="photo-item add"
- @click.stop="uploadPhotoFn(remarksParams.imageList)"
- v-if="remarksParams.imageList.length < 10 || remarksParams.imageList.length == 0"
- >
- <text class="iconfont icon-jiahao"></text>
- </view>
- </view>
- <view class="list-view-title">
- <view class="list-view-h1">上传文件</view>
- <view class="list-view-p">(可上传与客户相关的文件资料,最多10份,支持word,excel,ppt和pdf格式文件)</view>
- </view>
- <view class="list-view" v-for="(file, fileIndex) in remarksParams.fileList" :key="fileIndex">
- <view class="list-view-text">
- <view class="input">{{ file.fileName }}</view>
- <view class="delbtn" @click.stop="deleteFileFn(remarksParams.fileList, fileIndex)">删除</view>
- </view>
- </view>
- <view class="list-view">
- <view class="list-view-file" @click="uploadFile(remarksParams.fileList)">选择文件</view>
- </view>
- </view>
- <view class="remarks-btn" :style="{ paddingBottom: isIphoneX ? '68rpx' : '34rpx' }">
- <view class="edit-button" @click="editButtonConfim">确定</view>
- </view>
- </view>
- </template>
- <script>
- import { mapState, mapMutations } from 'vuex'
- import authorize from '@/common/config/authorize.js'
- import { uploadFileImage, uploadFilePdfDocDocxXlsx } from '@/services/public.js'
- var isPreviewImg
- export default {
- data() {
- return {
- isIphoneX: this.$store.state.isIphoneX,
- shopOrderId: 0,
- logisticsBatchId: 0,
- productActions: [],
- remarksParams: {
- clubId: 0,
- questionMan: '',
- remarks: '',
- fileList: [],
- imageList: [],
- serviceProviderId: 0
- },
- min: 0,
- max: 300,
- handleType: '',
- clubUserId: 0,
- clubInfo: {},
- userInfo: {}
- }
- },
- onLoad(option) {
- console.log(option)
- if (option.type == 'edit') {
- this.getUserClubRemarksDetail(option.remarksId)
- this.handleType = option.type
- uni.setNavigationBarTitle({ title: '修改画像' })
- } else {
- this.clubUserId = option.userId
- this.initGetStotage()
- }
- },
- methods: {
- ...mapMutations(['login']),
- async initGetStotage() {
- debugger
- const userInfo = await this.$api.getStorage()
- this.remarksParams.serviceProviderId = userInfo.serviceProviderId ? userInfo.serviceProviderId : 0
- this.getCulbInfo()
- },
- getCulbInfo() {
- // 查询机构信息
- this.UserService.OrganizationUpdateModifyInfo({ userId: this.clubUserId })
- .then(response => {
- this.clubInfo = response.data.club
- this.userInfo = response.data.user
- this.remarksParams.clubId = this.clubInfo.clubId
- })
- .catch(error => {
- console.log('=============>', error.msg)
- })
- },
- getUserClubRemarksDetail(remarksId) {
- //修改回显资料备注信息
- this.UserService.getUserClubRemarksDetail({
- remarksId: remarksId
- })
- .then(response => {
- let data = response.data
- this.clubUserId = data.userId
- this.remarksParams.remarks = data.remarks
- this.remarksParams.remarksId = data.remarksId
- console.log('00000000000')
- this.remarksParams.fileList = data.fileList
- console.log('11111111111111')
- this.remarksParams.imageList = data.imageList
- console.log('2222222222222')
- this.initGetStotage()
- })
- .catch(error => {
- this.$util.msg(error.msg, 2000)
- })
- },
- editButtonConfim() {
- //保存资料备注
- if (this.remarksParams.remarks == '') {
- this.$util.msg('请输入文字备注', 2000)
- return
- }
- this.UserService.getUserClubRemarksSave({
- params: JSON.stringify(this.remarksParams)
- })
- .then(response => {
- this.$util.msg('添加成功', 3000, true, 'success')
- setTimeout(() => {
- uni.navigateBack({ delta: 1 })
- }, 1000)
- })
- .catch(error => {
- this.$util.msg(error.msg, 2000)
- })
- },
- uploadFile(array) {
- //上传资质文件
- console.log(array)
- uploadFilePdfDocDocxXlsx()
- .then(res => {
- let data = JSON.parse(res.data).data
- let obj = {
- fileName: uni.getStorageSync('fileName'),
- ossName: data.ossName
- }
- array.push(obj)
- console.log('array', array)
- })
- .catch(err => {
- console.log(err)
- })
- },
- uploadPhotoFn(array) {
- //添加图片
- uploadFileImage().then(res => {
- array.push(JSON.parse(res.data).data)
- })
- },
- deleteFileFn(array, index) {
- console.log(array)
- //删除文件
- this.UploadService.PostFileDelete({
- ossName: array[index].ossName
- })
- .then(res => {
- array.splice(index, 1)
- })
- .catch(error => {
- console.log('删除文件异常提示===>', error.msg)
- })
- },
- deletePhotoFn(array, index) {
- //删除图片
- array.splice(index, 1)
- },
- previewImg(image, index) {
- //顶部商品图片预览
- isPreviewImg = true
- let previewUrls = image
- uni.previewImage({
- current: index, //图片索引
- urls: previewUrls, //必须是http图片,本地图片无效
- longPressActions: ''
- })
- },
- conInput(e) {
- //备注文字字数限制
- let value = e.detail.value
- let len = parseInt(value.length)
- if (len > this.max) return
- this.min = len
- if (this.min == 200) {
- this.$util.msg('您输入的字数已达上限', 2000)
- }
- },
- handleClickClunInfo() {
- //修改机构资料
- if (this.userInfo.userIdentity === 2) {
- this.$api.navigateTo(`/pages/seller/login/apply?userID=${this.userInfo.userId}`)
- } else if (this.userInfo.userIdentity === 4) {
- this.$api.navigateTo(`/pages/seller/login/information?userID=${this.userInfo.userId}`)
- }
- }
- },
- onShow() {}
- }
- </script>
- <style lang="scss">
- page {
- height: auto;
- background: #ffffff;
- }
- .remarks-content-club {
- width: 100%;
- height: 252rpx;
- padding: 24rpx;
- box-sizing: border-box;
- border-bottom: 20rpx solid #f7f7f7;
- .content-club-le {
- width: 660rpx;
- float: left;
- .club-le-text {
- width: 100%;
- height: 60rpx;
- line-height: 60rpx;
- font-size: $font-size-28;
- color: #333333;
- .label {
- color: #999999;
- &.phone {
- margin-left: 48rpx;
- }
- }
- }
- }
- .content-club-ri {
- width: 40rpx;
- height: 160rpx;
- float: right;
- line-height: 160rpx;
- text-align: center;
- color: #b2b2b2;
- }
- }
- .remarks-content {
- width: 100%;
- height: auto;
- box-sizing: border-box;
- padding: 0 24rpx;
- padding-bottom: 160rpx;
- .list-view-title {
- width: 100%;
- height: auto;
- margin-bottom: 16rpx;
- margin-top: 40rpx;
- .list-view-h1 {
- line-height: 40rpx;
- font-size: $font-size-28;
- color: #333333;
- text-align: left;
- text {
- color: #ff2a2a;
- }
- }
- .list-view-p {
- line-height: 30rpx;
- color: #fea785;
- font-size: $font-size-20;
- }
- }
- .remarks-input {
- width: 100%;
- height: 90rpx;
- padding: 0 16rpx;
- margin: 20rpx 0 0 0;
- border-radius: 6rpx;
- position: relative;
- border: 1px solid #b2b2b2;
- box-sizing: border-box;
- .input {
- width: 100%;
- height: 90rpx;
- line-height: 90rpx;
- font-size: $font-size-26;
- color: $text-color;
- z-index: 1;
- }
- }
- .remarks-textarea {
- width: 100%;
- height: 340rpx;
- padding: 16rpx;
- margin: 20rpx 0 0 0;
- border-radius: 6rpx;
- position: relative;
- border: 1px solid #b2b2b2;
- box-sizing: border-box;
- .textarea {
- width: 100%;
- height: 100%;
- line-height: 36rpx;
- font-size: $font-size-26;
- color: $text-color;
- z-index: 1;
- }
- .limit-text {
- position: absolute;
- right: 20rpx;
- bottom: 16rpx;
- line-height: 44rpx;
- font-size: $font-size-24;
- color: #b2b2b2;
- }
- }
- .list-view {
- width: 100%;
- height: 40rpx;
- margin-top: 20rpx;
- .list-view-file {
- width: 132rpx;
- height: 44rpx;
- line-height: 44rpx;
- font-size: $font-size-20;
- text-align: center;
- color: #ffffff;
- background-color: $color-system;
- border-radius: 8rpx;
- float: left;
- margin-top: 10rpx;
- }
- .list-view-text {
- width: 100%;
- float: left;
- .input {
- width: 560rpx;
- height: 44rpx;
- box-sizing: border-box;
- line-height: 44rpx;
- color: #333333;
- text-overflow: ellipsis;
- overflow: hidden;
- display: -webkit-box;
- -webkit-line-clamp: 1;
- line-clamp: 1;
- -webkit-box-orient: vertical;
- float: left;
- }
- .delbtn {
- width: 96rpx;
- height: 44rpx;
- border-radius: 8rpx;
- background-color: #fff2ec;
- font-size: $font-size-24;
- color: #e15616;
- line-height: 44rpx;
- text-align: center;
- float: left;
- }
- }
- }
- .list-view-upload {
- width: 100%;
- height: auto;
- .photo-item {
- display: inline-block;
- width: 112rpx;
- height: 112rpx;
- margin: 10rpx 0;
- margin-right: 25rpx;
- border-radius: 10rpx;
- border: 1px solid #f5f5f5;
- position: relative;
- float: left;
- &.add {
- width: 112rpx;
- height: 112rpx;
- border-color: #b2b2b2;
- text-align: center;
- line-height: 112rpx;
- margin-right: 0rpx;
- .icon-jiahao {
- font-size: $font-size-44;
- color: #b2b2b2;
- font-weight: bold;
- }
- }
- .icon-iconfontguanbi {
- width: 30rpx;
- height: 30rpx;
- border-radius: 50%;
- display: block;
- position: absolute;
- right: -10rpx;
- top: -10rpx;
- background: #f94b4b;
- text-align: center;
- line-height: 30rpx;
- color: #ffffff;
- font-size: $font-size-22;
- }
- image {
- width: 112rpx;
- height: 112rpx;
- border-radius: 10rpx;
- }
- }
- .photo-list {
- width: 100%;
- height: 116rpx;
- overflow: hidden;
- white-space: nowrap;
- display: flex;
- align-items: flex-start;
- }
- }
- }
- .remarks-btn {
- width: 100%;
- padding-top: 20rpx;
- position: fixed;
- bottom: 0;
- left: 0;
- background-color: #ffffff;
- .edit-button-canel {
- width: 100%;
- height: 88rpx;
- line-height: 88rpx;
- text-align: center;
- color: #e15616;
- font-size: $font-size-24;
- }
- .edit-button {
- width: 600rpx;
- height: 90rpx;
- background: $btn-confirm;
- line-height: 90rpx;
- text-align: center;
- color: #ffffff;
- font-size: $font-size-30;
- margin: 0 auto;
- border-radius: 45rpx;
- }
- }
- </style>
|