123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661 |
- <template>
- <view class="content">
- <view class="content1">
- <!-- <view class="top">
- <textarea v-model="dataObj.publishingContent" placeholder="请发布粮食类商品交易信息,建议包含联系方" maxlength='200'
- placeholder-class='placeholder-class' class="textarea" />
- <view class="number">
- {{dataObj.publishingContent.length}}/200个字
- </view>
- </view> -->
- <view class='row'>
- <view class="textarea">
- <textarea placeholder-style="color:#AFB3BF;" placeholder="请发布粮食类商品交易信息,建议包含联系方式" maxlength="2000"
- v-model="dataObj.publishingContent"></textarea>
- <view class="textarea-left">
- <view class="clear" @click="clear()">清除全部</view>
- </view>
- <view class="textarea-bottom">
- {{dataObj.publishingContent?dataObj.publishingContent.length:'0'}}/2000字
- </view>
- </view>
- <!-- <view class="number">
- {{dataObj.publishingContent.length}}/2000个字
- </view> -->
- </view>
- <view style="padding-left: 10rpx;">
- <view style='flex-wrap:wrap;' class='flex'>
- <view v-for='(item,index) in imgList2' v-if="imgList2 && imgList2.length > 0"
- style="position: relative;margin-left: 20rpx;">
- <view class="delete_img" @click="deleteImg(index)">
- <u-icon size='4' name="close"></u-icon>
- </view>
- <image :src="item.appendixPath" mode=""
- style="width: 100px;height: 100px;border:1px solid #ccc;border-radius: 5rpx;"></image>
- </view>
- <view class="biankuang" @click="uploadClick" v-if="imgList2.length < 9">
- <view class="tubiao">
- <image class="upload" src="../../static/img/jiaoyi/tianjiazhaopian.png" mode="">
- </image>
- </view>
- </view>
- </view>
- <!-- <upload :file-list='businesslicense' class="upload" ref="upload" :action="action" :max-size="maxSize"
- delIconSize='30' delBgColor='rgba(0,0,0,0.4)' delIcon="trash" :max-count="9"
- :size-type="['compressed']" @on-success="getImgUrl" @on-remove="onRemove"
- :before-upload="filterFileType"></upload> -->
- </view>
- </view>
- <view class="content2">
- <u-cell-group class='wrap'>
- <u-cell-item title="交易类型" :arrow="false" :title-style="titleStyle">
- <u-radio-group v-model="dataObj.tranType">
- <u-radio @change="radioChange" v-for="(item, index) in list" :key="index" :name="item.name"
- :disabled="item.disabled" active-color="#303030">
- {{item.name}}
- </u-radio>
- </u-radio-group>
- </u-cell-item>
- <u-cell-item :title="placeTitle" :title-style="titleStyle">
- <selectAddress @selectAddress='selectAddress' series='3' :textStyle='textStyle' :edit='true'
- :text='dataObj.placeDelivery'></selectAddress>
- </u-cell-item>
- <u-cell-item title="发布者昵称" :title-style="titleStyle" :border-bottom='false' @click="editNicknamee">
- <view :style='textStyle'>
- {{dataObj.publisher}}
- </view>
- <!-- <selectAddress @selectAddress='selectAddress' series='3' :textStyle='textStyle'></selectAddress> -->
- </u-cell-item>
- </u-cell-group>
- </view>
- <view class="submit" @click="submit">
- 发布
- </view>
- <u-popup v-model="showNickname" mode='center' border-radius="14" width='70%' @close='closePopup'>
- <view class="edit-nickname">
- <view>昵称长度限制在2-24个字符内</view>
- <u-input v-model="dataObj.publisher" border class='nickname-input' />
- <view style="text-align: center;">
- <u-button type="success" size="medium" class="nickname-btn" @click="nickNamesubmit">保存</u-button>
- </view>
- </view>
- </u-popup>
- </view>
- </template>
- <script>
- import * as config from '../../config'
- import upload from '@/components/upload_small.vue';
- import selectAddress from "@/components/selectAddress.vue"
- import {
- mapState
- } from 'vuex';
- export default {
- components: {
- upload,
- selectAddress
- },
- data() {
- return {
- imgList2: [],
- searchPlaceHolder: '选择交货地区',
- placeTitle: '交货地',
- id: '',
- imgList: [],
- showNickname: false,
- dataObj: {
- userId: '',
- tranType: '采购',
- placeDelivery: '',
- urlImg: '',
- publishingContent: '',
- publisher: '',
- },
- titleStyle: {
- "font-size": "28rpx",
- "color": "#333333",
- // "font-weight": 700
- },
- textStyle: {
- "font-size": "32rpx",
- "color": "#333333",
- "margin-right": '27rpx'
- },
- list: [{
- name: '采购',
- disabled: false
- },
- {
- name: '销售',
- disabled: false
- }
- ],
- businesslicense: [],
- value: '',
- action: this.$uploadUrl,
- maxSize: 50 * 1024 * 1024, //限制文件大小 50M
- isAdd: false,
- num: 0
- };
- },
- watch: {
- imgList: {
- handler: function() {
- var that = this
- setTimeout(() => {
- that.$api.doRequest('get', 'appendix/query/getFileList', {
- appendixIds: that.imgList.toString()
- }).then(res => {
- that.imgList2 = res.data.data
- that.$forceUpdate()
- })
- }, 1000)
- },
- deep: true,
- immediate: true
- }
- },
- onLoad(options) {
- this.id = options.id
- console.log(this.id)
- this.init()
- // this.dataObj.userId = this.userInfo.id
- // this.dataObj.publisher = this.userInfo.wechatNo
- },
- onNavigationBarButtonTap(e) {
- console.log(e)
- uni.navigateTo({
- url: 'record'
- })
- },
- computed: {
- ...mapState(['hasLogin', 'userInfo', 'clientId']),
- },
- onShow() {
- let _tl = uni.getStorageSync('transactionPlace')
- if (_tl) {
- this.dataObj.placeDelivery = _tl.address
- } else {
- }
- },
- methods: {
- deleteImg(index) {
- this.num = this.imgList.length
- this.imgList.splice(index, 1)
- },
- async uploadClick() {
- let baseUrlNew = config.def().baseUrlNew
- let pcUserInfo = uni.getStorageSync('pcUserInfo')
- console.log('baseUrlNew', baseUrlNew)
- if (!pcUserInfo) {
- uni.showToast({
- title: "登录已失效,请重新登录"
- })
- return
- }
- await uni.chooseImage({
- count: 9,
- success: (chooseImageRes) => {
- console.log('chooseImageRes', chooseImageRes)
- let files = []
- for (let item of chooseImageRes.tempFiles) {
- files.push({
- name: 'fileName',
- url: item.path
- });
- }
- console.log(files)
- for (let i = 0; i < files.length; i++) {
- this.num++
- if (this.num < 10) {
- console.log(this.num)
- uni.uploadFile({
- url: baseUrlNew + 'appendix/api/uploadFiles',
- // url: baseUrlNew+'appendix/api/uploadFiles', //仅为示例,非真实的接口地址
- // files: files[i],
- filePath: files[i].url,
- name: files[i].name,
- formData: {
- // fileName: chooseImageRes.tempFiles[0],
- companyId: pcUserInfo.compId,
- modelId: '',
- vesselId: '',
- },
- success: (uploadFileRes) => {
- console.log(JSON.parse(uploadFileRes.data))
- var data = JSON.parse(uploadFileRes.data).data
- data.compId = pcUserInfo.compId
- this.$api.doRequest('post',
- '/appendix/api/saveFilesApp', {
- newAppendixs: [data],
- oldAppendixIds: ""
- }).then(res => {
- console.log(res.data.data)
- this.imgList.push(res.data.data[0])
- })
- console.log(uploadFileRes.data);
- },
- fail(res) {
- console.log(res);
- }
- });
- } else {
- break;
- }
- }
- }
- });
- },
- clear() {
- this.dataObj.publishingContent = ''
- },
- async init() {
- let _obj = {
- id: this.id
- }
- uni.showLoading({
- title: '数据加载中',
- mask: true
- })
- await this.$api.doRequest('get', '/transactionExchangeInfo/selectExchangeInfo', _obj).then(res => {
- console.log(res.data)
- if (res.data.code == 200) {
- this.dataObj = res.data.data
- if (this.dataObj.tranType == '销售') {
- this.placeTitle = '货源地'
- this.searchPlaceHolder = '选择货源地区'
- } else {
- this.placeTitle = '交货地'
- this.searchPlaceHolder = '选择交货地区'
- }
- this.imgList = res.data.data.urlImg.split(',')
- // for (let i = 0; i < this.imgList.length; i++) {
- // this.businesslicense.push({
- // url: this.imgList[i]
- // })
- // }
- // console.log("this.businesslicense", this.businesslicense)
- }
- uni.hideLoading()
- })
- if (this.imgList.length > 0) {
- this.businesslicense = []
- console.log(this.imgList)
- let _imgList = []
- for (let i = 0; i < this.imgList.length; i++) {
- await this.$api.doRequest('get', 'appendix/query/getFileList', {
- appendixIds: this.imgList[i]
- }).then(res1 => {
- console.log(res1)
- _imgList.push({
- url: res1.data.data[0].appendixPath
- })
- if (i == this.imgList.length - 1) {
- uni.hideLoading()
- }
- // for (let q = 0; q < res1.data.data.length; q++) {
- // }
- })
- }
- this.businesslicense = _imgList
- console.log("this.businesslicense", this.businesslicense)
- }
- },
- closePopup() {
- this.dataObj.publisher = this.userInfo.wechatNo
- },
- nickNamesubmit() {
- if (this.dataObj.publisher == null || this.dataObj.publisher == "") {
- this.$api.msg('请输入昵称!')
- return
- }
- if (this.dataObj.publisher.length < 2 || this.dataObj.publisher.length > 24) {
- this.$api.msg('请正确输入昵称!')
- return
- }
- let _obj = {
- wechatNo: this.dataObj.publisher,
- id: this.userInfo.id
- }
- uni.showLoading({
- title: '数据加载中',
- mask: true
- })
- let that = this
- that.$api.doRequest('post', '/commonUser/editUserInfo', _obj).then(
- res => {
- if (res.data.code == 200) {
- uni.showToast({
- title: '修改成功!',
- icon: 'success',
- duration: 2000,
- success() {
- setTimeout(() => {
- var _student = uni.getStorageSync('userInfo');
- _student.wechatNo = that.dataObj.publisher;
- uni.setStorageSync('userInfo', _student);
- var name = 'userInfo';
- var value = _student;
- that.$store.commit('$uStore', {
- name,
- value
- });
- uni.hideLoading()
- that.showNickname = false
- }, 2000)
- }
- })
- }
- })
- .catch(res => {
- if (res.errmsg) {
- uni.showToast({
- title: res.errmsg,
- icon: 'none',
- duration: 2000
- })
- } else {
- uni.showToast({
- title: "系统异常,请联系管理员",
- icon: 'none',
- duration: 2000
- })
- }
- });
- },
- editNicknamee() {
- this.showNickname = true
- },
- submit() {
- uni.showLoading({
- title: '数据加载中',
- mask: true
- })
- this.dataObj.urlImg = this.imgList.toString()
- this.dataObj.flag = 3
- this.dataObj.remark3 = new Date().getTime()
- this.$api.doRequest('post', '/transactionExchangeInfo/editInfo', this.dataObj).then(res => {
- console.log(res)
- if (res.data.code == 200) {
- uni.navigateBack({
- delta: 1
- })
- } else {
- uni.showToast({
- title: "系统异常,请联系管理员",
- icon: 'none',
- duration: 2000
- })
- }
- })
- },
- selectAddress(val) {
- console.log(val)
- console.log(this.dataObj.tranType)
- if (!val.check) {
- uni.showToast({
- title: '地点必须选到区县一级',
- icon: 'none',
- duration: 2000
- })
- return
- }
- try {
- uni.setStorageSync('transactionPlace', val);
- this.dataObj.placeDelivery = val.address
- } catch (e) {
- // error
- }
- },
- radioChange(e) {
- // console.log(e);
- console.log(e);
- if (e == '销售') {
- this.placeTitle = '货源地'
- this.searchPlaceHolder = '选择货源地区'
- } else {
- this.placeTitle = '交货地'
- this.searchPlaceHolder = '选择交货地区'
- }
- },
- filterFileType(index, lists) {
- if (lists[index].fileType != 'jpg' && lists[index].fileType != 'png' && lists[index].fileType != 'gif') {
- lists.splice(index, 1);
- // 当前文件不支持
- uni.showModal({
- title: '暂不支持当前图片类型',
- showCancel: false
- });
- } else {
- this.isAdd = false;
- }
- },
- onRemove(index) {
- console.log("index", index)
- this.imgList.splice(index, 1)
- console.log(this.imgList)
- },
- getImgUrl(res) {
- console.log("this.businesslicense", this.businesslicense)
- console.log(res)
- console.log('------------res-----------')
- this.imgList.push(res)
- console.log(this.imgList)
- },
- onUploaded(lists) {
- this.filesArr = lists;
- let res = lists[0];
- if (res.response === undefined) {
- uni.showToast({
- title: '文件错误',
- icon: 'none'
- })
- }
- },
- },
- }
- </script>
- <style lang="scss" scoped>
- .content {
- // overflow: hidden;
- padding-bottom: 100rpx;
- }
- .content1 {
- background: #fff;
- margin: 20rpx;
- border-radius: 20rpx;
- padding-bottom: 40rpx;
- }
- /deep/.placeholder-class {
- color: #C5CAD4;
- font-size: 28rpx;
- }
- .textarea {
- padding: 20rpx 20rpx 50rpx 20rpx;
- width: 100%;
- font-size: 28rpx;
- }
- .top {
- position: relative;
- .number {
- position: absolute;
- right: 32rpx;
- bottom: 0;
- color: #C5CAD4;
- font-size: 26rpx;
- }
- }
- .content2 {
- padding: 20rpx;
- }
- /deep/.u-cell-item-box,
- /deep/.u-cell-box {
- border-radius: 20rpx;
- }
- .submit {
- margin: 40rpx auto;
- width: 654rpx;
- height: 92rpx;
- background: #22C572;
- border-radius: 46rpx;
- font-size: 34rpx;
- font-weight: 400;
- color: #FFFFFF;
- line-height: 92rpx;
- text-align: center;
- // position: fixed;
- // bottom: 76rpx;
- // left: 0;
- // right: 0;
- // margin: auto;
- }
- .edit-nickname {
- padding: 40rpx 80rpx;
- }
- .nickname-input {
- margin: 20rpx 0;
- }
- .nickname-btn {
- margin-top: 20rpx;
- }
- .row {
- display: flex;
- justify-content: space-between;
- position: relative;
- background: #fff;
- border-radius: 20rpx;
- input {
- font-size: 28rpx;
- // color: #333333;
- }
- .left {
- display: flex;
- align-items: center;
- color: #333333;
- font-size: 34rpx;
- font-weight: 600;
- }
- }
- .row_css {
- font-size: 26rpx;
- color: #333333;
- margin-top: 60rpx;
- font-weight: 500;
- }
- .textarea {
- background: #F9F9FA;
- font-size: 28rpx;
- text-align: left;
- width: 100%;
- padding: 30rpx 30rpx;
- border-radius: 5px;
- margin: 30rpx;
- height: 46vh;
- padding-bottom: 20rpx;
- color: #333;
- }
- .textarea textarea {
- height: 90%;
- }
- .textarea-left {
- position: absolute;
- bottom: 40rpx;
- left: 50rpx;
- color: #606266;
- }
- .textarea-bottom {
- position: absolute;
- bottom: 40rpx;
- right: 40rpx;
- color: #AFB3BF;
- }
- .clear {
- /* width: 90%; */
- // background: #ffffff;
- color: #22C572;
- // border: 1px solid #22C572;
- // border-radius: 50rpx;
- // font-size: 28rpx;
- // padding: 9rpx 24rpx;
- }
- .biankuang {
- // border: 1px dashed #AFB3BF;
- border-radius: 10rpx;
- width: 200rpx;
- height: 200rpx;
- margin-left: 20rpx;
- text-align: center;
- line-height: 220rpx;
- background: #F5F6FA;
- .upload {
- width: 46rpx;
- height: 46rpx;
- }
- }
- .delete_img {
- position: absolute;
- z-index: 100;
- right: 0px;
- border-radius: 0 5rpx 0 10px;
- color: #ffffff;
- font-size: 28rpx;
- border: 1px;
- // border-radius: 5rpx;
- width: 40rpx;
- height: 38rpx;
- background-color: rgba(17, 26, 52, 0.50);
- text-align: center;
- }
- /deep/.pickerClass {
- width: 80%;
- position: absolute;
- right: 11px;
- padding: 0 30px 0 0;
- top: 50%;
- transform: translateY(-50%);
- z-index: 2
- }
- </style>
|