123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292 |
- <template>
- <div>
- <el-dialog
- :title="!id ? '新增': display ? '详情' : '修改'"
- width="70%"
- :close-on-click-modal="false"
- :visible.sync="visible">
- <el-form :model="dataForm" :rules="dataRule" ref="dataForm" label-width="auto">
- <el-row class="my-row">
- <el-col :span="8">
- <el-form-item label="客户名称" prop="cusId">
- <el-select
- v-model="dataForm.cusId"
- :disabled="display"
- remote
- placeholder="请选择">
- <el-option
- v-for="item in optionsCus"
- :key="item.value"
- :label="item.customerName"
- :value="item.customerId">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- <el-col :span="8" style="padding-left: 20px">
- <el-form-item label="联系人" prop="name">
- <el-input v-model="dataForm.name" disabled placeholder="联系人"></el-input>
- </el-form-item>
- </el-col>
- <el-col :span="8" style="padding-left: 20px">
- <el-form-item label="沟通类别" prop="coType">
- <el-select
- v-model="dataForm.coType"
- :disabled="display"
- remote
- placeholder="请选择">
- <el-option
- v-for="item in options"
- :key="item.code"
- :label="item.value"
- :value="item.code">
- </el-option>
- </el-select>
- </el-form-item>
- </el-col>
- </el-row>
- <el-row class="my-row">
- <el-form-item label="备注说明">
- <el-input v-model="dataForm.code" :disabled="display"></el-input>
- </el-form-item>
- </el-row>
- <el-row class="my-row">
- <upload-component :display="display" :title="'沟通扫描件'" :accept="'image/*'" :file-list="fileList"/>
- </el-row>
- <div class="title"><span style="color: red">*</span> 订单产品明细</div>
- <el-row>
- <el-table
- :data="cusRCommProductVOS"
- border
- style="width: 100%;">
- <el-table-column
- label="序号"
- type="index"
- width="50"
- align="center">
- </el-table-column>
- <el-table-column
- prop="productName"
- header-align="center"
- align="center"
- label="产品名称">
- </el-table-column>
- <el-table-column
- prop="cnt"
- header-align="center"
- align="center"
- label="数量"
- width="170">
- <template slot-scope="scope">
- <el-input-number v-model="scope.row.cnt" :disabled="display" :min="1" style="width: 140px;"/>
- </template>
- </el-table-column>
- <el-table-column
- prop="price"
- header-align="center"
- align="center"
- label="含税单价">
- <template slot-scope="scope">
- <el-input-number v-model="scope.row.price" :disabled="display" :precision="2" :step="0.1" :min="0" style="width: 140px;"/>
- </template>
- </el-table-column>
- <el-table-column
- prop="amount"
- header-align="center"
- align="center"
- label="含税总价">
- <template slot-scope="scope">
- <span>{{ (scope.row.cnt*scope.row.price).toFixed(2) }}</span>
- </template>
- </el-table-column>
- <el-table-column
- prop="rate"
- header-align="center"
- align="center"
- label="税率">
- <template slot-scope="scope">
- <el-input type="number" v-model="scope.row.rate" :disabled="display">
- <template slot="append">%</template>
- </el-input>
- </template>
- </el-table-column>
- <el-table-column
- prop="notes"
- header-align="center"
- align="center"
- label="备注">
- </el-table-column>
- </el-table>
- </el-row>
- <el-row v-if="!display" style="text-align: center; margin-top: 10px;">
- <el-button type="primary" icon="el-icon-plus" @click="inBound"></el-button>
- </el-row>
- </el-form>
- <span slot="footer" class="dialog-footer">
- <el-button @click="visible = false">取消</el-button>
- <el-button v-if="!display" type="primary" @click="dataFormSubmit()">确定</el-button>
- </span>
- </el-dialog>
- <template-chose v-if="inboundVisible" ref="inbound" @addItem="addItem" />
- </div>
- </template>
- <script>
- import templateChose from '../product/template-chose'
- import { getCustomer, getCoDetail } from '@/api/cus'
- import uploadComponent from '../common/upload-component'
- import { getDictList } from '@/api/dict'
- export default {
- name: 'communicate-add-or-update',
- components: {templateChose, uploadComponent},
- computed: {
- orgId: {
- get () { return this.$store.state.user.orgId }
- }
- },
- data () {
- return {
- inboundVisible: false,
- visible: false,
- display: false,
- dictType: 'material_type',
- options: [],
- optionsCus: [],
- dataList: [],
- fileList: [],
- id: 0,
- cusRCommProductVOS: [],
- dataForm: {},
- dataRule: {
- cusId: [{ required: true, message: '客户名称不能为空', trigger: 'blur' }],
- coType: [{ required: true, message: '沟通类别不能为空', trigger: 'change' }],
- name: [{ required: true, message: '联系人不能为空', trigger: 'blur' }]
- }
- }
- },
- watch: {
- 'dataForm.cusId' (value) {
- this.optionsCus.forEach(v => {
- if (v.customerId === value) {
- this.dataForm.name = v.contact
- }
- })
- }
- },
- methods: {
- async init (id, display) {
- this.dataForm = {}
- this.cusRCommProductVOS = []
- this.visible = true
- this.id = id || 0
- this.display = display
- // 获取沟通类别
- await getDictList({type: 'communication_type'}).then(({data}) => {
- if (data) {
- this.options = data
- }
- })
- await getCustomer().then(({data}) => {
- if (data && data.code === '200') {
- this.optionsCus = data.data
- }
- })
- if (!id) return
- await getCoDetail(this.id).then(({data}) => {
- if (data && data.code === '200') {
- this.dataForm = data.data
- // 附件显示
- this.fileList = []
- data.data.attachList.forEach((item) => {
- this.fileList.push({
- name: item.fileName,
- url: item.url,
- id: item.url
- })
- })
- if (data.data.cusRCommProductVOS) {
- data.data.cusRCommProductVOS.forEach((item) => {
- this.cusRCommProductVOS.push({
- cnt: item.cnt,
- price: item.price,
- productId: item.productId,
- rate: item.rate,
- productName: item.productName,
- notes: item.notes
- })
- })
- }
- }
- })
- },
- // 表单提交
- dataFormSubmit () {
- this.$refs['dataForm'].validate((valid) => {
- if (valid) {
- // 添加附件
- let fList = this.fileList
- // console.log('fileList = ' + fList)
- if (fList.length > 0) {
- this.dataForm.attachList = []
- for (let i = 0; i < fList.length; i++) {
- this.dataForm.attachList.push({
- fileName: fList[i].name,
- url: fList[i].url
- })
- }
- }
- this.dataForm.cusRCommProductVOS = this.cusRCommProductVOS
- this.$http({
- url: this.$http.adornUrl(`/biz-service/cusCommunication/save`),
- method: 'post',
- data: this.$http.adornData({...this.dataForm, orgId: this.orgId})
- }).then(({data}) => {
- if (data && data.code === '200') {
- this.$message({
- message: '操作成功',
- type: 'success',
- duration: 1500,
- onClose: () => {
- this.visible = false
- this.$emit('refreshDataList')
- }
- })
- } else {
- this.$message.error(data.msg)
- }
- })
- }
- })
- },
- validateField (type) {
- this.$refs.dataForm.validateField(type)
- },
- inBound () {
- this.inboundVisible = true
- this.$nextTick(() => {
- this.$refs.inbound.init()
- })
- },
- addItem (item) {
- this.cusRCommProductVOS.push({
- cnt: 1,
- price: 0,
- productId: item.productId,
- rate: 0,
- productName: item.productName,
- notes: item.notes
- })
- }
- }
- }
- </script>
- <style scoped>
- .my-line{
- border-bottom: 1px solid #c0c4cc;
- margin-bottom: 10px;
- }
- .title{
- padding: 10px 0 ;
- }
- </style>
|