Browse Source

修复测试文档中有关销售管理——虚拟订车单的问题

master
yunuo970428 3 years ago
parent
commit
b67cebb3fc
  1. 73
      anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/xunidingdan/xunidingdanguanli.vue
  2. 193
      anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/xunidingdan/xunidingjinAdd.vue
  3. 58
      anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/xunidingdan/xunidingjininfo.vue

73
anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/xunidingdan/xunidingdanguanli.vue

@ -4,11 +4,11 @@
<div class="tab-header webtop"> <div class="tab-header webtop">
<div>销售虚拟订单管理</div> <div>销售虚拟订单管理</div>
<div> <div>
<el-button type="primary" size="small" @click="handleGenerate()">生成销售订单</el-button> <!-- <el-button type="primary" size="small" @click="handleGenerate()">生成销售订单</el-button>-->
<el-button type="primary" size="small" @click="handleCreate()">新增</el-button> <el-button type="primary" size="small" @click="handleCreate()">新增</el-button>
<el-button type="primary" size="small" @click="handleUpdate()">编辑</el-button> <el-button type="primary" size="small" @click="handleUpdate()">编辑</el-button>
<el-button type="danger" size="small" @click="handleDelete()">删除</el-button> <el-button type="danger" size="small" @click="handleDelete()">删除</el-button>
<el-button type="primary" size="small">打印</el-button> <!-- <el-button type="primary" size="small">打印</el-button>-->
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> <el-button type="info" size="small" @click="handleReturn()">关闭</el-button>
</div> </div>
<el-dialog <el-dialog
@ -21,7 +21,7 @@
</div> </div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button type="primary" @click="handleConfirm()"> </el-button> <el-button type="primary" @click="handleConfirm()"> </el-button>
<el-button @click="dialogVisible = false"> </el-button> <el-button @click="dialogVisible = false">退 </el-button>
</span> </span>
</el-dialog> </el-dialog>
</div> </div>
@ -73,20 +73,16 @@
</div> </div>
<div class="listtop"> <div class="listtop">
<div class="tit">销售虚拟订车单列表</div> <div class="tit">销售虚拟订车单列表</div>
<pageye v-show="total > 0" :total="total" :page.sync="listQuery.current" :limit.sync="listQuery.size" <pageye v-show="total > 0" :total="total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/>
class="pagination" @pagination="getList"/>
</div> </div>
<div class=""> <div class="">
<el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%" <el-table :key="tableKey" v-loading="listLoading" :data="list" border style="width: 100%" @selection-change="handleSelectionChange">
@selection-change="handleSelectionChange">
<el-table-column width="50px" type="selection" align="center"/> <el-table-column width="50px" type="selection" align="center"/>
<el-table-column width="80px" label="号" type="index" :index="indexMethod" align="center"/> <el-table-column width="80px" label="号" type="index" :index="indexMethod" align="center"/>
<el-table-column width="150px" label="操作" align="center"> <el-table-column width="150px" label="操作" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<div class="searchbtns"> <div class="searchbtns">
<el-button size="small" type="primary" <el-button size="small" type="primary" :disabled="scope.row.nodeState == '' ? false:scope.row.nodeState == '发起订单'?false : true" @click="changeNodeState(scope.row)">办理
:disabled="scope.row.nodeState == '' ? false:scope.row.nodeState == '发起订单'?false : true"
@click="changeNodeState(scope.row)">办理
</el-button> </el-button>
<el-button size="small" type="primary" @click="handleCheck(scope.row)">查看</el-button> <el-button size="small" type="primary" @click="handleCheck(scope.row)">查看</el-button>
</div> </div>
@ -97,7 +93,7 @@
<span>{{ scope.row.nodeState }}</span> <span>{{ scope.row.nodeState }}</span>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column label="虚拟订单类型" align="center"> <el-table-column label="单类型" align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<span>{{ scope.row.depositBillType }}</span> <span>{{ scope.row.depositBillType }}</span>
</template> </template>
@ -147,8 +143,7 @@
<div class="pages"> <div class="pages">
<div class="tit"/> <div class="tit"/>
<!-- 翻页 --> <!-- 翻页 -->
<pagination v-show="total > 0" :total="total" :page.sync="listQuery.current" :limit.sync="listQuery.size" <pagination v-show="total > 0" :total="total" :page.sync="listQuery.current" :limit.sync="listQuery.size" class="pagination" @pagination="getList"/>
class="pagination" @pagination="getList"/>
</div> </div>
</div> </div>
</div> </div>
@ -173,8 +168,8 @@
import pageye from '@/components/pagination/pageye' import pageye from '@/components/pagination/pageye'
import divAdd from './xunidingdanAdd.vue' import divAdd from './xunidingdanAdd.vue'
import divInfo from './xunidingdaninfo.vue' import divInfo from './xunidingdaninfo.vue'
import xunidingjinAdd from "./xunidingjinAdd"; import xunidingjinAdd from './xunidingjinAdd'
import xunidingjininfo from "./xunidingjininfo"; import xunidingjininfo from './xunidingjininfo'
import hetongdanganguanliInfo from '@/views/hetongguanli/hetongdanganguanli/hetongdanganguanliInfo.vue' import hetongdanganguanliInfo from '@/views/hetongguanli/hetongdanganguanli/hetongdanganguanliInfo.vue'
@ -218,22 +213,22 @@
customerName: '', customerName: '',
billType: '', billType: '',
startTime: '', startTime: '',
endTime: '', endTime: ''
}, }
}, },
submitDto: { submitDto: {
businessSid: '', businessSid: '',
userSid: window.sessionStorage.getItem('userSid'), userSid: window.sessionStorage.getItem('userSid')
}, },
updateDto: { updateDto: {
nodeState: '', nodeState: '',
sid: '', sid: ''
}, },
nodeState: '', nodeState: '',
selectDate: undefined, selectDate: undefined,
temp: {}, // temp: {}, //
visible: true, visible: true,
hetongdanganguanliInfoShow: false, hetongdanganguanliInfoShow: false
// ------------------------------------ // ------------------------------------
} }
}, },
@ -243,8 +238,8 @@
'roles', 'roles',
'rolesIds', 'rolesIds',
'departmentId', 'departmentId',
'departmentCode', 'departmentCode'
]), ])
}, },
created() { created() {
// //
@ -273,7 +268,7 @@
handleReset() { handleReset() {
this.listQuery = { this.listQuery = {
current: 1, current: 1,
size: 20, size: 20
} }
}, },
@ -330,31 +325,31 @@
const billType = bb.name const billType = bb.name
if (this.billTypeKey == '01') { if (this.billTypeKey == '01') {
this.dialogVisible = false; this.dialogVisible = false;
this.viewState = 5; this.viewState = 5
this.$refs['divDing'].showAdd(billType, this.billTypeKey) this.$refs['divDing'].showAdd(billType, this.billTypeKey)
} else if (this.billTypeKey == '02') { } else if (this.billTypeKey == '02') {
this.dialogVisible = false; this.dialogVisible = false
this.viewState = 2; this.viewState = 2
this.$refs['divadd'].showAdd(billType, this.billTypeKey) this.$refs['divadd'].showAdd(billType, this.billTypeKey)
} }
} else { } else {
this.$message({ this.$message({
message: '请选择虚拟订车单类型', message: '请选择虚拟订车单类型',
type: 'warning' type: 'warning'
}); })
} }
}, },
// //
handleUpdate() { handleUpdate() {
if (this.sids.length == 1) { if (this.sids.length == 1) {
if (this.billType[0] == '01') { if (this.billType[0] == '01') {
this.viewState = 5; this.viewState = 5
this.dialogStatus = 'edit' this.dialogStatus = 'edit'
const sid = this.sids[0] const sid = this.sids[0]
const nodeState = this.nodeState_list[0] const nodeState = this.nodeState_list[0]
this.$refs['divDing'].showEdit(sid, nodeState) this.$refs['divDing'].showEdit(sid, nodeState)
} else { } else {
this.viewState = 3; this.viewState = 3
this.dialogStatus = 'edit' this.dialogStatus = 'edit'
const sid = this.sids[0] const sid = this.sids[0]
const nodeState = this.nodeState_list[0] const nodeState = this.nodeState_list[0]
@ -363,12 +358,12 @@
} else if (this.sids.length == 0) { } else if (this.sids.length == 0) {
this.$notify({ this.$notify({
title: '您还未选择,请选择数据!!!', title: '您还未选择,请选择数据!!!',
type: 'error', type: 'error'
}) })
} else if (this.sids.length > 1) { } else if (this.sids.length > 1) {
this.$notify({ this.$notify({
title: '您未选择的数据过多,请选择一条数据编辑!!', title: '您未选择的数据过多,请选择一条数据编辑!!',
type: 'error', type: 'error'
}) })
} }
}, },
@ -468,14 +463,14 @@
title: '提示', title: '提示',
message: '删除成功', message: '删除成功',
type: 'success', type: 'success',
duration: 2000, duration: 2000
}) })
this.getList() this.getList()
} else { } else {
this.$notify({ this.$notify({
title: '删除失败', title: '删除失败',
message: response.msg, message: response.msg,
type: 'error', type: 'error'
}) })
} }
}) })
@ -484,7 +479,7 @@
title: '提示', title: '提示',
message: '没有选择资方信息!!', message: '没有选择资方信息!!',
type: 'error', type: 'error',
duration: 2000, duration: 2000
}) })
return return
} }
@ -495,11 +490,11 @@
console.log('111', row) console.log('111', row)
if (row.nodeState == '' || row.nodeState == '发起订单') { if (row.nodeState == '' || row.nodeState == '发起订单') {
if (row.depositBillTypeKey == '01') { if (row.depositBillTypeKey == '01') {
this.viewState = 5; this.viewState = 5
this.dialogStatus = 'edit' this.dialogStatus = 'edit'
this.$refs['divDing'].showEdit(row.sid, row.nodeState) this.$refs['divDing'].showEdit(row.sid, row.nodeState)
} else if (row.depositBillTypeKey == '02') { } else if (row.depositBillTypeKey == '02') {
this.viewState = 3; this.viewState = 3
this.dialogStatus = 'edit' this.dialogStatus = 'edit'
this.$refs['divadd'].showEdit(row.sid, row.nodeState) this.$refs['divadd'].showEdit(row.sid, row.nodeState)
} }
@ -520,8 +515,8 @@
// duration: 2000, // duration: 2000,
// }) // })
// }) // })
}, }
}, }
} }
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

193
anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/xunidingdan/xunidingjinAdd.vue

@ -7,7 +7,7 @@
<el-button type="primary" size="small" @click="handleCreate()">保存</el-button> <el-button type="primary" size="small" @click="handleCreate()">保存</el-button>
<el-button type="primary" size="small" :disabled="disabled" @click="handleSubmit()">提交 <el-button type="primary" size="small" :disabled="disabled" @click="handleSubmit()">提交
</el-button> </el-button>
<el-button type="primary" size="small">打印</el-button> <!-- <el-button type="primary" size="small">打印</el-button>-->
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> <el-button type="info" size="small" @click="handleReturn()">关闭</el-button>
</div> </div>
</div> </div>
@ -24,35 +24,43 @@
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label">部门名称</span></el-form-item> <el-form-item><span slot="label">部门名称</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
{{ temp.orgName }} {{ temp.orgName }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label">业务</span></el-form-item> <el-form-item><span slot="label">销售专</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
{{ temp.staffName }} <!-- ?? --> {{ temp.staffName }} <!-- ?? -->
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row>
<el-row>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label">虚拟订单类型</span></el-form-item> <el-form-item><span slot="label">虚拟订单类型</span></el-form-item>
</el-col> </el-col>
<el-col :span="20" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
<span>{{temp.depositBillType}}</span> <span>{{temp.depositBillType}}</span>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<!-- <el-row>-->
<!-- <el-col :span="4" class="tleftb">-->
<!-- <el-form-item><span slot="label">虚拟订单类型</span></el-form-item>-->
<!-- </el-col>-->
<!-- <el-col :span="20" class="trightb">-->
<!-- <el-form-item>-->
<!-- <span>{{temp.depositBillType}}</span>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- </el-row>-->
<el-row> <el-row>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款人</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>付款人</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
<el-input v-model="temp.draweeName" class="addinputw" placeholder="" <el-input v-model="temp.draweeName" class="addinputw" placeholder=""
clearable/> clearable/>
@ -61,7 +69,7 @@
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>联系电话</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>联系电话</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="12" class="trightb">
<el-form-item> <el-form-item>
<el-input v-model="temp.draweeMobile" class="addinputw" placeholder="" clearable/> <el-input v-model="temp.draweeMobile" class="addinputw" placeholder="" clearable/>
</el-form-item> </el-form-item>
@ -71,7 +79,7 @@
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label">车辆台数</span></el-form-item> <el-form-item><span slot="label">车辆台数</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
<el-input v-model="temp.vehicleNum" class="addinputw" placeholder="" <el-input v-model="temp.vehicleNum" class="addinputw" placeholder=""
clearable/> clearable/>
@ -80,7 +88,7 @@
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>订金金额</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>订金金额</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="12" class="trightb">
<el-form-item> <el-form-item>
<el-input v-model="temp.deposit" class="addinputw" placeholder="" clearable/> <el-input v-model="temp.deposit" class="addinputw" placeholder="" clearable/>
</el-form-item> </el-form-item>
@ -88,10 +96,10 @@
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="3" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款日期</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>付款日期</span></el-form-item>
</el-col> </el-col>
<el-col :span="5" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
<el-date-picker <el-date-picker
v-model="temp.paymentDate" v-model="temp.paymentDate"
@ -101,26 +109,48 @@
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="3" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款方式</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>付款方式</span></el-form-item>
</el-col> </el-col>
<el-col :span="5" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
<el-select v-model="temp.payType" class="addinputw" placeholder="" @change="changePaymentType"> <el-select v-model="temp.payType" class="addinputw" placeholder="" @change="changePaymentType">
<el-option v-for="(item, index) in paymentType_list" :key="index.dictKey" :label="item.dictValue" <el-option v-for="(item, index) in paymentType_list" :key="index.dictKey" :label="item.dictValue" :value="item.dictKey"/>
:value="item.dictKey"/>
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="3" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款银行账号</span></el-form-item>
</el-col>
<el-col :span="4" class="trightb">
<el-form-item>
<el-input v-model="temp.payBankAcc" class="addinputw" placeholder="" clearable/>
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>收款银行</span></el-form-item>
</el-col>
<el-col :span="4" class="trightb">
<el-select v-model="temp.proBankValue" class="addinputw" placeholder="" @change="changeproBank">
<el-option v-for="(item, index) in proBank_list" :key="index.dictKey" :label="item.dictValue" :value="item.dictKey"/>
</el-select>
</el-col>
<el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>收款银行账号</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>收款银行账号</span></el-form-item>
</el-col> </el-col>
<el-col :span="5" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
<el-input v-model="temp.proBankAcc" class="addinputw" placeholder="" <el-select v-model="temp.proBankAccValue" class="addinputw" placeholder="" @change="changeProBankAccValue">
clearable/> <el-option v-for="(item, index) in ProBankAcc_list" :key="index.dictKey" :label="item.dictValue" :value="item.dictKey"/>
</el-select>
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4" class="tleftb">
</el-col>
<el-col :span="4" class="trightb">
</el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
@ -128,8 +158,7 @@
</el-col> </el-col>
<el-col :span="20" class="trightb"> <el-col :span="20" class="trightb">
<el-form-item> <el-form-item>
<el-input v-model="temp.remarks" class="addinputw" placeholder="" <el-input v-model="temp.remarks" class="addinputw" placeholder="" clearable/>
clearable/>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
@ -218,6 +247,8 @@
list: [], list: [],
paymentType_list: [], paymentType_list: [],
customer_list: [], customer_list: [],
proBank_list: [],
ProBankAcc_list: [],
temp: { temp: {
sid: '', sid: '',
billNo: '', billNo: '',
@ -272,8 +303,9 @@
}, },
created() { created() {
// //
this.init(); this.init()
this.getPaymentType(); this.getPaymentType()
this.getProBank()
}, },
methods: { methods: {
// ---------------------------- // ----------------------------
@ -402,7 +434,57 @@
this.temp.payTypeKey = bb.key this.temp.payTypeKey = bb.key
console.log('name', this.temp.payType) console.log('name', this.temp.payType)
}, },
//---------------------------- getProBank() {
typeValues({
type: 'receiptBank'
}).then((res) => {
if (res.code === '200') {
this.proBank_list = res.data
console.log('下拉框请求111', res.data)
}
})
},
changeproBank(value) {
console.log('触发下拉框按钮')
let bb = null
this.proBank_list.forEach((e) => {
if (e.dictKey == value) {
bb = {
type: e.dictType,
name: e.dictValue,
key: e.dictKey,
sid: e.sid
}
}
})
this.temp.proBankValue = bb.name
this.temp.proBankKey = bb.key
this.getProBankAcc(bb.sid)
},
getProBankAcc(sid) {
typeValues({ psid: sid, type: 'receiptAccount' }).then((res) => {
if (res.code === '200') {
this.ProBankAcc_list = res.data
console.log('下拉框请求111', res.data)
}
})
},
changeProBankAccValue(value) {
console.log('触发下拉框按钮')
let bb = null
this.ProBankAcc_list.forEach((e) => {
if (e.dictKey == value) {
bb = {
type: e.dictType,
name: e.dictValue,
key: e.dictKey,
sid: e.sid
}
}
})
this.temp.proBankAccValue = bb.name
this.temp.proBankAccKey = bb.key
},
// //
handleCreate() { handleCreate() {
this.$refs['dataForm'].validate((valid) => { this.$refs['dataForm'].validate((valid) => {
@ -411,7 +493,7 @@
if (valid) { if (valid) {
this.FormLoading = true this.FormLoading = true
this.dialogStatus = 'create' this.dialogStatus = 'create'
if (this.stateId === '0') { // if (this.stateId === '0') {
this.temp.staffSid = this.YongHuid.staffSid this.temp.staffSid = this.YongHuid.staffSid
this.temp.staffName = this.staffName this.temp.staffName = this.staffName
this.temp.orgName = this.orgName this.temp.orgName = this.orgName
@ -437,34 +519,35 @@
}) })
} }
}) })
} else { // }
this.temp.staffSid = this.YongHuid.staffSid // else {
this.temp.orgSid = this.YongHuid.organizationSid // this.temp.staffSid = this.YongHuid.staffSid
this.temp.orgName = this.orgName // this.temp.orgSid = this.YongHuid.organizationSid
this.temp.staffName = this.staffName // this.temp.orgName = this.orgName
this.temp.userSid = window.sessionStorage.getItem('userSid') // this.temp.staffName = this.staffName
this.temp.customerList = this.list // this.temp.userSid = window.sessionStorage.getItem('userSid')
this.getUrl() // this.temp.customerList = this.list
update(this.temp).then((response) => { // this.getUrl()
this.dialogStatus = 'update' // update(this.temp).then((response) => {
this.FormLoading = false // this.dialogStatus = 'update'
if (response.code === '200') { // this.FormLoading = false
this.$notify({ // if (response.code === '200') {
title: '提示', // this.$notify({
message: '修改成功', // title: '',
type: 'success', // message: '',
duration: 2000, // type: 'success',
}) // duration: 2000,
this.handleReturn('true') // })
} else { // this.handleReturn('true')
this.$notify({ // } else {
title: '失败', // this.$notify({
message: '修改失败', // title: '',
type: 'error', // message: '',
}) // type: 'error',
} // })
}) // }
} // })
// }
} }
}) })
}, },

58
anrui-buscenter/anrui-buscenter-ui/src/views/xiaoshouguanli/xunidingdan/xunidingjininfo.vue

@ -8,7 +8,7 @@
:disabled="this.nodeState == '' ? false : this.nodeState == '发起订单' ? false : true" :disabled="this.nodeState == '' ? false : this.nodeState == '发起订单' ? false : true"
@click="handleSubmit()">提交 @click="handleSubmit()">提交
</el-button> </el-button>
<el-button type="primary" size="small">打印</el-button> <!-- <el-button type="primary" size="small">打印</el-button>-->
<el-button type="info" size="small" @click="handleReturn()">关闭</el-button> <el-button type="info" size="small" @click="handleReturn()">关闭</el-button>
</div> </div>
</div> </div>
@ -25,30 +25,38 @@
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label">部门名称</span></el-form-item> <el-form-item><span slot="label">部门名称</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
{{ temp.orgName }} {{ temp.orgName }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label">业务</span></el-form-item> <el-form-item><span slot="label">销售专</span></el-form-item>
</el-col> </el-col>
<el-col :span="8" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
{{ temp.staffName }} {{ temp.staffName }}
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row>
<el-row>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label">虚拟订单类型</span></el-form-item> <el-form-item><span slot="label">虚拟订单类型</span></el-form-item>
</el-col> </el-col>
<el-col :span="20" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
<span>{{temp.depositBillType}}</span> <span>{{temp.depositBillType}}</span>
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
<!-- <el-row>-->
<!-- <el-col :span="4" class="tleftb">-->
<!-- <el-form-item><span slot="label">虚拟订单类型</span></el-form-item>-->
<!-- </el-col>-->
<!-- <el-col :span="20" class="trightb">-->
<!-- <el-form-item>-->
<!-- <span>{{temp.depositBillType}}</span>-->
<!-- </el-form-item>-->
<!-- </el-col>-->
<!-- </el-row>-->
<el-row> <el-row>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款人</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>付款人</span></el-form-item>
@ -87,30 +95,52 @@
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="3" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款日期</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>付款日期</span></el-form-item>
</el-col> </el-col>
<el-col :span="5" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
{{ temp.paymentDate }} {{ temp.paymentDate }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="3" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款方式</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>付款方式</span></el-form-item>
</el-col> </el-col>
<el-col :span="5" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
{{ temp.payType }} {{ temp.payType }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="3" class="tleftb"> <el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>付款银行账号</span></el-form-item>
</el-col>
<el-col :span="4" class="trightb">
<el-form-item>
{{ temp.payBankAcc }}
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>收款银行</span></el-form-item>
</el-col>
<el-col :span="4" class="trightb">
<el-form-item>
{{ temp.proBankValue }}
</el-form-item>
</el-col>
<el-col :span="4" class="tleftb">
<el-form-item><span slot="label"><span class="icon">*</span>收款银行账号</span></el-form-item> <el-form-item><span slot="label"><span class="icon">*</span>收款银行账号</span></el-form-item>
</el-col> </el-col>
<el-col :span="5" class="trightb"> <el-col :span="4" class="trightb">
<el-form-item> <el-form-item>
{{ temp.proBankAcc }} {{ temp.proBankAccValue }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="4" class="tleftb">
</el-col>
<el-col :span="4" class="trightb">
</el-col>
</el-row> </el-row>
<el-row> <el-row>
<el-col :span="4" class="tleftb"> <el-col :span="4" class="tleftb">

Loading…
Cancel
Save