| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446 |
- <!--
- * @Author: liuzhenlin 461480418@qq.ocm
- * @Date: 2023-01-12 11:57:48
- * @LastEditors: liuzhenlin
- * @LastEditTime: 2023-03-01 16:17:37
- * @Description: file content
- * @FilePath: \oms\pages\publicPages\follow.vue
- -->
- <template>
- <view class="home">
- <view class="nav">
- <view :style="{ paddingTop }">
- <view class="title" :style="[{ height }, { lineHeight: height }]">
- <view class="back" @click="goBack()">
- <u-icon name="arrow-left" color="#ffffff" size="22"></u-icon>
- </view>
- <text>填写跟进</text>
- </view>
- </view>
- </view>
- <view class="main">
- <u-form :model="addForm" :rules="rules" ref="addForm" label-width="0">
- <u-form-item prop="content" customStyle="padding:40rpx 0 34rpx">
- <view class="form-label flex_l">跟进内容</view>
- <u-textarea
- v-model="addForm.content"
- placeholder="请输入跟进内容"
- maxlength="800"
- height="190rpx"
- count
- customStyle="border-radius:16rpx"></u-textarea>
- </u-form-item>
- <u-form-item prop="date" borderBottom customStyle="padding:40rpx 0 30rpx" @click="showDate = true">
- <view class="form-label flex_l">
- <view class="label-tag"></view>
- 跟进时间
- </view>
- <u-input
- :readonly="true"
- placeholder="请选择跟进时间"
- v-model="addForm.date"
- border="none"
- suffixIcon="arrow-down"
- suffixIconStyle="color:#CDCDCD"
- clearable
- customStyle="padding: 0 30rpx 0 12rpx"></u-input>
- </u-form-item>
- <u-form-item prop="mode" borderBottom customStyle="padding:40rpx 0 30rpx" @click="showMode = true">
- <view class="form-label flex_l">
- <view class="label-tag"></view>
- 跟进方式
- </view>
- <u-input
- :readonly="true"
- placeholder="请选择跟进方式"
- v-model="addForm.mode"
- border="none"
- suffixIcon="arrow-down"
- suffixIconStyle="color:#CDCDCD"
- clearable
- customStyle="padding: 0 30rpx 0 12rpx"></u-input>
- </u-form-item>
- <u-form-item prop="contactsName" borderBottom customStyle="padding:40rpx 0 30rpx" @click="open">
- <view class="form-label flex_l">
- <view class="label-tag"></view>
- 联系人
- </view>
- <u-input
- :readonly="true"
- placeholder="请选择客户联系人"
- v-model="addForm.contactsName"
- border="none"
- suffixIcon="arrow-down"
- suffixIconStyle="color:#CDCDCD"
- clearable
- customStyle="padding: 0 30rpx 0 12rpx"></u-input>
- </u-form-item>
- </u-form>
- <view class="upload-file-box">
- <view class="form-label flex_l">附件</view>
- <uni-file-picker file-mediatype="all" v-model="imageValue" mode="grid" @select="select" ref="upload" limit="1">
- <view class="upload-btn">
- <u-icon name="plus-circle-fill" color="blue" size="28"></u-icon>
- </view>
- </uni-file-picker>
- </view>
- <view class="save" @click="handleAdd">保存</view>
- <!-- 选择跟进方式 -->
- <u-picker
- :show="showMode"
- :columns="modeColumns"
- keyName="label"
- @cancel="showMode = false"
- @confirm="pickMode"></u-picker>
- <!-- 选择下次时间 -->
- <u-datetime-picker
- v-if="showDate"
- :maxDate="maxDate"
- :show="showDate"
- mode="datetime"
- v-model="addForm.date"
- @cancel="showDate = false"
- @confirm="pickDate"></u-datetime-picker>
- </view>
- <u-notify ref="uNotify"></u-notify>
- <u-toast ref="uToast"></u-toast>
- <!-- 客户联系人 -->
- <customer-contact ref="concat" @close="closeConcat"></customer-contact>
- <!-- 项目联系人 -->
- <project-contact ref="projectConcat" @close="closeConcat"></project-contact>
- </view>
- </template>
- <script>
- import { mapGetters } from 'vuex'
- import to from 'await-to-js'
- import followApi from '../../api/follow'
- import custApi from '../../api/customer'
- import prodApi from '../../api/project'
- import ProjectContact from '../../components/ProjectContact'
- import CustomerContact from '../../components/CustomerContact'
- export default {
- name: 'omsIndex',
- components: {
- CustomerContact,
- ProjectContact,
- },
- data() {
- return {
- imageValue: [],
- height: '',
- paddingTop: '',
- showMode: false, //选择行业
- showDate: false,
- maxDate: new Date() * 1,
- modeColumns: [
- [
- {
- label: '电话',
- id: '10',
- },
- {
- label: '邮件',
- id: '20',
- },
- {
- label: '拜访',
- id: '30',
- },
- ],
- ],
- addForm: {
- files: [],
- date: this.parseTime(new Date(), '{y}-{m}-{d}'), //时间
- content: '', //客户姓名
- mode: '', //跟进方式
- modeId: 0,
- fileName: '', //附件
- contactsName: '', //联系人
- contactsId: 0, //联系人ID
- },
- targetType: 0, //跟进对象类型(10客户,20项目,30合同,40回款)
- rules: {
- content: {
- type: 'string',
- required: true,
- message: '请填写跟进内容',
- trigger: ['blur'],
- },
- date: {
- type: 'string',
- required: true,
- message: '请填写跟进时间',
- trigger: ['blur'],
- },
- mode: {
- type: 'string',
- required: true,
- message: '请选择跟进方式',
- trigger: ['blur', 'change'],
- },
- contactsName: {
- type: 'string',
- required: true,
- message: '请选择联系人',
- trigger: ['blur', 'change'],
- },
- },
- details: {},
- curId: 0,
- }
- },
- computed: {
- // ...mapGetters(['details']),
- },
- onLoad(option) {
- this.targetType = option.targetType
- this.curId = parseInt(option.id)
- },
- created() {
- const navData = uni.getMenuButtonBoundingClientRect()
- this.height = navData.height + 'px'
- this.paddingTop = navData.top + 'px'
- },
- mounted() {
- this.initData()
- },
- methods: {
- // 获取客户/项目信息
- async initData() {
- if (this.targetType == '10') {
- //客户
- const [err, res] = await to(
- custApi.getDetail({
- ids: [this.curId],
- })
- )
- if (err) return
- if (res && res.code == 200) {
- this.details = res.data.list[0]
- }
- } else if (this.targetType == '20') {
- //项目
- const [err, res] = await to(
- prodApi.getDetail({
- id: this.curId,
- })
- )
- if (err) return
- if (res && res.code == 200) {
- this.details = res.data
- }
- }
- },
- // 打开客户联系人
- open() {
- if (this.targetType == '10') {
- this.$refs.concat.open(this.details.id)
- } else if (this.targetType == '20') {
- this.$refs.projectConcat.open(this.details.id, this.details.custId)
- }
- },
- // 行业选择
- pickMode(e) {
- this.addForm.modeId = e.value[0].id
- this.addForm.mode = e.value[0].label
- this.showMode = false
- },
- async pickDate(e) {
- this.showDate = false
- const timeFormat = uni.$u.timeFormat
- let timeValue = await timeFormat(e.value, 'yyyy-mm-dd hh:MM')
- this.addForm.date = timeValue
- },
- // 关闭选择用户
- closeConcat(user) {
- if (user) {
- this.addForm.contactsName = user.label
- this.addForm.contactsId = user.id
- }
- },
- handleAdd() {
- this.$refs.addForm
- .validate()
- .then(async () => {
- let idParams = {}
- if (this.targetType == '10') {
- idParams = {
- custId: this.details.id,
- custName: this.details.custName,
- targetId: this.details.id,
- targetName: this.details.custName,
- }
- } else if (this.targetType == '20') {
- idParams = {
- custId: this.details.custId,
- custName: this.details.custName,
- targetId: this.details.id,
- targetName: this.details.nboName,
- }
- }
- let params = Object.assign(
- {
- contactsId: this.addForm.contactsId,
- contactsName: this.addForm.contactsName,
- followContent: this.addForm.content,
- followDate: this.addForm.date,
- followType: this.addForm.modeId,
- targetType: this.targetType,
- files: this.addForm.files,
- },
- idParams
- )
- const [err, res] = await to(followApi.createFollow(params))
- if (err) return
- if (res && res.code == 200) {
- this.$refs.uToast.show({
- type: 'success',
- message: '创建成功',
- complete: () => {
- uni.navigateBack({
- //关闭当前页面,返回上一页面或多级页面。
- delta: 1,
- })
- },
- })
- }
- })
- .catch((err) => {
- this.$refs.uNotify.show({
- top: this.height + this.paddingTop + 10,
- type: 'warning',
- message: err[0].message,
- duration: 1000 * 3,
- })
- })
- },
- // // 选择上传触发函数
- select(e) {
- let url = process.uniEnv.VUE_APP_UPLOAD_WEED
- uni.request({
- url, //仅为示例,并非真实接口地址。
- success: (res) => {
- this.uploadFiles(e, res.data)
- },
- })
- },
- // 上传函数
- async uploadFiles(e, res) {
- let action = process.uniEnv.VUE_APP_PROTOCOL + res.publicUrl + '/' + res.fid
- uni.uploadFile({
- url: action,
- filePath: e.tempFilePaths[0],
- name: 'file',
- formData: {
- file: e.tempFiles[0].file,
- },
- success: (res) => {
- this.$refs.uToast.show({
- type: 'success',
- message: '附件上传成功',
- })
- this.addForm.files = [
- {
- fileName: e.tempFiles[0].file.name,
- fileUrl: action,
- },
- ]
- },
- fail: (err) => {},
- })
- },
- goBack() {
- uni.navigateBack({
- //关闭当前页面,返回上一页面或多级页面。
- delta: 1,
- })
- },
- },
- }
- </script>
- <style>
- page {
- background: #f2f3f5;
- }
- </style>
- <style lang="scss" scoped>
- .home {
- padding-top: 188rpx;
- .nav {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 284rpx;
- background: #3e7ef8;
- .title {
- position: relative;
- text-align: center;
- font-size: 32rpx;
- font-weight: bold;
- color: #ffffff;
- .back {
- position: absolute;
- top: 0;
- bottom: 0;
- margin: auto;
- left: 70rpx;
- display: flex;
- }
- }
- }
- .main {
- position: absolute;
- width: 100%;
- height: calc(100vh - 188rpx);
- background: #ffffff;
- box-shadow: 0 6rpx 19rpx 2rpx rgba(0, 45, 132, 0.15);
- border-radius: 31rpx 31rpx 0 0;
- padding: 0 32rpx;
- overflow: auto;
- padding-bottom: 64rpx;
- .form-label {
- font-size: 32rpx;
- font-weight: bold;
- color: #323232;
- padding-bottom: 18rpx;
- .label-tag {
- width: 15rpx;
- height: 15rpx;
- background: #ff4d4f;
- border-radius: 50%;
- margin-right: 10rpx;
- }
- }
- .upload-file-box {
- padding: 20rpx 0;
- position: relative;
- .upload-btn {
- position: absolute;
- right: 0;
- top: 26rpx;
- }
- }
- }
- .save {
- width: 569rpx;
- height: 92rpx;
- background: #3e7ef8;
- border-radius: 31rpx;
- margin: 116rpx auto 0;
- font-size: 32rpx;
- color: #ffffff;
- text-align: center;
- line-height: 92rpx;
- }
- }
- </style>
|