You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

310 lines
9.1 KiB

3 years ago
<template>
<view :class="{page: isDetail}">
3 years ago
<uni-card v-if="customerId" :is-shadow="false" :border="false" is-full>
<view class="info">
3 years ago
<view class="name">{{ form.customerName }}</view>
<view class="text">客户类型{{ customerType }}</view>
3 years ago
<view class="text">产品到期时间{{ form.expireDate || '' }}</view>
</view>
</uni-card>
3 years ago
<uni-section title="基本信息" type="line">
<view class="form">
3 years ago
<uni-forms ref="form" :modelValue="form" :rules="rules" label-width="100" disabled>
<uni-forms-item label="客户名称" name="schoolId" required>
<uni-easyinput v-if="isDetail" v-model="form.customerName" disabled />
<hpy-form-select v-else placeholder="请选择学校" :dataList="schoolList" text="schoolName" name="schoolId" v-model="form.schoolId" @change="schoolChange" hideBorder hideArrow/>
3 years ago
</uni-forms-item>
<uni-forms-item label="省份">
3 years ago
<uni-easyinput v-model="form.provinceName" disabled />
3 years ago
</uni-forms-item>
<uni-forms-item label="城市">
3 years ago
<uni-easyinput v-model="form.cityName" disabled />
3 years ago
</uni-forms-item>
3 years ago
<uni-forms-item label="行业类型" name="industryClassId" required>
<uni-easyinput v-if="isDetail" v-model="form.industryClassName" disabled />
3 years ago
<uni-data-picker v-else placeholder="请选择行业类型" popup-title="请选择行业类型" preload :clear-icon="false" :localdata="industryClassList" :map="{text: 'industryClassName', value: 'industryClassId'}" v-model="form.industryClassId" @change="industryClassChange">
</uni-data-picker>
</uni-forms-item>
3 years ago
<uni-forms-item label="行业" name="industryId" required>
<uni-easyinput v-if="isDetail" v-model="form.industryName" disabled />
3 years ago
<uni-data-picker v-else placeholder="请选择行业" popup-title="请选择行业" preload :clear-icon="false" :localdata="industryList" :map="{text: 'industryName', value: 'industryId'}" v-model="form.industryId" :readonly="form.industryClassId ? false : true">
</uni-data-picker>
3 years ago
</uni-forms-item>
3 years ago
<uni-forms-item label="联系人姓名" name="name" required>
<uni-easyinput ref="nameInput" placeholder="请输入联系人姓名" :disabled="isDetail" />
3 years ago
</uni-forms-item>
3 years ago
<uni-forms-item label="手机" name="phone">
<uni-easyinput ref="phoneInput" placeholder="请输入手机" :disabled="isDetail" />
3 years ago
</uni-forms-item>
3 years ago
<uni-forms-item label="账号" name="account" required>
<uni-easyinput ref="accountInput" placeholder="请以院校首字母+admin的格式来设置" :disabled="isDetail" />
3 years ago
</uni-forms-item>
3 years ago
<uni-forms-item label="职务" name="position">
<uni-easyinput ref="positionInput" placeholder="请输入职务" :disabled="isDetail" />
3 years ago
</uni-forms-item>
3 years ago
<uni-forms-item label="邮箱" name="email">
<uni-easyinput ref="emailInput" placeholder="请输入邮箱" :disabled="isDetail" />
3 years ago
</uni-forms-item>
<uni-forms-item label="产品到期时间">
<uni-easyinput v-model="form.expireDate" disabled />
3 years ago
</uni-forms-item>
<uni-forms-item label="客户类型">
3 years ago
<uni-easyinput v-model="customerType" disabled />
3 years ago
</uni-forms-item>
</uni-forms>
3 years ago
<button v-if="!isDetail" type="primary" @click="submit">提交</button>
3 years ago
</view>
</uni-section>
<view class="action" v-if="isDetail">
3 years ago
<view class="item" @click="toPage(`../clientDetail/clientDetail?customerId=${customerId}`)">
<uni-icons class="icon" custom-prefix="iconfont" type="icon-edit" size="20" color="#959595"></uni-icons>
<view class="text">编辑</view>
</view>
<view class="item" @click="toPage('../ordered/ordered')">
<uni-icons class="icon" custom-prefix="iconfont" type="icon-product" size="20" color="#959595"></uni-icons>
<view class="text">已订阅产品</view>
</view>
<view class="item" @click="toPage('../orders/orders')">
<uni-icons class="icon" custom-prefix="iconfont" type="icon-dingdan" size="20" color="#959595"></uni-icons>
<view class="text">订单</view>
</view>
</view>
3 years ago
</view>
</template>
<script>
3 years ago
import { queryCustomerDetails, querySchool, queryIndustryClass, queryIndustry, queryCustomerIsExists, addCustomer, updateCustomer } from '@/apis/modules/client.js'
3 years ago
export default {
data() {
return {
3 years ago
isDetail: false,
customerId: '',
// 客户类型
customerTypeList: [{
name: '正式',
3 years ago
value: 1
3 years ago
},
{
name: '试用',
3 years ago
value: 2
3 years ago
},
{
name: '到期',
value: 3
3 years ago
}],
3 years ago
nameRepeat: false,
3 years ago
schoolList: [],
industryClassList: [],
industryList: [],
form: {
3 years ago
countries: '中国',
3 years ago
customerId: '',
customerName: '',
industryClassId: '',
industryId: '',
provinceId: '',
3 years ago
provinceName: '',
3 years ago
account: '',
name: '',
phone: '',
position: '',
cityId: '',
3 years ago
cityName: '',
3 years ago
customerType: '',
expireDate: '',
email: '',
schoolId: ''
},
3 years ago
// 校验规则
rules: {
schoolId: {
rules: [{
required: true,
errorMessage: '请选择客户'
}]
},
industryClassId: {
rules: [{
required: true,
errorMessage: '请选择行业类型'
}]
},
industryId: {
rules: [{
required: true,
errorMessage: '请选择行业'
}]
},
name: {
rules: [{
required: true,
errorMessage: '联系人姓名不能为空'
}]
},
account: {
rules: [{
required: true,
errorMessage: '账号不能为空'
}]
},
},
3 years ago
customerType: '',
3 years ago
}
},
3 years ago
onLoad(option) {
this.customerId = option.customerId
this.isDetail = !!option.show
3 years ago
3 years ago
option.customerId && this.getInfo()
// 非详情才需要查询学校和行业
if (!this.isDetail) {
this.getSchool()
this.getIndustryClass()
}
// 设置标题
uni.setNavigationBarTitle({
title: option.customerId ?
(option.show ?
'客户详情' :
'编辑客户') :
'新增客户'
})
3 years ago
},
methods: {
3 years ago
// 获取详情
getInfo() {
queryCustomerDetails({
customerId: this.customerId
}).then(({ result }) => {
const { customer } = result
this.form = customer
this.$refs.nameInput.val = customer.name
this.$refs.phoneInput.val = customer.phone
this.$refs.accountInput.val = customer.account
this.$refs.positionInput.val = customer.position
this.$refs.emailInput.val = customer.email
3 years ago
this.customerType = this.customerTypeList.find(e => e.value === customer.customerType).name
}).catch(e => {})
},
// 获取学校列表
getSchool() {
querySchool({
schoolName: '',
provinceId: '',
cityId: ''
}).then(({ list }) => {
this.schoolList = list
}).catch(res => {})
},
3 years ago
// 客户名称选择回调
schoolChange() {
const { form } = this
const { schoolId } = form
console.log(33, form)
const school = this.schoolList.find(e => e.schoolId === schoolId)
form.customerName = school.schoolName
form.provinceId = school.provinceId
form.provinceName = school.provinceName
form.cityId = school.cityId
form.cityName = school.cityName
queryCustomerIsExists({
schoolId
}).then(res => {
this.nameRepeat = false
}).catch(res => {
this.nameRepeat = true
})
},
3 years ago
// 获取行业类
getIndustryClass() {
queryIndustryClass().then(({ list }) => {
this.industryClassList = list
}).catch(res => {})
},
// 行业分类选择回调
industryClassChange() {
this.getIndustry()
},
// 获取行业
getIndustry() {
queryIndustry({
industryClassId: this.form.industryClassId
}).then(({ list }) => {
this.industryList = list
}).catch(res => {})
3 years ago
},
3 years ago
// 跳转
toPage(path) {
this.$util.to(path)
3 years ago
},
// 提交
submit(ref) {
const refs = this.$refs
const { form } = this
form.name = refs.nameInput.val
form.account = refs.accountInput.val
form.position = refs.positionInput.val
form.phone = refs.phoneInput.val
form.email = refs.emailInput.val
this.$nextTick(() => {
this.$refs.form.validate().then(res => {
if (this.nameRepeat) return this.$util.errMsg('客户已存在!')
if (this.customerId) {
updateCustomer(form).then(res => {
this.$util.sucMsg('编辑成功')
setTimeout(() => {
this.$util.to('../clients/clients')
}, 1500)
}).catch(res => {})
} else {
addCustomer(form).then(res => {
this.$util.sucMsg('添加成功')
setTimeout(() => {
uni.navigateBack()
}, 1500)
}).catch(res => {})
}
}).catch(err => {})
})
3 years ago
},
3 years ago
}
}
</script>
<style scoped lang="scss">
.page {
padding-bottom: 55px;
}
.info {
.name {
margin-bottom: 5px;
font-size: 16px;
color: #333;
}
}
3 years ago
.form {
padding: 15px;
background-color: #fff;
}
.action {
3 years ago
z-index: 2;
position: fixed;
bottom: 0;
display: flex;
justify-content: space-around;
width: 100%;
padding: 5px 10px;
background-color: #fff;
border-top: 1px solid #f3f3f3;
.item {
text-align: center;
}
.text {
font-size: 10px;
color: #959595;
}
}
3 years ago
</style>