123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035 |
- <template>
- <div class="borderless">
- <div class="customer-head">
- <div class="customer-back">
- <el-button type="danger" style="border: none;background: none;color: red" icon="el-icon-arrow-left"
- @click="backToList">返回列表
- </el-button>
- </div>
- <el-button type="success"
- class="el-button--small-yh add-customer-btn-two"
- :disabled="true"
- @click.stop="">复制新单
- </el-button>
- <el-button
- class="el-button--small-yh add-customer-btn"
- type="primary"
- :disabled="disabled"
- @click="editCustomer"
- :loading="butLoading"
- >{{form.id?'确认修改':'确认新增'}}
- </el-button>
- </div>
- <div style="margin-top: 60px">
- <el-form :model="form" ref="form" label-width="130px">
- <containerTitle title="基础信息"></containerTitle>
- <basic-container style="margin-bottom: 10px">
- <el-row>
- <el-col v-for="(item, index) in basicData.column" :span="item.span?item.span:8" :key="index">
- <el-form-item :label="item.label" :prop="item.prop" :rules="item.rules">
- <el-date-picker v-if="item.type === 'date'" style="width: 100%;" v-model="form[item.prop]" size="small" type="date" placeholder="选择日期" value-format="yyyy-MM-dd HH:mm:ss"/>
- <el-select v-else-if="item.type === 'select'" style="width: 100%" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
- <el-option
- v-for="(data, index) in item.dicData"
- :key="index"
- :label="data.label"
- :value="data.value"
- ></el-option>
- </el-select>
- <selectComponent v-else-if="item.prop === 'corpId'" v-model="form[item.prop]" :configuration="configuration"/>
- <selectComponent v-else-if="item.prop === 'purchaserId'" v-model="form[item.prop]" :configuration="pConfiguration"/>
- <el-select v-else-if="item.prop === 'orderType'" style="width: 100%" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
- <el-option v-for="(item,index) in contractTypeDic" :key="index" :label="item.dictValue" :value="item.dictValue"></el-option>
- </el-select>
- <el-select v-else-if="item.prop === 'currency'" style="width: 100%" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
- <el-option v-for="(item,index) in currencyDic" :key="index" :label="item.dictValue" :value="item.dictValue"></el-option>
- </el-select>
- <el-select v-else-if="item.prop === 'paymentType'" style="width: 100%" v-model="form[item.prop]" size="small" placeholder="请选择" clearable filterable>
- <el-option v-for="(item,index) in paymentTypeDic" :key="index" :label="item.dictValue" :value="item.dictValue"></el-option>
- </el-select>
- <el-input type="textarea" v-else-if="(item.prop === 'orderRemark')" v-model="form[item.prop]" size="small" autocomplete="off" placeholder="请输入"></el-input>
- <el-input type="age" v-else v-model="form[item.prop]" :disabled="item.disabled?true:false" size="small" autocomplete="off" placeholder="请输入"></el-input>
- </el-form-item>
- </el-col>
- </el-row>
- </basic-container>
- <!-- 采购明细-->
- <containerTitle title="采购明细"></containerTitle>
- <basic-container style="margin-bottom: 10px">
- <avue-crud
- :option="customerContact"
- v-model="contactsForm"
- :data="contactsData"
- ref="crudContact"
- @row-save="rowSave"
- @selection-change="selectionContact"
- @row-click="handleRowClick"
- @row-update="rowUpdate"
- @row-del="rowDel"
- >
- <template slot="price" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.price"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @input="priceChange(row)"
- ></el-input>
- <span v-else>{{ row.price }}</span>
- </template>
- <template slot="purchaseQuantity" slot-scope="{ row }">
- <el-input
- v-if="row.$cellEdit"
- v-model="row.purchaseQuantity"
- placeholder="请输入"
- size="small"
- oninput='this.value=this.value.replace(/[^(\d.)]/g,"").replace(/^(\d+)\.(\d\d).*$/, "$1.$2")'
- @input="quantityChange(row)"
- ></el-input>
- <span v-else>{{ row.purchaseQuantity }}</span>
- </template>
- <template slot-scope="{row,index}" slot="menu">
- <el-button
- type="text"
- size="small"
- @click="rowCell(row,index)"
- >{{ row.$cellEdit ? '修改完成' : '修改' }}
- </el-button>
- </template>
- <template slot="menuLeft" slot-scope="{size}">
- <el-button type="primary"
- icon="el-icon-plus"
- size="small"
- @click="commoditySelection"
- >录入明细
- </el-button>
- <el-button type="warning"
- icon="el-icon-s-check"
- size="small"
- :disabled="selectContact.length == 0"
- @click="beforePage(true)"
- >申请付款(开证)
- </el-button>
- <el-button type="warning"
- size="small"
- :disabled="selectContact.length == 0"
- @click="beforePage(false)"
- >收货单
- </el-button>
- <el-button type="info"
- size="small"
- @click=""
- >查看申请记录
- </el-button>
- </template>
- <template slot="priceCategory" slot-scope="{row,index}">
- <span style="margin-left: 12px;padding-top: 2px">{{ row.priceCategoryNames }}</span>
- <el-button v-if="row.$cellEdit" type="text" size="mini" style="float: right" @click="choice(row)">选择</el-button>
- </template>
- </avue-crud>
- </basic-container>
- <fee-info
- ref="feeInfo"
- :orderFeesList="orderFeesList"
- feeUrl=""
- />
- <upload-file
- ref="uploadFile"
- title="合同附件"
- :orderFilesList="orderFilesList"
- delUrl=""
- />
- </el-form>
- </div>
- <el-dialog
- title="导入商品详情"
- append-to-body
- class="el-dialogDeep"
- :visible.sync="dialogVisible"
- width="80%"
- :close-on-click-modal="false"
- :destroy-on-close="true"
- :close-on-press-escape="false">
- <el-row style="height: 0;">
- <el-col :span="5">
- <div>
- <el-scrollbar>
- <basic-container>
- <avue-tree :option="treeOption" :data="treeData" @node-click="nodeClick"/>
- </basic-container>
- </el-scrollbar>
- </div>
- </el-col>
- <el-col :span="19">
- <basic-container>
- <avue-crud :option="optionTwo"
- :table-loading="loading"
- :data="data"
- ref="crud"
- @refresh-change="refreshChange"
- @selection-change="selectionChange"
- :page.sync="page"
- @on-load="onLoad"></avue-crud>
- </basic-container>
- </el-col>
- </el-row>
- <span slot="footer" class="dialog-footer">
- <el-button @click="dialogVisible = false , selectKind = -1">取 消</el-button>
- <el-button type="primary" @click="commodityConfirm" v-if="selectKind != -1" :disabled="tableData.length !== 1">确定</el-button>
- <el-button type="primary" @click="importGoods" v-if="commodityData !== true && selectKind == -1" :disabled="tableData.length !== 1">导入</el-button>
- <el-button type="primary" @click="importChoice" v-if="commodityData === true && selectKind == -1"
- :disabled="tableData.length !== 1">导入<</el-button>
- </span>
- </el-dialog>
- </div>
- </template>
- <script>
- import customerContact from "./config/customerContact.json"
- import uploadList from './config/uploadList.json'
- import advantageProject from "./config/advantageProject.json"
- import {getDeptLazyTree,customerList} from "@/api/basicData/basicFeesDesc";
- import optionTwoCost from "./config/mainListCost.json"
- import {detailListData, submitData,getSysNo} from "@/api/importTrade/purchase";
- import commodity from "./config/commodity.json"
- import feeInfo from "@/components/fee-info/main";
- import uploadFile from "@/components/upload-file/main";
- //商品详情接口
- import {corpsattn, corpsbank, getDeptLazyTreeS} from "@/api/basicData/configuration"
- import { getList } from "@/api/basicData/commodityType"
- export default {
- name: "detailsPage",
- props: {
- detailData: {
- type: Object
- }
- },
- data() {
- return {
- form: {},
- disabled: false,
- customerContact: customerContact,
- contactsForm: {},
- contactsData: [],
- dialogVisible:false,
- commodityData: false,
- tableData: [],
- optionTwo: commodity,
- loading: false,
- data: [],
- page: {
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- contractTypeDic:[],
- currencyDic:[],
- selectContact:[],//选中采购明细
- selectKind: -1,//选择采购明细的货品
- paymentTypeDic:[],
- orderFeesList:[],
- orderFilesList:[],
- treeDeptId: '',
- treeOption: {
- nodeKey: 'id',
- lazy: true,
- treeLoad: function (node, resolve) {
- const parentId = (node.level === 0) ? 0 : node.data.id;
- getDeptLazyTreeS(parentId).then(res => {
- resolve(res.data.data.map(item => {
- return {
- ...item,
- leaf: !item.hasChildren
- }
- }))
- });
- },
- addBtn: false,
- menu: false,
- size: 'small',
- props: {
- labelText: '标题',
- label: 'title',
- value: 'value',
- children: 'children'
- }
- },
- configuration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- pConfiguration:{
- multipleChoices:false,
- multiple:false,
- disabled:false,
- searchShow:true,
- collapseTags:false,
- placeholder:'请点击右边按钮选择',
- dicData:[]
- },
- // 合同上传数据
- uploadList: uploadList,
- // 合同数据
- bankOfDepositData: [],
- bankOfDepositForm: {},
- // 其他费用
- advantageProject: advantageProject,
- advantageProjectData: [],
- advantageProjectForm: {},
- dialogCost: false,
- choiceData: false,
- treeOptionCost:{
- nodeKey: 'id',
- lazy: true,
- treeLoad: function (node, resolve) {
- const parentId = (node.level === 0) ? 0 : node.data.id;
- getDeptLazyTree(parentId).then(res => {
- resolve(res.data.data.map(item => {
- return {
- ...item,
- leaf: !item.hasChildren
- }
- }))
- });
- },
- addBtn: false,
- menu: false,
- size: 'small',
- props: {
- labelText: '标题',
- label: 'title',
- value: 'value',
- children: 'children'
- }
- },
- // 导入其他费用配置
- optionTwoCost: optionTwoCost,
- loadingCost: false,
- dataCost:[],
- pageCost:{
- pageSize: 10,
- currentPage: 1,
- total: 0
- },
- tableDataCost: [],
- treeDeptIdCost: '',
- choiceIndex: '',
- // 基础信息
- basicData: {
- column: [
- {
- label: '系统编号',
- prop: 'sysNo',
- disabled:true,
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '供应商',
- prop: 'corpId',
- dicData: [],
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '采购商',
- prop: 'purchaserId',
- dicData: [],
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },{
- label: '合同号',
- prop: 'orderNo',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '合同日期',
- prop: 'businesDate',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '合同类型',
- prop: 'orderType',
- // type:'select',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '合同金额',
- prop: 'orderAmount',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '合同重量',
- prop: 'contractWeight',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '业务员',
- prop: 'salesName',
- dicData: [],
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },{
- label: '要求发货日期',
- prop: 'requiredDeliveryDate',
- type:'date',
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '要求到货日期',
- prop: 'requiredArrivalDate',
- type:'date',
- rules: [
- {
- required: true,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },{
- label: '到港日期',
- prop: 'dateOfArrival',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '单价',
- prop: 'salesPrice',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '币别',
- prop: 'currency'
- }, {
- label: '汇率',
- prop: 'exchangeRate',
- }, {
- label: '人民币金额',
- prop: 'rmbAmount',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '付款方式',
- prop: 'paymentType',
- }, {
- label: '付款/开证日期',
- prop: 'accountsCollectionDate',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '预付(保证)金额',
- prop: 'advancePayment',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- },{
- label: '已付金额',
- prop: 'settlmentAmount',
- rules: [
- {
- pattern: /(^[1-9]([0-9]+)?(\.[0-9]{1,2})?$)|(^(0){1}$)|(^[0-9]\.[0-9]([0-9])?$)/,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '信用证到期日',
- prop: 'creditDate',
- type:'date',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: '码单重量',
- prop: 'billWeight',
- rules: [
- {
- required: false,
- message: ' ',
- trigger: 'blur'
- }
- ]
- }, {
- label: "订单备注",
- span: 24,
- prop: "orderRemark",
- mock: {
- type: 'county'
- }
- }
- ],
- },
- }
- },
- created() {
- //币别
- this.getWorkDicts("currency").then(res =>{
- this.currencyDic = res.data.data
- })
- this.getWorkDicts("contractType").then(res =>{
- this.contractTypeDic = res.data.data
- })
- this.getWorkDicts("payment_term").then(res =>{
- this.paymentTypeDic = res.data.data
- })
- if (this.detailData.id) {
- let id = this.detailData.id.replace(/\"/g, "")
- detailListData(id).then(res => {
- this.form = res.data.data;
- this.configuration.dicData = this.form.corpsName
- this.pConfiguration.dicData = this.form.purchaserName
- if(res.data.data.itemsVOList){
- this.contactsData = res.data.data.itemsVOList
- }
- if(res.data.data.orderFeesList){
- this.orderFeesList = res.data.data.orderFeesList
- }
- if( res.data.data.orderFilesList){
- this.orderFilesList = res.data.data.orderFilesList
- }
- })
- }else{
- getSysNo("JK-CG").then(res =>{
- this.$set(this.form,"sysNo", res.data.data)
- })
- }
- },
- components: {
- feeInfo,
- uploadFile
- },
- methods: {
- //单价
- priceChange(row) {
- if (!row.price) {
- row.price = "";
- row.amount = 0
- } else {
- row.amount = (row.purchaseQuantity * row.price).toFixed(2);
- }
- },
- //件数
- quantityChange(row) {
- if (!row.purchaseQuantity) {
- row.purchaseQuantity = "";
- row.amount = 0
- } else {
- row.amount = (row.purchaseQuantity * row.price).toFixed(2);
- }
- },
- //修改提交触发
- editCustomer(status) {
- this.$refs["form"].validate((valid) => {
- if (valid) {
- let orderFeesList = this.$refs.feeInfo.submitData();
- for (let i = 0; i < orderFeesList.length; i++) {
- if (orderFeesList[i].corpId == null) {
- return this.$message.error(`请输入第${i + 1}行的结算中心`);
- }
- if (orderFeesList[i].price == 0) {
- return this.$message.error(`请正确输入第${i + 1}行的价格`);
- }
- if (orderFeesList[i].orderQuantity == 0) {
- return this.$message.error(`请正确输入第${i + 1}行的数量`);
- }
- }
- const orderFilesList = this.$refs.uploadFile.submitData();
- for (let j = 0; j < this.contactsData.length; j++) {
- if (this.contactsData[j].billNo == null) {
- return this.$message.error(`请输入第${j + 1}行的提单号`);
- }
- }
- let submitDto = {
- ...this.form,
- tradeType:"JK",
- billType:"CG",
- itemsVOList: this.contactsData,
- orderFeesList: orderFeesList,
- orderFilesList: orderFilesList
- };
- submitData(submitDto).then(res => {
- if(res.data.success){
- this.form.id = res.data.data
- this.$message.success("操作成功!")
- detailListData(this.form.id).then(res => {
- this.form = res.data.data;
- this.configuration.dicData = this.form.corpsName
- this.pConfiguration.dicData = this.form.purchaserName
- if(res.data.data.itemsVOList){
- this.contactsData = res.data.data.itemsVOList
- }
- if(res.data.data.orderFeesList){
- this.orderFeesList = res.data.data.orderFeesList
- }
- if( res.data.data.orderFilesList){
- this.orderFilesList = res.data.data.orderFilesList
- }
- })
- }
- })
- setTimeout(() =>{
- },1000);
- this.butLoading = false;
- if(status === true){
- this.$emit("goBack");
- }
- } else {
- return false;
- }
- });
- },
- selectionContact(row){
- this.selectContact = row;
- },
- beforePage(type){
- let list = []
- for (let item in this.selectContact){
- if (!this.selectContact[item].id){
- return this.$confirm('商品信息有未保存数据, 是否立即保存?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- this.editCustomer();
- })
- }else {
- list.push(this.selectContact[item].$index)
- }
- }
- const params = {
- id:this.form.id,
- orderItemIds:list
- }
- if(type){
- this.$router.push({
- path: "/financialManagement/payment",
- query: {params: params},
- });
- }else{
- this.$router.push({
- path: "/importTrade/receipt/index",
- query: {params: params},
- });
- }
- },
- //选择货物品种
- choice(row){
- this.dialogVisible = true;
- this.selectKind = row.$index;
- },
- //选择货品
- commodityConfirm(){
- if(this.tableData){
- this.contactsData[this.selectKind].priceCategory = this.tableData[0].id;
- this.$set(this.contactsData[this.selectKind],'priceCategoryNames',this.tableData[0].cname)
- this.dialogVisible = !this.dialogVisible
- this.selectKind = -1
- }
- },
- //新增商品明细保存触发
- rowSave(row, done, loading) {
- // this.contactsData.push(row)
- done()
- },
- //修改商品信息触发
- rowUpdate(row, index, done, loading) {
- done(row);
- },
- //删除商品信息触发
- rowDel(row, index, donerowDel) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- //商品判断是否需要调用删除接口
- if (row.id) {
- corpsattn(row.id).then(res => {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.contactsData.splice(index, 1);
- })
- } else {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.contactsData.splice(index, 1);
- }
- })
- },
- //点击商品明细选择触发
- commodityChoice(row) {
- this.dialogVisible = !this.dialogVisible
- this.commodityData = true
- this.choiceIndexT = row.$index
- },
- //商品编辑
- rowCell(row, index) {
- this.$refs.crudContact.rowCell(row, index)
- },
- //商品新增触发
- commoditySelection() {
- this.dialogVisible = !this.dialogVisible
- this.commodityData = false
- },
- //点击行可编辑
- handleRowClick(row, event, column) {
- },
- //刷新触发
- refreshChange() {
- this.treeDeptId = '';
- this.page.currentPage = 1;
- this.onLoad(this.page);
- },
- //选中触发
- selectionChange(list) {
- this.tableData = list
- },
- //导入页左商品类型查询
- nodeClick(data) {
- this.treeDeptId = data.id;
- this.page.currentPage = 1;
- this.onLoad(this.page);
- },
- //商品详情list
- onLoad(page, params = {}) {
- this.loading = true;
- getList(page.currentPage, page.pageSize, Object.assign(params, this.query), this.treeDeptId).then(res => {
- const data = res.data.data;
- this.page.total = data.total;
- this.data = data.records;
- this.loading = false;
- });
- },
- //确认导入触发
- importGoods() {
- if (this.tableData.length > 0) {
- for (let item in this.tableData) {
- const params ={
- priceCategory:this.tableData[item].code,
- priceCategoryNames:this.tableData[item].cname,
- itemId:this.tableData[item].id,
- cname:this.tableData[item].cname
- }
- this.$refs.crudContact.rowCellAdd(params);
- this.$refs.crudContact.rowCell(params,this.contactsData.length - 1)
- }
- }
- this.tableData = []
- this.dialogVisible = false
- },
- //导入商品触发
- importChoice() {
- if (this.tableData.length === 1) {
- this.contactsData[this.choiceIndexT].cname = this.tableData[0].cname
- this.contactsData[this.choiceIndexT].code = this.tableData[0].code
- this.contactsData[this.choiceIndexT].typeno = this.tableData[0].typeno
- this.contactsData[this.choiceIndexT].specificationAndModel = this.tableData[0].specificationAndModel
- this.contactsData[this.choiceIndexT].itemId = this.tableData[0].id
- this.contactsData[this.choiceIndexT].priceCategory = this.tableData[0].goodsTypeName
- }
- this.dialogVisible = !this.dialogVisible
- this.commodityData = false
- },
- //其他费用编辑
- rowCellTwo(row, index) {
- this.$refs.crudProject.rowCell(row, index)
- },
- //新增明细保存触发
- rowSaveProject(row, done, loading){
- // this.advantageProjectData.push(row)
- done()
- },
- //修改明细触发
- rowUpdateProject(row, index, done, loading) {
- done(row);
- },
- //删除明细触发
- rowDelProject(row, index, donerowDel) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id){
- // corpsitem(row.id).then(res=>{
- // this.$message({
- // type: "success",
- // message: "操作成功!"
- // });
- // this.detailedData.splice(index, 1);
- // })
- }else {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.detailedData.splice(index, 1);
- }
- })
- },
- // 修改其他费用明细
- rowUpdateAdvantageProject(row, index, done, loading) {
- done(row);
- },
- // 删除其他费用明细
- rowDelAdvantageProject(row, index, donerowDel) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id){
- // corpsitem(row.id).then(res=>{
- // this.$message({
- // type: "success",
- // message: "操作成功!"
- // });
- // this.detailedData.splice(index, 1);
- // })
- }else {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.advantageProjectData.splice(index, 1);
- }
- })
- },
- //其他费用新增触发
- costIncrease(){
- this.dialogCost = !this.dialogCost
- this.choiceData = false
- },
- //新增附件上传保存触发
- rowSaveBankOfDeposit(row, done, loading){
- this.bankOfDepositData.push(row)
- done()
- },
- //修改附件上传触发
- rowUpdateBankOfDeposit(row, index, done, loading) {
- done(row);
- },
- //删除附件上传触发
- rowDelBankOfDeposit(row, index, donerowDel) {
- this.$confirm("确定将选择数据删除?", {
- confirmButtonText: "确定",
- cancelButtonText: "取消",
- type: "warning"
- }).then(() => {
- if (row.id){
- corpsbank(row.id).then(res=>{
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.bankOfDepositData.splice(index, 1);
- })
- }else {
- this.$message({
- type: "success",
- message: "操作成功!"
- });
- this.bankOfDepositData.splice(index, 1);
- }
- })
- },
- //费用查询
- onLoadCost(page, params = {}) {
- this.loadingCost = true;
- let queryParams = Object.assign({}, params, {pageSize: page.pageSize, pageNum: page.currentPage,parentId:0,feesTypeId:this.treeDeptIdCost})
- customerList(queryParams).then(res => {
- const data = res.data.data;
- this.pageCost.total = data.total;
- this.dataCost = data.records;
- this.loadingCost = false;
- });
- },
- nodeClickCost(data){
- this.treeDeptIdCost = data.id;
- this.pageCost.currentPage = 1;
- this.onLoadCost(this.pageCost);
- },
- //费用刷新触发
- refreshChangeCost() {
- this.treeDeptIdCost = '';
- this.pageCost.currentPage = 1;
- this.onLoadCost(this.pageCost);
- },
- //费用选中触发
- selectionChangeCost(list){
- this.tableDataCost = list
- },
- //费用导入触发
- importCost(){
- // this.advantageProjectForm = this.advantageProjectForm.concat(this.tableDataCost)
- if (this.tableDataCost.length>0){
- for(let item in this.tableDataCost){
- this.tableDataCost[item].itemId = this.tableDataCost[item].id
- this.tableDataCost[item].feeName = this.tableDataCost[item].cname
- delete this.tableDataCost[item].id
- this.$refs.crudProject.rowCellAdd(this.tableDataCost[item]);
- this.$refs.crudProject.rowCell(this.tableDataCost[item], this.advantageProjectForm.length-1)
- }
- }
- this.tableDataCost = []
- this.dialogCost = false
- },
- //费用编辑导入触发
- choiceCost(){
- if (this.tableDataCost.length === 1){
- this.advantageProjectData[this.choiceIndex].feeName = this.tableDataCost[0].cname
- this.advantageProjectData[this.choiceIndex].itemId = this.tableDataCost[0].id
- this.advantageProjectData[this.choiceIndex].code = this.tableDataCost[0].code
- }
- this.dialogCost = !this.dialogCost
- this.choiceData = false
- },
- // 发货
- sendHandle() {
- this.$message.success('发货成功')
- },
- backToList() {
- this.$confirm("是否保存当前页面?", "提示", {
- confirmButtonText: "保存",
- cancelButtonText: "取消",
- type: "warning",
- }).then(() => {
- this.editCustomer(true)
- }).catch(() => {
- this.$emit("goBack");
- })
- },
- }
- }
- </script>
- <style scoped lang="scss">
- .customer-head {
- position: fixed;
- top: 105px;
- width: 100%;
- margin-left: -10px;
- height: 62px;
- background: #ffffff;
- box-shadow: 0 4px 12px 0px rgba(232, 232, 235, 1);
- z-index: 999;
- /* display: flex;
- justify-content: left; */
- }
- .customer-back {
- cursor: pointer;
- line-height: 62px;
- font-size: 16px;
- color: #323233;
- font-weight: 400;
- }
- .add-customer-btn-two {
- position: fixed;
- right: 150px;
- top: 115px;
- }
- .add-customer-btn {
- position: fixed;
- right: 36px;
- top: 115px;
- }
- ::v-deep .el-form-item {
- margin-bottom: 0;
- }
- //el-icon-plus avue-upload__icon
- .avue-upload /deep/ .avue-upload__icon {
- line-height: 178px !important;
- }
- </style>
|