| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308 |
- <template>
- <view class="mainBox">
- <uni-nav-bar background-color="#157A2C" color="#fff" fixed="true" statusBar="true" left-icon="back" :title="this.form.id?'修改商机':'新建商机'"
- @clickLeft="back">
- </uni-nav-bar>
- <u-subsection :list="list" :current="current" @change="sectionChange"></u-subsection>
- <u-cell-group v-show='current==0'>
- <u-cell title="客户" arrow-direction="down">
- <u--input slot="value" placeholder="请选择" border="surround" v-model="form.contactName"
- @click.native="selectContactShow"></u--input>
- </u-cell>
- <u-cell title="商机名称" arrow-direction="down">
- <u--input slot="value" placeholder="请输入" border="surround" v-model="form.name"></u--input>
- </u-cell>
- <u-cell title="负责人" arrow-direction="down">
- <u--input slot="value" :disabled="true" placeholder="请输入" border="surround"
- v-model="form.responsibleName"></u--input>
- </u-cell>
- <u-cell title="商机来源" arrow-direction="down">
- <uni-data-picker v-model="form.sourceCode" slot="value" placeholder="请选择"
- :localdata="business_opport_code" @change="sourceCodeOnchange">
- </uni-data-picker>
- </u-cell>
- <u-cell title="赢单率" arrow-direction="down">
- <view slot="value" style="display: flex;align-items: center;width: 100%;">
- <u--input style="flex:1" type="number" max="100" min="0" placeholder="请输入" border="surround"
- v-model="form.winRate">
-
- </u--input>
- %
- </view>
-
-
- </u-cell>
- <u-cell title="预算" arrow-direction="down">
- <view slot="value" style="display: flex;align-items: center;width: 100%;">
- <u--input style="flex:1" type="number" placeholder="请输入" border="surround" v-model="form.budget">
-
- </u--input>
- 万元
- </view>
-
- </u-cell>
- <u-cell title="预计结单日期" arrow-direction="down">
- <uni-datetime-picker type="date" slot="value" v-model="form.expectedClosingDate">
- </uni-datetime-picker>
- </u-cell>
- <u-cell title="计价方式" arrow-direction="down">
- <radio-group @change="radioChange" v-model="form.pricingWay" slot="value">
- <radio value="1" :checked="form.pricingWay==1">按数量计价</radio>
- <radio value="2" :checked="form.pricingWay==2">按重量计价</radio>
- </radio-group>
- </u-cell>
- <u-cell title="备注" arrow-direction="down">
- <u--textarea slot="value" placeholder="请输入" border="surround" v-model="form.remark"></u--textarea>
- </u-cell>
- </u-cell-group>
- <view class="footerButton">
- <u-button type="default" text="返回" @click="back"></u-button>
- <u-button type="primary" @click="save" text="保存"></u-button>
- </view>
- <produceList ref="produceListRef" v-show="current==1" :pricingWay="form.pricingWay"></produceList>
- <businessList ref="businessListRef" v-show="current==2"></businessList>
- <personnelList ref="personnelListRef" :linkList="linkList" v-show="current==3"></personnelList>
- <u-toast ref="uToast"></u-toast>
- </view>
- </template>
- <script>
- // file:///D:/中赢/aiot-app/pages/warehouse/enterHouse/selectEnterType.vue
- import {
- getByCode
- } from '@/api/pda/common.js'
- import {
- contactDetail,
- } from '@/api/saleManage/contact/index.js'
- import {
- businessopportunitySave,
- getDetail
- } from '@/api/saleManage/businessOpportunity/index.js'
- import produceList from '../components/produceList.vue'
- import businessList from './components/businessList.vue'
- import personnelList from './components/personnelList.vue'
- export default {
- components: {
- produceList,
- businessList,
- personnelList
- },
- data() {
- return {
- list: ['基本信息', '产品清单', '竞品', '关键人信息'],
- current: 0,
- form: {
- id: '',
- contactName: '',
- contactId: '',
- budget: null,
- expectedClosingDate: '',
- sourceCode: '',
- sourceName: '',
- stageCode: '',
- stageName: '',
- winRate: null,
- name: '',
- remark: '',
- responsibleName: '',
- responsibleId: '',
- source: '',
- status: 1,
- pricingWay: '1',
- files: []
- },
- business_opport_code: [],
- linkList: [],
-
- }
- },
- created() {
- this.getByCode()
- },
- onLoad(data) {
- uni.$off('setSelectList')
- uni.$on('setSelectList', async (data) => {
- if (data && data.length > 0) {
- const {
- linkList
- } = await contactDetail(data[0].id)
- this.linkList = linkList
- this.$set(this.form, 'contactId', data[0].id);
- this.$set(this.form, 'contactName', data[0].name);
- }
- })
- if (data && data.id) {
- getDetail(data.id).then(async res => {
- this.form = res
- const {
- linkList
- } = await contactDetail(res.contactId)
- this.linkList = linkList
- this.$nextTick(() => {
- this.$refs.produceListRef.init(res.productList)
- this.$refs.businessListRef.init(res.competAnalysisList)
- this.$refs.personnelListRef.init(res.partyList)
- })
- })
- } else {
- const userInfo = uni.getStorageSync('userInfo')
- this.$set(this.form, 'responsibleId', userInfo.userId);
- this.$set(this.form, 'responsibleName', userInfo.name);
- }
- },
- onUnload() {
- uni.$off('setSelectList')
- // uni.$off('updatelinkList')
- },
- methods: {
- getByCode() {
- const codeS = ['business_opport_code']
- codeS.forEach(async (code) => {
- const codeValue = await getByCode(code);
- this[code] = codeValue.map(item => {
- const key = Object.keys(item)[0]
- return {
- value: key,
- text: item[key]
- }
- })
- })
- },
- selectContactShow() {
- uni.navigateTo({
- url: '/pages/saleManage/components/selectContact?isAll=' + 2
- })
- },
- sourceCodeOnchange(e) {
- const value = e.detail.value
- this.form.sourceCode = value.map(item => item.value).toString()
- this.form.sourceName = value.map(item => item.text).toString()
- },
- radioChange(e) {
- this.form.pricingWay = e.detail.value
- this.$nextTick(()=>{
- this.$refs.produceListRef.getTotalPrice()
- })
-
- },
- sectionChange(index) {
- this.current = index;
- },
- async save() {
- console.log(this.$refs.produceListRef.getValue(), 'this.$refs.produceListRef.getValue()')
- try {
- if (!this.form.contactName) {
- this.$refs.uToast.show({
- type: "error",
- message: "请选择客户",
- })
- return
- }
- if (!this.form.name) {
- this.$refs.uToast.show({
- type: "error",
- message: "请输入商机名称",
- })
- return
- }
- if (!this.form.sourceCode) {
- this.$refs.uToast.show({
- type: "error",
- message: "请选择商机来源",
- })
- return
- }
- if (this.$refs.produceListRef.getValue().length == 0) {
- this.$message.warning('产品清单不能为空');
- return;
- }
- uni.showLoading({
- title: '加载中'
- })
- const data = {
- opportunity: this.form,
- competAnalysisList: this.$refs.businessListRef.getValue(),
- partyList: this.$refs.personnelListRef.getValue(),
- productList: this.$refs.produceListRef.getValue()
- };
- businessopportunitySave(data)
- .then((id) => {
- uni.hideLoading()
- this.back()
- })
- .catch((e) => {
- uni.hideLoading()
- });
- } catch (error) {
- uni.hideLoading()
- console.log(error, 'error')
- }
- },
- }
- }
- </script>
- <style lang="scss" scoped>
- /deep/.u-cell__body__content {
- flex: none;
- margin-right: 16rpx;
- }
- .mainBox {
- padding-bottom: 84rpx;
- }
- .footerButton {
- width: 100%;
- height: 84rpx;
- display: flex;
- position: fixed;
- bottom: 0;
- z-index: 10;
- /deep/.u-button {
- height: 100%;
- }
- >view {
- flex: 1;
- }
- }
- /deep/.u-button {
- // height: 100%;
- }
- /deep/.u-subsection__item__text {
- font-size: 24rpx !important;
- }
- </style>
|