123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931 |
- <template>
- <!-- 运单管理 -->
- <div class="waybill_home">
- <actionBar :operateList="operateList" :formList="formList" :ruleForm="searchRuleForm" @openModel="openModel"
- @searchProtocol="searchProtocol"></actionBar>
- <div class="card_content">
- <!-- 表单 -->
- <tables ref="refWaybill" :suspension="true" :tableList="tableList" :tableData="tableData"
- @buttonData="buttonData">
- </tables>
- <!-- 分页 -->
- <div v-if="Total">
- <pagination :total="Total" :currentPage="Pagination.PageIndex" @changeSize="changeSize"
- @changeCurrent="changeCurrent">
- </pagination>
- </div>
- </div>
- <el-dialog :title="staffTitle" :visible.sync="staffDialogVisible" width="80%" :close-on-click-modal="false"
- @close="closePopup">
- <div class="card_waybill">
- <div class="waybill_item" style="margin-right: 10px;">
- <waybillForm ref="sender" title="寄件人" :conserveFlag="conserveFlag" thinTitle="寄件人簿" :ruleForm="senderForm"
- @addressBook="getAddressBook('sender')" @conserveSelect="conserveSelect">
- </waybillForm>
- </div>
- <div class="waybill_item" style="margin-left: 10px;">
- <waybillForm ref="deliverer" title="配送人" :ruleForm="delivererForm" :deliverer="true"
- @addressBook="getDelivererBook('deliverer')"></waybillForm>
- </div>
- <div class="waybill_item" style="margin-left: 10px;">
- <waybillForm ref="recipients" title="收件人" :conserveFlag="conserveFlag" thinTitle="收件人簿"
- :ruleForm="recipientsForm" @addressBook="getAddressBook('recipients')" @conserveSelect="conserveSelectil">
- </waybillForm>
- </div>
- </div>
- <div style="margin-top: 20px;">
- <forms ref="childRules" :formNewList="formRuleList" :ruleForm="ruleForm" labelWidth="80px">
- </forms>
- </div>
- <el-dialog width="60%" title="地址簿" :visible.sync="innerVisible" append-to-body>
- <div class="space_between_in" style="margin-bottom: 15px;">
- <div style="display: flex;align-items: center;width: 100%;">
- <h3 style="margin-left: 10px;flex: none;">搜索:</h3>
- <el-input v-model="bookInput" style="width: 100%;" placeholder="请输入姓名、电话、地址快速查找"
- @input="fastSearch()"></el-input>
- </div>
- </div>
- <div class="card_book_list">
- <!-- 表单 -->
- <tables :suspension="true" :tableList="bookTableList" :tableData="bookTableData" @cellClick="cellClick"
- @buttonData="buttonData">
- </tables>
- <!-- 分页 -->
- <div v-if="bookTotal">
- <pagination :total="bookTotal" :currentPage="bookPagination.PageIndex" @changeSize="bookChangeSize"
- @changeCurrent="bookChangeCurrent">
- </pagination>
- </div>
- </div>
- </el-dialog>
- <span slot="footer" class="dialog-footer">
- <el-button plain @click="staffDialogVisible = false">取 消</el-button>
- <el-button type="primary" :loading="confirmLoading" @click="handleAdd">确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog title="派单" :visible.sync="sendDialogVisible" width="500px" :close-on-click-modal="false"
- @close="closeDialog">
- <forms ref="sendRules" :formNewList="sendRuleList" :ruleForm="sendRuleForm" labelWidth="80px"
- @handleScroll="handleScroll" @remoteMethod="remoteMethod">
- </forms>
- <span slot="footer" class="dialog-footer">
- <el-button plain @click="sendDialogVisible = false">取 消</el-button>
- <el-button type="primary" :loading="sendConfirmLoading" @click="sendHandleAdd">确 定</el-button>
- </span>
- </el-dialog>
- <el-dialog title="签收" :visible.sync="signDialogVisible" width="500px" :close-on-click-modal="false"
- @close="closeDialog1">
- <forms ref="signRules" :formNewList="signRuleList" :ruleForm="signRuleForm" labelWidth="80px">
- </forms>
- <span slot="footer" class="dialog-footer">
- <el-button plain @click="signDialogVisible = false">取 消</el-button>
- <el-button type="primary" :loading="signConfirmLoading" @click="signHandleAdd">确 定</el-button>
- </span>
- </el-dialog>
- <orderDetails ref="order" :waybillData="waybillData"></orderDetails>
- <el-dialog title="批量导入" :visible.sync="bulkImportVisible" width="600px" @close="closeDialog2">
- <div class="card_bulkImport">
- <el-upload ref="mYupload" class="upload-demo" accept=".xls,.xlsx" drag action="#" :limit="1" multiple
- :http-request="UploadImage">
- <i class="el-icon-upload"></i>
- <div class="el-upload__text">将文件拖到此处,或<em>点击上传</em></div>
- <div class="el-upload__tip" slot="tip">请上传xls或者xlsx格式文件</div>
- </el-upload>
- <div style="margin-top: 15px;">
- <el-button size="medium" type="primary" icon="el-icon-upload" :loading="importFlag"
- @click="immediateImport">立即导入</el-button>
- <el-button size="medium" icon="el-icon-download" :loading="downloadFlag"
- @click="templateDownload">模板下载</el-button>
- </div>
- </div>
- </el-dialog>
- </div>
- </template>
- <script>
- import {
- getWaybill,
- addWaybill,
- putWaybill,
- delWaybill,
- waybillDelivery,
- waybillImport,
- exportTemplate,
- getReceipt
- } from '@/api/waybill'
- import {
- getAddress,
- addAddress,
- putAddress,
- delAddress
- } from '@/api/address'
- import {
- getCoolerBox
- } from '@/api/incubator.js'
- import {
- getUser
- } from '@/api/user'
- import actionBar from '@/components/actionBar'
- import tables from '@/components/tables'
- import pagination from '@/components/pagination'
- import waybillForm from '@/components/waybillForm'
- import forms from '@/components/forms'
- import orderDetails from '@/components/orderDetails'
- import {
- formRules,
- employee,
- addressBook,
- sendList,
- signList,
- addressDeliverer
- } from "./waybill.js";
- import {
- WaybillStatus
- } from '@/assets/js/blockSort'
- import {
- regionData,
- CodeToText
- } from 'element-china-area-data'
- export default {
- name: 'WaybillManagement',
- components: {
- actionBar,
- tables,
- pagination,
- waybillForm,
- forms,
- orderDetails
- },
- data() {
- return {
- operateList: [{
- type: 'sends',
- title: '批量派单',
- colour: 'success'
- }, {
- type: 'import',
- title: '批量导入',
- colour: 'warning'
- }, {
- type: 'add',
- title: '添加运单',
- icon: 'el-icon-plus',
- }],
- formList: [{
- type: 'input',
- label: '运单号',
- field: 'waybillNo',
- placeholder: '请输入运单号',
- }, {
- type: 'select',
- label: '状态',
- field: 'status',
- placeholder: '请选择状态',
- options: WaybillStatus(),
- }, {
- type: 'picker',
- label: '下单时间',
- field: 'time',
- placeholder: '下单时间',
- }],
- searchRuleForm: {
- waybillNo: '',
- status: null,
- time: [],
- },
- Pagination: {
- PageIndex: 1,
- PageSize: 10,
- },
- Total: 0,
- bookPagination: {
- PageIndex: 1,
- PageSize: 10,
- },
- bookTotal: 0,
- tableData: [],
- operationType: '',
- tableList: employee(),
- confirmLoading: false,
- staffTitle: '添加',
- staffDialogVisible: false,
- senderForm: {
- name: '',
- phone: '',
- region: '',
- address: '',
- },
- recipientsForm: {
- name: '',
- phone: '',
- region: '',
- address: '',
- },
- delivererForm: {
- name: '',
- phone: '',
- },
- ruleForm: {
- tamperProofLabel: '',
- tamperProofLabelImg: '',
- remark: '',
- fileList: [],
- },
- formRuleList: [],
- bookType: '',
- sendDialogVisible: false,
- sendRuleList: sendList(),
- sendRuleForm: {
- coolerBoxId: null,
- },
- sendConfirmLoading: false,
- orderId: null,
- waybillIdList: [],
- waybillData: {},
- bulkImportVisible: false,
- importFlag: false,
- downloadFlag: false,
- importFile: null,
- page: 1,
- staffName: '',
- limitNo: true,
- sendOrdersId: 2,
- searchValue: {},
- signDialogVisible: false,
- signRuleList: signList(),
- signRuleForm: {
- status: '',
- rejectionReason: '',
- },
- signConfirmLoading: false,
- waybillNo: '',
- innerVisible: false,
- tabPosition: 'my',
- bookInput: '',
- bookTableList: [],
- bookTableData: [],
- bookTotal: 0,
- saveSenderAddress: true,
- saveConsigneeAddress: true,
- conserveFlag: true,
- }
- },
- mounted() {
- const dataList = formRules();
- this.formRuleList = dataList;
- this.getList()
- },
- methods: {
- // 搜索
- searchProtocol(value) {
- this.Pagination.PageIndex = 1
- this.searchValue = value
- if (value.time) {
- this.searchValue.orderStartTime = value.time[0]
- this.searchValue.orderEndTime = value.time[1]
- }
- this.getList()
- },
- // 获取订单列表
- getList() {
- var params = {
- page: this.Pagination.PageIndex,
- pageSize: this.Pagination.PageSize,
- ...this.searchValue
- }
- delete params.time
- getWaybill(params).then(res => {
- if (res.code == 200) {
- this.tableData = res.data.list
- this.Total = res.data.count
- }
- })
- },
- // 获取地址簿
- getAddressBook(type) {
- this.bookTableList = addressBook()
- this.bookType = type
- this.innerVisible = true
- this.getSenderSend()
- },
- // 获取寄/收列表
- getSenderSend() {
- let address = ''
- if (this.bookType == 'recipients') {
- address = 'consignee'
- } else {
- address = this.bookType
- }
- getAddress({
- page: this.bookPagination.PageIndex,
- pageSize: this.bookPagination.PageSize,
- name: this.bookInput,
- addressType: address,
- }).then(res => {
- if (res.code == 200) {
- this.bookTableData = res.data.list
- this.bookTotal = res.data.count
- }
- })
- },
- // 获取配送人
- getDelivererBook(type) {
- this.innerVisible = true
- this.bookType = type
- this.bookTableList = addressDeliverer()
- this.getDelivererList()
- },
- getDelivererList() {
- var params = {
- page: this.bookPagination.PageIndex,
- pageSize: this.bookPagination.PageSize,
- type: 3,
- name: this.bookInput,
- }
- getUser(params).then(res => {
- if (res.code == 200) {
- this.bookTableData = res.data.list
- this.bookTotal = res.data.count
- }
- })
- },
- // 选择是否保存
- conserveSelect(type) {
- if (type) {
- this.saveSenderAddress = true
- } else {
- this.saveSenderAddress = false
- }
- },
- conserveSelectil(type) {
- if (type) {
- this.saveConsigneeAddress = true
- } else {
- this.saveConsigneeAddress = false
- }
- },
- // 弹窗表单添加
- async handleAdd() {
- let senderFlag = this.$refs['sender'].validateForm();
- let recipientsFlag = this.$refs['recipients'].validateForm();
- let flag = this.$refs['deliverer'].validateForm();
- if (senderFlag && recipientsFlag && flag) {
- this.confirmLoading = true
- var params = {
- senderAddressName: this.senderForm.name,
- senderAddressPhone: this.senderForm.phone,
- senderAddressDetails: this.senderForm.address,
- consigneeAddressName: this.recipientsForm.name,
- consigneeAddressPhone: this.recipientsForm.phone,
- consigneeAddressDetails: this.recipientsForm.address,
- deliveryName: this.delivererForm.name,
- deliveryPhone: this.delivererForm.phone,
- saveSenderAddress: this.saveSenderAddress,
- saveConsigneeAddress: this.saveConsigneeAddress,
- ...this.ruleForm
- }
- if (this.ruleForm.fileList) {
- var fileImage = this.picture(this.ruleForm.fileList)
- params.tamperProofLabelImg = fileImage
- }
- if (this.operationType == 'add') {
- await addWaybill(params).then(res => {
- if (res.code == 200) {
- this.$message({
- message: '操作成功',
- type: 'success'
- });
- this.getList()
- }
- this.staffDialogVisible = false
- this.confirmLoading = false
- }).catch(() => {
- this.confirmLoading = false
- })
- } else if (this.operationType == 'edit') {
- params.id = this.orderId
- await putWaybill(params).then(res => {
- if (res.code == 200) {
- this.$message({
- message: '操作成功',
- type: 'success'
- });
- this.getList()
- }
- this.staffDialogVisible = false
- this.confirmLoading = false
- }).catch(() => {
- this.confirmLoading = false
- })
- }
- } else {
- this.$message.error('表单信息不完整,请继续填写完整');
- }
- // console.log(this.ruleForm,86)
- // console.log(this.senderForm, this.recipientsForm, 665)
- },
- picture(arr) {
- var imgList = JSON.parse(JSON.stringify(arr))
- var imgArr = []
- imgList.forEach((item, index) => {
- imgArr.push(item.url)
- })
- var imgString = imgArr.join()
- return imgString
- },
- // 添加寄件人
- getSender(value) {
- return new Promise((resolve, reject) => {
- var params = {
- addressType: 'sender',
- ...value
- }
- params.provinceId = value.regionCode[0]
- params.cityId = value.regionCode[1]
- params.regionId = value.regionCode[2]
- const regionArr = value.region.split('/')
- params.provinceName = regionArr[0]
- params.cityName = regionArr[1]
- params.regionName = regionArr[2]
- delete params.regionCode
- delete params.region
- addAddress(params).then(res => {
- if (res.code == 200) {
- const orderID = res.data
- resolve(orderID);
- }
- }).catch((error) => {
- reject(error)
- })
- });
- },
- // 添加收件人
- getRecipients(value) {
- return new Promise((resolve, reject) => {
- var params = {
- addressType: 'consignee',
- ...value
- }
- params.provinceId = value.regionCode[0]
- params.cityId = value.regionCode[1]
- params.regionId = value.regionCode[2]
- const regionArr = value.region.split('/')
- params.provinceName = regionArr[0]
- params.cityName = regionArr[1]
- params.regionName = regionArr[2]
- delete params.regionCode
- delete params.region
- addAddress(params).then(res => {
- if (res.code == 200) {
- const orderID = res.data
- resolve(orderID);
- }
- }).catch((error) => {
- reject(error)
- })
- });
- },
- // 选择table其中某一项
- cellClick(row) {
- this.innerVisible = false
- const param = {
- ...row
- }
- if (this.bookType == 'sender') {
- this.senderForm = param
- this.$nextTick(() => {
- this.$refs.sender.radio = ''
- // this.$refs['sender'].clickitem('1')
- this.$refs['sender'].validateForm();
- })
- } else if (this.bookType == 'recipients') {
- this.recipientsForm = param
- this.$nextTick(() => {
- this.$refs.recipients.radio = ''
- // this.$refs['recipients'].clickitem('1')
- this.$refs['recipients'].validateForm();
- })
- } else if (this.bookType == 'deliverer') {
- this.delivererForm.name = param.nickName
- this.delivererForm.phone = param.phone
- this.$nextTick(() => {
- this.$refs['deliverer'].validateForm();
- })
- }
- },
- buttonData(row, type) {
- this.operationType = type
- this.orderId = row.id
- if (type == 'logs') {
- this.$refs.order.staffDialogVisible = true
- this.waybillData = row
- this.waybillData.coolerBoxName = row.coolerBox.name
- } else if (type == 'edit') {
- this.conserveFlag = false
- this.staffTitle = '编辑'
- this.staffDialogVisible = true
- setTimeout(() => {
- this.$nextTick(() => {
- this.senderForm.name = row.senderAddressName
- this.senderForm.phone = row.senderAddressPhone
- this.senderForm.address = row.senderAddressDetails
- this.recipientsForm.name = row.consigneeAddressName
- this.recipientsForm.phone = row.consigneeAddressPhone
- this.recipientsForm.address = row.consigneeAddressDetails
- this.delivererForm.name = row.deliveryName
- this.delivererForm.phone = row.deliveryPhone
- this.ruleForm.tamperProofLabel = row.tamperProofLabel
- if (row.tamperProofLabelImg) {
- var arr = row.tamperProofLabelImg.split(',')
- var arr3 = []
- arr.forEach((item, index) => {
- var arr1 = {
- url: '',
- }
- arr1.url = item
- arr3.push(arr1)
- })
- this.ruleForm.fileList = arr3
- this.ruleForm.tamperProofLabelImg = row.tamperProofLabelImg
- }
- this.ruleForm.remark = row.remark
- })
- })
- } else if (type == 'send') {
- this.sendDialogVisible = true
- this.getUserList(2)
- } else if (type == 'del') {
- this.deleteUser(row.id)
- } else if (type == 'sign') {
- this.signDialogVisible = true
- this.waybillNo = row.waybillNo
- this.signRuleForm.status = row.status
- }
- },
- // 订单派单
- sendHandleAdd() {
- let flag = this.$refs['sendRules'].validateForm();
- if (flag) {
- this.sendConfirmLoading = true
- let arrID = []
- if (this.operationType == 'send') {
- arrID.push(this.orderId)
- } else if (this.operationType == 'sends') {
- arrID = this.waybillIdList
- }
- const param = {
- waybillIds: arrID,
- coolerBoxId: Number(this.sendRuleForm.coolerBoxId),
- }
- waybillDelivery(param).then(res => {
- if (res.code == 200) {
- this.$message({
- message: res.msg,
- type: 'success'
- });
- this.getList()
- }
- this.sendDialogVisible = false
- this.sendConfirmLoading = false
- }).catch(() => {
- this.sendConfirmLoading = false
- })
- } else {
- this.$message.error('表单信息不完整,请继续填写完整');
- }
- },
- // 签收
- signHandleAdd() {
- let flag = this.$refs['signRules'].validateForm();
- if (flag) {
- this.signConfirmLoading = true
- let params = {
- waybillNo: this.waybillNo,
- ...this.signRuleForm,
- }
- getReceipt(params).then(res => {
- if (res.code == 200) {
- this.$message({
- message: res.msg,
- type: 'success'
- });
- this.signDialogVisible = false
- }
- this.signConfirmLoading = false
- })
- } else {
- this.$message.error('表单信息不完整,请继续填写完整');
- }
- },
- // 删除用户
- deleteUser(id) {
- this.$confirm('此操作将永久该运单, 是否继续?', '提示', {
- confirmButtonText: '确定',
- cancelButtonText: '取消',
- type: 'warning'
- }).then(() => {
- delWaybill({
- id: id,
- }).then(res => {
- if (res.code == 200) {
- this.$message({
- message: '操作成功',
- type: 'success'
- });
- this.getList()
- }
- })
- }).catch(() => {});
- },
- // 重置选择员工
- resetSelect() {
- this.sendRuleList.forEach(item => {
- if (item.type == 'searchSelect') {
- item.options = []
- }
- })
- this.page = 1
- this.limitNo = true
- this.staffName = ''
- },
- // 触底事件
- handleScroll() {
- if (this.limitNo) {
- this.getUserList()
- }
- },
- // 搜索
- remoteMethod(value) {
- this.resetSelect()
- this.staffName = value
- this.getUserList(this.sendOrdersId)
- },
- // 获取保温箱列表
- getUserList(type) {
- let arrList = []
- let params = {
- page: this.page,
- pageSize: 10,
- name: this.staffName,
- }
- getCoolerBox(params).then(res => {
- if (res.code == 200) {
- let arr = res.data.list
- let arrList = []
- arr.forEach(item1 => {
- var arrData = {
- label: null,
- value: null,
- }
- arrData.label = item1.name
- arrData.value = item1.id
- arrList.push(arrData)
- })
- if (this.limitNo == true) {
- this.sendRuleList.forEach(item => {
- if (item.type == 'searchSelect') {
- item.options = item.options.concat(arrList);
- let some = [];
- item.options.forEach(el => {
- if (!some.some(e => e.value == el.value)) {
- some.push(el)
- }
- })
- item.options = some
- }
- })
- }
- if (arrList.length >= 10) {
- this.page = ++this.page;
- } else {
- // 已经没数据了 不需要增加数据
- this.limitNo = false;
- }
- }
- })
- },
- // 选项赋值
- optionMatching(value, field) {
- this.sendRuleList.forEach((item, index) => {
- if (item.field == field) {
- item.options = value
- }
- })
- },
- openModel(type) {
- this.operationType = type
- if (type == 'add') {
- this.conserveFlag = true
- this.staffTitle = '添加运单'
- this.staffDialogVisible = true
- this.$nextTick(() => {
- this.$refs.sender.radio = '1'
- this.$refs.recipients.radio = '1'
- })
- } else if (type == 'sends') {
- const arrID = this.$refs.refWaybill.waybillIds
- if (arrID.length != 0) {
- let arr2 = []
- arrID.forEach(item => {
- if (item.status == 1 || item.status == 2) {
- arr2.push(item.id)
- }
- })
- this.waybillIdList = arr2
- if (arr2.length > 0) {
- this.sendDialogVisible = true
- this.getUserList(2)
- } else {
- this.$message({
- message: '请选择未派单的运单',
- type: 'warning'
- });
- }
- } else {
- this.$message({
- message: '请先选择需要批量操作的运单',
- type: 'warning'
- });
- }
- // console.log(type, arrID, '批量派单')
- } else if (type == 'import') {
- this.bulkImportVisible = true
- } else if (type == 'print') {
- const arrID = this.$refs.refWaybill.waybillIds
- if (arrID.length != 0) {
- let arr3 = []
- let arr4 = []
- arrID.forEach(item => {
- if (item.status == 8) {
- arr3.push(item)
- arr4.push(item.id)
- }
- })
- if (arr3.length > 0) {} else {
- this.$message({
- message: '请选择已签收的运单',
- type: 'warning'
- });
- }
- } else {
- this.$message({
- message: '请先选择需要批量操作的运单',
- type: 'warning'
- });
- }
- }
- },
- // 导入
- immediateImport() {
- if (this.importFile) {
- this.importFlag = true
- let formData = new FormData();
- formData.append('file', this.importFile);
- waybillImport(formData).then(res => {
- if (res.code == 200) {
- this.bulkImportVisible = false
- this.importFlag = false
- this.getList()
- this.$message({
- message: '恭喜你,导入成功',
- type: 'success'
- });
- }
- })
- } else {
- this.$message({
- message: '请先选择上传文件',
- type: 'warning'
- });
- }
- },
- // 导出模板
- templateDownload() {
- this.downloadFlag = true
- exportTemplate().then(response => {
- if (response.fileName) {
- this.blobDownload(response.data, response.fileName)
- }
- this.downloadFlag = false
- })
- },
- // 上传文件
- UploadImage(param) {
- this.importFile = param.file
- },
- // 导出文件流
- blobDownload(data, name) {
- let m = this;
- var content = data;
- var data = new Blob([content], {
- type: "application/vnd.ms-excel;charset=utf-8"
- });
- var downloadUrl = window.URL.createObjectURL(data);
- var anchor = document.createElement("a");
- anchor.href = downloadUrl;
- anchor.download = decodeURIComponent(name);
- anchor.click();
- window.URL.revokeObjectURL(data);
- },
- changeSize(val) {
- this.Pagination.PageSize = val
- this.getList()
- },
- changeCurrent(val) {
- this.Pagination.PageIndex = val
- this.getList()
- },
- // 地址簿
- bookChangeSize(val) {
- this.bookPagination.PageSize = val
- if (this.bookType == 'deliverer') {
- this.getDelivererList()
- } else {
- this.getSenderSend()
- }
- },
- bookChangeCurrent(val) {
- this.bookPagination.PageIndex = val
- if (this.bookType == 'deliverer') {
- this.getDelivererList()
- } else {
- this.getSenderSend()
- }
- },
- // 快速搜索
- fastSearch() {
- this.bookPagination.PageIndex = 1
- if (this.bookType == 'deliverer') {
- this.getDelivererList()
- }
- },
- // 清空表单
- closeDialog() {
- this.$refs.sendRules.resetCheck();
- },
- // 清空表单
- closeDialog1() {
- this.$refs.signRules.resetCheck();
- },
- // 清空表单
- closeDialog2() {
- this.$refs.mYupload.clearFiles();
- },
- // 关闭清空表单
- closePopup() {
- this.ruleForm.fileList = []
- this.$refs.sender.resetForm()
- this.$refs.recipients.resetForm()
- this.$refs.deliverer.resetForm()
- this.$refs.childRules.resetCheck()
- }
- }
- }
- </script>
- <style lang="scss" scoped>
- .waybill_home ::v-deep .el-dialog__body {
- padding: 0px 20px 30px 20px;
- }
- .waybil_form ::v-deep .el-cascader {
- width: 100% !important;
- }
- .card_waybill {
- display: flex;
- border-bottom: 1px solid #E4E7ED;
- }
- .waybill_item {
- width: 50%;
- }
- .card_book_list {
- border: 1px solid #DCDFE6;
- }
- .card_bulkImport {
- width: 100%;
- }
- ::v-deep .el-upload {
- width: 100%;
- }
- ::v-deep .el-upload-dragger {
- width: 100%;
- }
- .card_customer {
- display: flex;
- align-items: center;
- margin-bottom: 15px;
- span {
- flex: none;
- font-size: 15px;
- margin-right: 8px;
- }
- }
- </style>
|