jwg 7 months ago
commit 9a8000a035

@ -27,10 +27,11 @@ export function deleteVendorReceipt(id) {
} }
// 获得对公收款 // 获得对公收款
export function getVendorReceipt(id) { export function getVendorReceipt(query) {
return request({ return request({
url: '/bs/vendor-receipt/get?id=' + id, url: '/bs/vendor-receipt/get',
method: 'get' method: 'get',
params: query
}) })
} }

@ -7,44 +7,107 @@
<div class="bt">{{}}</div> <div class="bt">{{}}</div>
</div> --> </div> -->
<div class="box-cr"> <div class="box-cr">
<div class="cr-bt" style="margin-top: 0.6rem;"> <div class="cr-bt" style="margin-top: 0.6rem">
<div class="tags" :style="`border: 1px solid ${handleFilterStatus(DICT_TYPE.BS_EXPENSE_APPLY_STATUS,itemData.status).color};color:${handleFilterStatus(DICT_TYPE.BS_EXPENSE_APPLY_STATUS,itemData.status).color}`"> {{handleFilterStatus(DICT_TYPE.BS_EXPENSE_APPLY_STATUS,itemData.status).label}}</div> <div
class="tags"
:style="`border: 1px solid ${
handleFilterStatus(
DICT_TYPE.BS_EXPENSE_APPLY_STATUS,
itemData.status
).color
};color:${
handleFilterStatus(
DICT_TYPE.BS_EXPENSE_APPLY_STATUS,
itemData.status
).color
}`"
>
{{
handleFilterStatus(
DICT_TYPE.BS_EXPENSE_APPLY_STATUS,
itemData.status
).label
}}
</div>
</div> </div>
<div class="ct-md"> <div class="ct-md">
<div class="mt5" style="color:#333"> <div class="mt5" style="color: #333">
收款编号 {{itemData.vendorReceiptNo}} 收款编号 {{ itemData.vendorReceiptNo }}
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
申请人{{itemData.createName}} 申请人{{ itemData.createName }}
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
申请部门{{itemData.deptName}} 申请部门{{ itemData.deptName }}
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
项目名称{{itemData.projectName}} 项目名称{{ itemData.projectName }}
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
项目负责人{{itemData.projectManager}} 项目负责人{{ itemData.projectManager }}
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
账户类型{{getDictDataLabel(DICT_TYPE.BS_BANK_TYPE,itemData.accountType) || ''}} 账户类型{{
getDictDataLabel(
DICT_TYPE.BS_BANK_TYPE,
itemData.accountType
) || ''
}}
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
收款金额{{itemData.amount}} 收款金额{{ itemData.amount }}
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
审批节点 审批节点
<span v-for="(items,index) in itemData.taskNames" :key="index">{{ items }} </span> <span v-for="(items, index) in itemData.taskNames" :key="index"
>{{ items }}
</span>
</div> </div>
<div style="margin-top: 0.3rem;color:#333 "> <div style="margin-top: 0.3rem; color: #333">
创建时间{{ dayjs(itemData.createTime).format('YYYY/MM/DD')}} 创建时间{{ dayjs(itemData.createTime).format('YYYY/MM/DD') }}
</div> </div>
</div> </div>
</div> </div>
<!-- 操作按钮 查看 编辑 删除 -->
<div class="box-rt"> <div class="box-rt">
<van-icon class="icon-box" v-hasPermi="['bs:vendor-receipt:query']" @click="handleShow(itemData.id)" name="eye-o" color="#05A9FF" size="25" /> <van-icon
<van-icon class="icon-box" v-hasPermi="['bs:vendor-receipt:update']" @click="handleEdit(itemData.id, itemData.status, itemData.creator)" name="edit" :color="!(itemData.status==0 || (itemData.status==3 && userInfo.id ==itemData.creator)) ?'#ccc':''" size="25" /> class="icon-box"
<van-icon class="icon-box" v-hasPermi="['bs:vendor-receipt:delete']" @click="handleDel(itemData.id, itemData.status, itemData.creator)" name="delete-o" :color="!(itemData.status==0 || (itemData.status==3 && userInfo.id ==itemData.creator)) ?'#ccc':'#EC3359'" size="25" /> v-hasPermi="['bs:vendor-receipt:query']"
@click="handleShow(itemData.id)"
name="eye-o"
color="#05A9FF"
size="25"
/>
<van-icon
class="icon-box"
v-hasPermi="['bs:vendor-receipt:update']"
@click="handleEdit(itemData.id, itemData.status, itemData.creator)"
name="edit"
:color="
!(
itemData.status == 0 ||
(itemData.status == 3 && userInfo.id == itemData.creator)
)
? '#ccc'
: ''
"
size="25"
/>
<van-icon
class="icon-box"
v-hasPermi="['bs:vendor-receipt:delete']"
@click="handleDel(itemData.id, itemData.status, itemData.creator)"
name="delete-o"
:color="
!(
itemData.status == 0 ||
(itemData.status == 3 && userInfo.id == itemData.creator)
)
? '#ccc'
: '#EC3359'
"
size="25"
/>
<!-- <van-icon class="icon-box" v-hasPermi="['bs:supplier-contract:delete']" @click="handleMerge(itemData.id, itemData.status, itemData.creator)" name="envelop-o" :color="!(itemData.status==0 || (itemData.status==3 && userInfo.id ==itemData.creator)) ?'#05A9FF':'#ccc'" :size="25" /> --> <!-- <van-icon class="icon-box" v-hasPermi="['bs:supplier-contract:delete']" @click="handleMerge(itemData.id, itemData.status, itemData.creator)" name="envelop-o" :color="!(itemData.status==0 || (itemData.status==3 && userInfo.id ==itemData.creator)) ?'#05A9FF':'#ccc'" :size="25" /> -->
</div> </div>
</div> </div>
@ -53,34 +116,30 @@
</template> </template>
<script> <script>
import { getDictDataLabel, handleFilterStatus } from "@/utils/dict"; import { getDictDataLabel, handleFilterStatus } from '@/utils/dict'
import { deleteVendorReceipt } from "@/api/bs/vendorReceipt" import { deleteVendorReceipt } from '@/api/bs/vendorReceipt'
import dayjs from 'dayjs' import dayjs from 'dayjs'
import { Dialog } from 'vant' import { Dialog } from 'vant'
export default { export default {
props: { props: {
itemData: { itemData: {
required: true, required: true,
default: () => { } default: () => {},
}, },
isApproval: Boolean,
},
components: {
}, },
components: {},
data() { data() {
return { return {
jumoStudentId: null jumoStudentId: null,
} }
}, },
activated() { /* activated() {
if (this.jumoStudentId) { if (this.jumoStudentId) {
this.handleUpdataInfo() this.handleUpdataInfo()
} }
}, }, */
mounted() { mounted() {},
},
computed: { computed: {
userInfo() { userInfo() {
return JSON.parse(window.localStorage.getItem('userInfo') || { dept: {} }) return JSON.parse(window.localStorage.getItem('userInfo') || { dept: {} })
@ -92,29 +151,29 @@ export default {
return return
} }
}, },
handleEdit(id, status,creator) { handleEdit(id, status, creator) {
if (!(status==0 || (status ==3 && this.userInfo.id ==creator))) { console.log(id, status, creator, 'id, status,creator')
if (!(status == 0 || (status == 3 && this.userInfo.id == creator))) {
return return
} }
this.jumoStudentId = id this.jumoStudentId = id
this.$router.push({ this.$router.push({
path: '/receipts', path: '/receipts',
query: { id, type: 'edit' } query: { id, type: 'edit' },
}) })
}, },
handleDel(id, status,creator) { handleDel(id, status, creator) {
if (!(status==0 || (status ==3 && this.userInfo.id ==creator))) { if (!(status == 0 || (status == 3 && this.userInfo.id == creator))) {
return return
} }
Dialog.confirm({ Dialog.confirm({
title: '提示', title: '提示',
message: '你确定要删除吗?', message: '你确定要删除吗?',
}) }).then(() => {
.then(() => { deleteVendorReceipt(id).then(() => {
deleteVendorReceipt(id).then(() => { this.$emit('onAllRefresh')
this.$emit('onAllRefresh')
})
}) })
})
}, },
handleFilterStatus, handleFilterStatus,
getDictDataLabel, getDictDataLabel,
@ -122,15 +181,15 @@ export default {
this.jumoStudentId = id this.jumoStudentId = id
this.$router.push({ this.$router.push({
path: '/receipts', path: '/receipts',
query: { id, type: 'show' } query: { id, type: 'show', isApproval: this.isApproval },
}) })
}, },
dayjs, dayjs,
handleUpdataInfo() { /* handleUpdataInfo() {
this.jumoStudentId = null this.jumoStudentId = null
this.$emit('onUpdataInfo', this.itemData.id) this.$emit('onUpdataInfo', this.itemData.id)
}, }, */
} },
} }
</script> </script>

@ -1,4 +1,5 @@
<template> <template>
<!-- 同行人弹窗 -->
<van-popup <van-popup
v-model="isShow" v-model="isShow"
position="bottom" position="bottom"
@ -98,6 +99,7 @@
<script> <script>
import { listUser } from '@/api/system/user' import { listUser } from '@/api/system/user'
import { getDept } from '@/api/system/dept'
export default { export default {
props: { props: {
isOpen: Boolean, isOpen: Boolean,
@ -124,11 +126,12 @@ export default {
userTable: [], userTable: [],
isShow: false, isShow: false,
form: { form: {
//
tripPartners: [ tripPartners: [
{ {
dept: null, dept: null, //id
userId: [], userId: [], //id
userList: [], userList: [], //
}, },
], ],
}, },
@ -204,7 +207,9 @@ export default {
}) })
}) })
}, },
//
handleConfirm() { handleConfirm() {
console.log('handleConfirm')
this.$nextTick(() => { this.$nextTick(() => {
if (this.type == 1) { if (this.type == 1) {
this.$refs.form this.$refs.form
@ -220,7 +225,7 @@ export default {
// arr = arr.concat(this.tripPartners) // arr = arr.concat(this.tripPartners)
// } // }
let newArr = arr.concat(this.allTripPartners) let newArr = arr.concat(this.allTripPartners)
let repeatId = this.getisRepeat(newArr) let repeatId = this.getisRepeat(newArr) //
if (repeatId) { if (repeatId) {
const { nickname } = const { nickname } =
this.userList.find((item) => item.id == repeatId) || {} this.userList.find((item) => item.id == repeatId) || {}
@ -243,6 +248,7 @@ export default {
handleDept(val, index) { handleDept(val, index) {
if (val) { if (val) {
this.getList(val).then((res) => { this.getList(val).then((res) => {
console.log(res, 257)
this.$set(this.form.tripPartners[index], 'userList', res || []) this.$set(this.form.tripPartners[index], 'userList', res || [])
}) })
} else { } else {

@ -1,14 +1,34 @@
<!-- 上传附件 --> <!-- 上传附件 -->
<template> <template>
<div class="upload-box"> <div class="upload-box">
<div :class="`header-box ${['PayConfirmToast'].includes(typeStr) && 'mrNone'}`"> <div
<div class="header-item-box" v-for="(item,index) in list" :key="index" @click.stop="handleToShow(item)"> :class="`header-box ${['PayConfirmToast'].includes(typeStr) && 'mrNone'}`"
{{item.name }} >
<van-icon name="cross" size="10" @click.stop="handleDel(index)" v-if="['edit','add','PayConfirmToast'].includes(typeStr)" /> <div
class="header-item-box"
v-for="(item, index) in list"
:key="index"
@click.stop="handleToShow(item)"
>
{{ item.name }}
<van-icon
name="cross"
size="10"
@click.stop="handleDel(index)"
v-if="['edit', 'add', 'PayConfirmToast'].includes(typeStr)"
/>
</div> </div>
</div> </div>
<van-uploader accept="*" multiple :before-read="beforeRead" :after-read="handleAfterRead" v-if="['edit','add','PayConfirmToast'].includes(typeStr)"> <van-uploader
<van-button icon="plus" size="small" round type="info">上传文件</van-button> accept="*"
multiple
:before-read="beforeRead"
:after-read="handleAfterRead"
v-if="['edit', 'add', 'PayConfirmToast'].includes(typeStr)"
>
<van-button icon="plus" size="small" round type="info"
>上传文件</van-button
>
</van-uploader> </van-uploader>
</div> </div>
</template> </template>
@ -28,16 +48,16 @@ export default {
this.list = list this.list = list
}, },
deep: true, deep: true,
immediate: true immediate: true,
}, },
isOpen: { /* isOpen: {
handler(val) { handler(val) {
if (val) { if (val) {
} }
}, },
deep: true deep: true
} } */
}, },
data() { data() {
return { return {
@ -50,39 +70,47 @@ export default {
computed: {}, computed: {},
methods: { methods: {
beforeRead(file) { beforeRead(file) {
const supportedFormats = ['pdf', 'doc', 'docx', 'xls', 'xlsx', 'jpg', 'png', 'jpeg']; const supportedFormats = [
'pdf',
'doc',
'docx',
'xls',
'xlsx',
'jpg',
'png',
'jpeg',
]
// //
console.log('file....', file); console.log('file....', file)
if (Array.isArray(file)) { if (Array.isArray(file)) {
for (let index = 0; file < file.length; index++) { for (let index = 0; file < file.length; index++) {
const element = file[index]; const element = file[index]
const fileExtension = element.name.split('.').pop().toLowerCase(); const fileExtension = element.name.split('.').pop().toLowerCase()
// //
if (!supportedFormats.includes(fileExtension)) { if (!supportedFormats.includes(fileExtension)) {
this.$fm('只允许上传PDF、Word、Excel、JPG、PNG和JPEG格式的文件!') this.$fm('只允许上传PDF、Word、Excel、JPG、PNG和JPEG格式的文件!')
return false; return false
} }
} }
} else { } else {
const fileExtension = file.name.split('.').pop().toLowerCase(); const fileExtension = file.name.split('.').pop().toLowerCase()
// //
if (!supportedFormats.includes(fileExtension)) { if (!supportedFormats.includes(fileExtension)) {
this.$fm('只允许上传PDF、Word、Excel、JPG、PNG和JPEG格式的文件!') this.$fm('只允许上传PDF、Word、Excel、JPG、PNG和JPEG格式的文件!')
return false; return false
} }
} }
return true; return true
}, },
handleToShow(item) { handleToShow(item) {
this.$emit('onShow') this.$emit('onShow')
this.$router.push({ this.$router.push({
path: '/fileShow', path: '/fileShow',
query: { query: {
url: item.url url: item.url,
} },
}) })
}, },
handleDel(index) { handleDel(index) {
@ -92,40 +120,43 @@ export default {
uploadFile(params) { uploadFile(params) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let FormDatas = new FormData() let FormDatas = new FormData()
FormDatas.append('file', params.file); FormDatas.append('file', params.file)
FormDatas.append('path', params.file.name); FormDatas.append('path', params.file.name)
uploadFileApi(FormDatas).then((res) => { uploadFileApi(FormDatas)
resolve({ .then((res) => {
name: params.file.name, resolve({
url: res.data name: params.file.name,
}); url: res.data.url,
}).catch((err) => { })
reject(err) })
}) .catch((err) => {
}); reject(err)
})
})
}, },
uploadFiles(fileList) { uploadFiles(fileList) {
let promises = fileList.map((item) => this.uploadFile(item)); let promises = fileList.map((item) => this.uploadFile(item))
return Promise.all(promises); return Promise.all(promises)
}, },
handleAfterRead(list) { handleAfterRead(list) {
let newList = Array.isArray(list) ? list : [list] let newList = Array.isArray(list) ? list : [list]
this.$loading(true, 'file') this.$loading(true, 'file')
this.uploadFiles(newList).then((res) => { this.uploadFiles(newList)
(res || []).map(item => { .then((res) => {
this.list.push(item) ;(res || []).map((item) => {
this.list.push(item)
})
this.$loading(false, 'file')
this.$emit('onConfirm', this.list)
})
.catch(() => {
this.$loading(false, 'file')
this.$fm('文件上传失败!')
}) })
this.$loading(false, 'file')
this.$emit('onConfirm', this.list)
}).catch(() => {
this.$loading(false, 'file')
this.$fm('文件上传失败!')
})
// console.log('list...', list); // console.log('list...', list);
} },
} },
} }
</script> </script>
<style lang='scss' scoped> <style lang='scss' scoped>
.upload-box { .upload-box {

@ -2,16 +2,47 @@
<template> <template>
<div class="upload-box"> <div class="upload-box">
<div class="box-lf"> <div class="box-lf">
<van-uploader accept="*" :disabled="isChecked" v-model="localFileList" @click-preview="handleClickUpload" :before-read="handleFileBeforeRead" :before-delete="handleBeforeDel" :max-count="1" :after-read="handleAfterRead"> <van-uploader
<template #preview-cover="{ file }" v-if="checkFileType(localFileList)"> accept="*"
<div class="preview-cover">{{handleFilter(localFileList)}}</div> :disabled="isChecked"
v-model="localFileList"
@click-preview="handleClickUpload"
:before-read="handleFileBeforeRead"
:before-delete="handleBeforeDel"
:max-count="1"
:after-read="handleAfterRead"
>
<template #preview-cover="{ file }">
<div class="preview-cover">{{ localFileList[0].name }}</div>
</template> </template>
</van-uploader> </van-uploader>
<div class="up-tt">支持pngpdfjpg格式上传</div> <div class="up-tt">支持pngpdfjpg格式上传</div>
</div> </div>
<div class="box-rt"> <div class="box-rt">
<van-button type="info" icon="scan" :disabled="isChecked || disabled" @click="handleScan" native-type="button" class="btn-box" round size="small">发票识别</van-button> <van-button
<van-button v-if="type == '01'" type="info" icon="label-o" :disabled="isChecked || disabled" @click="handleCheck" native-type="button" class="btn-box" round size="small"> {{isChecked ? '' : ''}}</van-button> type="info"
icon="scan"
:disabled="isChecked || disabled"
@click="handleScan"
native-type="button"
class="btn-box"
round
size="small"
>发票识别</van-button
>
<van-button
v-if="type == '01'"
type="info"
icon="label-o"
:disabled="isChecked || disabled"
@click="handleCheck"
native-type="button"
class="btn-box"
round
size="small"
>
{{ isChecked ? '已验真' : '验真' }}</van-button
>
</div> </div>
</div> </div>
</template> </template>
@ -44,7 +75,7 @@ import {
getInvoice05, getInvoice05,
invoiceScanApi05, invoiceScanApi05,
invoiceCheckApi05, invoiceCheckApi05,
} from "@/api/bs/invoice"; } from '@/api/bs/invoice'
export default { export default {
name: '', name: '',
props: { props: {
@ -54,22 +85,22 @@ export default {
// isChecked: Boolean, // isChecked: Boolean,
disabled: Boolean, disabled: Boolean,
scanRes: Object, scanRes: Object,
type: String type: String,
}, },
watch: { watch: {
fileList: { fileList: {
handler(list) { handler(list) {
this.localFileList = list //使list
// this.localFileList = list // this.localFileList = list
this.localFileList = list
// if (Array.isArray(this.localFileList) && this.localFileList.length) { // if (Array.isArray(this.localFileList) && this.localFileList.length) {
// let url = localFileList[0].url // let url = localFileList[0].url
// if () // if ()
// console.log('localFileList...', this.localFileList); // console.log('localFileList...', this.localFileList);
// } // }
this.uploadList = list // this.uploadList = list
}, },
deep: true, deep: true,
immediate: true immediate: true,
}, },
}, },
data() { data() {
@ -78,7 +109,7 @@ export default {
imgTypeArr: ['image/jpeg', 'image/jpg', 'image/png', 'application/pdf'], imgTypeArr: ['image/jpeg', 'image/jpg', 'image/png', 'application/pdf'],
localFileList: [], // localFileList: [], //
uploadList: [], // uploadList: [], //
isChecked: false isChecked: false,
} }
}, },
@ -86,26 +117,27 @@ export default {
computed: {}, computed: {},
methods: { methods: {
handleFilter(file) { /* handleFilter(file) {
let str = '' let str = ''
if (file.length) { if (file.length) {
let url = file[0].url let url = file[0].url
str = url.split('/baoxiao/')[1] str = url.split('/baoxiao/')[1]
} }
return str return str
}, }, */
checkFileType(file) { // pdf
/* checkFileType(file) {
console.log(file, '.file132')
let flag = false let flag = false
if (file.length) { if (file.length) {
let url = file[0].url let name = file[0].file.name
if (url.indexOf('pdf') > -1) { if (name.indexOf('pdf') > -1) {
flag = true flag = true
} }
} }
return flag return flag
}, }, */
handleClickUpload(file) { handleClickUpload(file) {
const { url } = file const { url } = file
if (url) { if (url) {
@ -113,8 +145,8 @@ export default {
this.$router.push({ this.$router.push({
path: '/fileShow', path: '/fileShow',
query: { query: {
url: url url: url,
} },
}) })
} }
} }
@ -127,35 +159,45 @@ export default {
return true return true
}, },
beginCheck() { beginCheck() {
console.log('我进来验证了')
this.$loading(true) this.$loading(true)
let form = {} let form = {}
const invoiceCheckApi = this.type == '01' ? invoiceCheckApi01 : this.type == '02' ? invoiceCheckApi02 : this.type == '03' ? invoiceCheckApi03 : this.type == '04' ? invoiceCheckApi04 : invoiceCheckApi05; const invoiceCheckApi =
invoiceCheckApi(this.scanRes).then((res) => { this.type == '01'
// if (res.data) { ? invoiceCheckApi01
// form.checkCode = 2 : this.type == '02'
// form.isChecked = true ? invoiceCheckApi02
// this.$sm(`${res.msg}`) : this.type == '03'
// form.status = 1 ? invoiceCheckApi03
// } else { : this.type == '04'
// form.status = 0 ? invoiceCheckApi04
// form.checkCode = 1 : invoiceCheckApi05
// form.isChecked = false invoiceCheckApi(this.scanRes)
// this.$fm(`${res.msg}`) .then((res) => {
// } // if (res.data) {
if (res.data == 2 || res.data == 3) { // form.checkCode = 2
this.isChecked = true // form.isChecked = true
} // this.$sm(`${res.msg}`)
this.$emit('endCheck', res.data) // form.status = 1
this.$loading(false) // } else {
}).catch(() => { // form.status = 0
this.isChecked = false // form.checkCode = 1
// this.form.status = 0 // form.isChecked = false
// form.status = 0 // this.$fm(`${res.msg}`)
// form.checkCode = 0 // }
this.$emit('endCheck', 0) if (res.data == 2 || res.data == 3) {
this.$loading(false) this.isChecked = true
}) }
this.$emit('endCheck', res.data)
this.$loading(false)
})
.catch(() => {
this.isChecked = false
// this.form.status = 0
// form.status = 0
// form.checkCode = 0
this.$emit('endCheck', 0)
this.$loading(false)
})
}, },
handleCheck() { handleCheck() {
if (!this.uploadList.length) { if (!this.uploadList.length) {
@ -172,14 +214,25 @@ export default {
const { url } = this.uploadList[0] const { url } = this.uploadList[0]
// let url = 'https://p8.itc.cn/q_70/images03/20210420/b5e2b7a15457406bb48135828b8fea03.jpeg' // let url = 'https://p8.itc.cn/q_70/images03/20210420/b5e2b7a15457406bb48135828b8fea03.jpeg'
this.$loading(true) this.$loading(true)
const invoiceScanApi = this.type == '01' ? invoiceScanApi01 : this.type == '02' ? invoiceScanApi02 : this.type == '03' ? invoiceScanApi03 : this.type == '04' ? invoiceScanApi04 : invoiceScanApi05; const invoiceScanApi =
invoiceScanApi({ url, type: this.type }).then((res) => { this.type == '01'
// this.scanRes = res.data ? invoiceScanApi01
this.$emit('scanRes', res) : this.type == '02'
this.$loading(false) ? invoiceScanApi02
}).catch(() => { : this.type == '03'
this.$loading(false) ? invoiceScanApi03
}) : this.type == '04'
? invoiceScanApi04
: invoiceScanApi05
invoiceScanApi({ url, type: this.type })
.then((res) => {
// this.scanRes = res.data
this.$emit('scanRes', res)
this.$loading(false)
})
.catch(() => {
this.$loading(false)
})
} }
}, },
handleBeforeDel() { handleBeforeDel() {
@ -190,44 +243,57 @@ export default {
this.localFileList = [] this.localFileList = []
this.$emit('onConfirm', this.uploadList) this.$emit('onConfirm', this.uploadList)
}, },
//
uploadFile(params) { uploadFile(params) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let FormDatas = new FormData() let FormDatas = new FormData()
FormDatas.append('file', params.file); FormDatas.append('file', params.file)
FormDatas.append('path', params.file.name); FormDatas.append('path', params.file.name)
uploadFileApi(FormDatas).then((res) => { //
resolve({ uploadFileApi(FormDatas)
name: params.file.name, .then((res) => {
url: res.data // res
}); resolve({
}).catch((err) => { name: params.file.name,
reject(err) url: res.data,
}) })
}); })
.catch((err) => {
reject(err)
})
})
}, },
uploadFiles(fileList) { uploadFiles(fileList) {
let promises = fileList.map((item) => this.uploadFile(item)); let promises = fileList.map((item) => this.uploadFile(item))
return Promise.all(promises); return Promise.all(promises)
}, },
//
handleAfterRead(list) { handleAfterRead(list) {
let newList = Array.isArray(list) ? list : [list] let newList = Array.isArray(list) ? list : [list]
this.$loading(true, 'file') this.$loading(true, 'file')
this.uploadFiles(newList).then((res) => { //
(res || []).map(item => { this.uploadFiles(newList)
this.uploadList.push(item) .then((res) => {
let newRes = res.map((i) => {
return {
name: i.name,
url: i.url.url,
}
})
;(newRes || []).map((item) => {
this.uploadList.push(item)
})
this.$loading(false, 'file')
this.$emit('onConfirm', this.uploadList)
})
.catch((err) => {
this.$loading(false, 'file')
this.$fm('文件上传失败!')
}) })
this.$loading(false, 'file')
this.$emit('onConfirm', this.uploadList)
}).catch((err) => {
console.log('err', err);
this.$loading(false, 'file')
this.$fm('文件上传失败!')
})
// console.log('list...', list); // console.log('list...', list);
} },
} },
} }
</script> </script>
<style lang='scss' scoped> <style lang='scss' scoped>
::v-deep .preview-cover { ::v-deep .preview-cover {

@ -1,13 +1,5 @@
<template> <template>
<div v-if="qw"> <div class="layout-contain">
<div style="padding-top: 150px; text-align: center">
<img style="width: 100px; height: 100px" src="@/assets/chahao.png" />
</div>
<div style="padding-top: 20px; text-align: center">
<h4>请在客户端打开链接</h4>
</div>
</div>
<div v-else class="layout-contain">
<div <div
class="layout-view" class="layout-view"
:style="`padding-bottom: ${isTabeRouter ? safeHeight : 0}px;`" :style="`padding-bottom: ${isTabeRouter ? safeHeight : 0}px;`"
@ -63,7 +55,6 @@ export default {
}, },
data() { data() {
return { return {
qw: false,
safeHeight: 0, safeHeight: 0,
active: 'home-index', active: 'home-index',
aliveArr: [], aliveArr: [],
@ -84,16 +75,6 @@ export default {
}), }),
}, },
created() { created() {
if (/wxwork/i.test(navigator.userAgent)) {
//
} else {
//
this.qw = true
alert('请在企业微信中打开此页面!')
//
return
// window.location.href = 'https://your-company-wechat-url'
}
this.handleInit() this.handleInit()
this.handleAlive() this.handleAlive()
}, },

@ -3,7 +3,7 @@ import App from './App.vue'
import router from './router' import router from './router'
import store from './store' import store from './store'
import Vant from 'vant' import Vant from 'vant'
import VConsole from "vconsole" // import VConsole from "vconsole"
import { setLocalStorage, compressFile } from '@/utils' import { setLocalStorage, compressFile } from '@/utils'
import msgAlert, { handleForceCloseLoading } from './plugin/msgAlert' import msgAlert, { handleForceCloseLoading } from './plugin/msgAlert'
import pluginPermission from '@/plugin/permission' import pluginPermission from '@/plugin/permission'
@ -34,9 +34,9 @@ Vue.use(directive)
Vue.prototype.$forceCloseLoading = handleForceCloseLoading Vue.prototype.$forceCloseLoading = handleForceCloseLoading
Vue.use(pluginPermission) Vue.use(pluginPermission)
Vue.use(VueClipboard) Vue.use(VueClipboard)
if (window.location.href.indexOf('localhost') === -1 && window.location.href.indexOf('www.joineast.com') === -1) { /* if (window.location.href.indexOf('localhost') === -1 && window.location.href.indexOf('www.joineast.com') === -1) {
new VConsole() new VConsole()
} } */
Vue.prototype.$EventBus = new Vue() // 注册全局EventBus Vue.prototype.$EventBus = new Vue() // 注册全局EventBus
Vue.prototype.$compressFile = compressFile Vue.prototype.$compressFile = compressFile

@ -18,6 +18,7 @@ export default {
{ path: '/custom', name: `${pre}custom`, component: () => import('@/views/contract/custom'), meta: { cache: true, title: '客户合同审批' } }, { path: '/custom', name: `${pre}custom`, component: () => import('@/views/contract/custom'), meta: { cache: true, title: '客户合同审批' } },
{ path: '/pay', name: `${pre}pay`, component: () => import('@/views/contract/pay'), meta: { cache: true, title: '付款审批' } }, { path: '/pay', name: `${pre}pay`, component: () => import('@/views/contract/pay'), meta: { cache: true, title: '付款审批' } },
{ path: '/corporateReceipts', name: `${pre}corporateReceipts`, component: () => import('@/views/contract/corporateReceipts'), meta: { cache: true, title: '对公收款' } }, { path: '/corporateReceipts', name: `${pre}corporateReceipts`, component: () => import('@/views/contract/corporateReceipts'), meta: { cache: true, title: '对公收款' } },
{ path: '/corporateReceiptsApproval', name: `${pre}corporateReceipts`, component: () => import('@/views/contract/corporateReceipts'), meta: { cache: true, title: '对公收款' } },
{ path: '/receipts', name: `${pre}receipts`, component: () => import('@/views/contract/receipts'), meta: { cache: true, title: '收款审批' } }, { path: '/receipts', name: `${pre}receipts`, component: () => import('@/views/contract/receipts'), meta: { cache: true, title: '收款审批' } },
{ path: '/corporatePayment', name: `${pre}corporatePayment`, component: () => import('@/views/contract/corporatePayment'), meta: { cache: true, title: '对公付款' } }, { path: '/corporatePayment', name: `${pre}corporatePayment`, component: () => import('@/views/contract/corporatePayment'), meta: { cache: true, title: '对公付款' } },
{ path: '/payment', name: `${pre}payment`, component: () => import('@/views/contract/payment'), meta: { cache: true, title: '付款审批' } }, { path: '/payment', name: `${pre}payment`, component: () => import('@/views/contract/payment'), meta: { cache: true, title: '付款审批' } },

@ -189,7 +189,7 @@ export default {
* @param {Object} param password {String} 密码 * @param {Object} param password {String} 密码
* @param {Object} param route {Object} 登录成功后定向的路由对象 任何 vue-router 支持的格式 * @param {Object} param route {Object} 登录成功后定向的路由对象 任何 vue-router 支持的格式
*/ */
login({ dispatch, commit }, data) { login({ dispatch, commit }, data,) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
getLocalStorage('accessToken').then(async res => { getLocalStorage('accessToken').then(async res => {
if (!res) { if (!res) {
@ -205,6 +205,7 @@ export default {
return return
} }
setLocalStorage('userInfo', JSON.stringify(res.data)) setLocalStorage('userInfo', JSON.stringify(res.data))
let res1 = res.data
commit('SET_USERINFO', res.data) commit('SET_USERINFO', res.data)
getAreaTree().then(res => { getAreaTree().then(res => {
let tree = res.data || [] let tree = res.data || []
@ -218,7 +219,9 @@ export default {
listUser({ listUser({
pageNo: 1, pageNo: 1,
pageSize: 100, pageSize: 100,
deptId: deptOptions[0].id, // 查询所有人员,不带部门参数
// deptId: deptOptions[0].id,
// deptId: res1.deptId
}).then((ns) => { }).then((ns) => {
commit('SET_USERLIST', ns.data && ns.data.list || []) commit('SET_USERLIST', ns.data && ns.data.list || [])
dispatch('GetAuthInfo').then(() => { dispatch('GetAuthInfo').then(() => {

@ -1,4 +1,5 @@
<template> <template>
<!-- 出差报销 -->
<div class="common-list-contain"> <div class="common-list-contain">
<div class="common-form"> <div class="common-form">
<van-form <van-form
@ -427,7 +428,7 @@
</van-field> </van-field>
<van-field <van-field
v-model="nitem.invoiceCount" v-model="nitem.invoiceCount"
:disabled="true" :disabled="disabled"
placeholder="关联发票自动读取" placeholder="关联发票自动读取"
required required
:rules="[{ required: true, message: '请输入' }]" :rules="[{ required: true, message: '请输入' }]"
@ -631,7 +632,7 @@
</van-field> </van-field>
<van-field <van-field
v-model="nitem.invoiceCount" v-model="nitem.invoiceCount"
:disabled="true" :disabled="disabled"
placeholder="关联发票自动读取" placeholder="关联发票自动读取"
required required
:rules="[{ required: true, message: '请输入' }]" :rules="[{ required: true, message: '请输入' }]"
@ -749,14 +750,14 @@
</div> </div>
</div> </div>
<!-- <div class="section mt5" v-if="['show'].includes(typeStr)"> <div class="section mt5" v-if="['show'].includes(typeStr)">
<span class="line"> </span>审批流程 <span class="line"> </span>审批流程
</div> </div>
<ApprovalProcess <ApprovalProcess
v-if="['show'].includes(typeStr)" v-if="['show'].includes(typeStr)"
:processInstanceId="form.processInstanceId" :processInstanceId="form.processInstanceId"
@onSetId="handleSetAccessId" @onSetId="handleSetAccessId"
/> --> />
<!-- 申请单关联 --> <!-- 申请单关联 -->
<div class="section mt5"><span class="line"> </span>申请单关联</div> <div class="section mt5"><span class="line"> </span>申请单关联</div>

@ -667,6 +667,7 @@
</div> </div>
</van-form> </van-form>
</div> </div>
<!-- 提交按钮 -->
<div class="sumbit-box" v-if="['edit', 'add'].includes(typeStr)"> <div class="sumbit-box" v-if="['edit', 'add'].includes(typeStr)">
<div <div
class="item-box" class="item-box"
@ -996,6 +997,7 @@ export default {
} }
this.scanRes = res.data || {} this.scanRes = res.data || {}
}, },
//
handleImgConfirm(list) { handleImgConfirm(list) {
this.fileList = list this.fileList = list
}, },
@ -1176,6 +1178,7 @@ export default {
this.$loading(false, 'form') this.$loading(false, 'form')
}) })
.catch(() => { .catch(() => {
console.log(2423424234)
this.$loading(false, 'form') this.$loading(false, 'form')
}) })
return return
@ -1190,13 +1193,18 @@ export default {
: this.invoiceType == '04' : this.invoiceType == '04'
? createInvoice04 ? createInvoice04
: createInvoice05 : createInvoice05
createInvoice(newForm).then(() => { createInvoice(newForm)
this.$loading(false, 'form') .then(() => {
this.$sm(`${this.form.id ? '修改成功!' : '新增成功!'}`) this.$loading(false, 'form')
// this.$sm(`${this.form.id ? '修改成功!' : '新增成功!'}`)
this.$EventBus.$emit('handleResetLive', 'company-myInvoice') //
history.back() this.$EventBus.$emit('handleResetLive', 'company-myInvoice')
}) history.back()
})
.catch((err) => {
this.$loading(false, 'form')
console.log(err)
})
}) })
.catch((err) => { .catch((err) => {
this.$loading(false, 'form') this.$loading(false, 'form')

@ -1,25 +1,44 @@
<template> <template>
<!-- 出差列表 --> <!-- 出差列表 -->
<div> <div>
<HeaderFilter :listType="listType" @onListQuery="handleListQuery" :paramProp="listQuery" /> <HeaderFilter
:listType="listType"
@onListQuery="handleListQuery"
:paramProp="listQuery"
/>
<van-tabs v-model="authorisedType" @click="authorisedChange"> <van-tabs v-model="authorisedType" @click="authorisedChange">
<van-tab name="1" title="我的报销单" /> <van-tab name="1" title="待审批" />
<van-tab name="0" title="全部报销单" /> <van-tab name="0" title="全部审批单" />
</van-tabs> </van-tabs>
<RMList :moreLoading.sync="moreLoading" :refreshing.sync="refreshing" :finished.sync="finished" @onLoad="handleLoad" @onRefresh="handleRefresh" isMore :tableList="tableList"> <RMList
:moreLoading.sync="moreLoading"
:refreshing.sync="refreshing"
:finished.sync="finished"
@onLoad="handleLoad"
@onRefresh="handleRefresh"
isMore
:tableList="tableList"
>
<div> <div>
<MyClaimListCard v-for="(item,index) in tableList" :key="item.id" :itemData="item" :listType="listType" @onUpdataInfo="handleUpdataInfo($event, index)" @onAllRefresh="handleAllRefresh" /> <MyClaimListCard
v-for="(item, index) in tableList"
:key="item.id"
:itemData="item"
:listType="listType"
@onUpdataInfo="handleUpdataInfo($event, index)"
@onAllRefresh="handleAllRefresh"
/>
</div> </div>
</RMList> </RMList>
<div class="common-bottom-btns" style="bottom:8rem"> <div class="common-bottom-btns" style="bottom: 8rem">
<div class="common-bottom-btn" @click="handleTopPage"> <div class="common-bottom-btn" @click="handleTopPage">
<img src="@/assets/images/icons/top.png" alt=""> <img src="@/assets/images/icons/top.png" alt="" />
<span>回到顶部</span> <span>回到顶部</span>
</div> </div>
</div> </div>
<div class="common-bottom-btns" style="bottom:6rem"> <div class="common-bottom-btns" style="bottom: 6rem">
<div class="common-bottom-btn" @click="handleBack"> <div class="common-bottom-btn" @click="handleBack">
<img src="@/assets/images/icons/home.png" alt=""> <img src="@/assets/images/icons/home.png" alt="" />
<span>返回首页</span> <span>返回首页</span>
</div> </div>
</div> </div>
@ -37,11 +56,17 @@
import { getScrollTop, findAreaIdName } from '@/utils' import { getScrollTop, findAreaIdName } from '@/utils'
// import { getOrderListApi, getDataStatisticsApi, updateOrderSingleListApi } from '@/api/potentialGuest/order' // import { getOrderListApi, getDataStatisticsApi, updateOrderSingleListApi } from '@/api/potentialGuest/order'
import { mapState, mapMutations } from 'vuex' import { mapState, mapMutations } from 'vuex'
import { createExpenseClaim, updateExpenseClaim, deleteExpenseClaim, getExpenseClaim, getExpenseClaimPage } from "@/api/bs/expenseClaim"; import {
createExpenseClaim,
updateExpenseClaim,
deleteExpenseClaim,
getExpenseClaim,
getExpenseClaimPage,
} from '@/api/bs/expenseClaim'
import dayjs from 'dayjs' import dayjs from 'dayjs'
export default { export default {
props: { props: {
listType: String // EnrollmentOrder: EnrollmentCollection: ShiftRecord: WaitPay: listType: String, // EnrollmentOrder: EnrollmentCollection: ShiftRecord: WaitPay:
}, },
components: { components: {
HeaderFilter: () => import('./HeaderFilter.vue'), HeaderFilter: () => import('./HeaderFilter.vue'),
@ -74,14 +99,14 @@ export default {
costDeptId: null, costDeptId: null,
invoiceIds: null, invoiceIds: null,
}, },
authorisedType:'1' authorisedType: '1',
} }
}, },
computed: { computed: {
...mapState({ ...mapState({
singlePageSize: state => state.common.setting.singlePageSize, singlePageSize: (state) => state.common.setting.singlePageSize,
pageSize: state => state.common.setting.pageSize, pageSize: (state) => state.common.setting.pageSize,
}) }),
}, },
activated() { activated() {
this.handleScrollInit() this.handleScrollInit()
@ -102,24 +127,30 @@ export default {
pageNo: 1, pageNo: 1,
pageSize: this.singlePageSize, pageSize: this.singlePageSize,
} }
getExpenseClaimPage(listQuery).then((res) => { getExpenseClaimPage(listQuery)
let arr = (res.data && res.data.list || []).filter(item => item.id == id) .then((res) => {
resolve(arr) let arr = ((res.data && res.data.list) || []).filter(
}).catch((err) => { (item) => item.id == id
reject(err) )
}) resolve(arr)
})
.catch((err) => {
reject(err)
})
}) })
}, },
handleUpdataInfo(id, index) { handleUpdataInfo(id, index) {
this.$loading(true, 'singleReset') this.$loading(true, 'singleReset')
this.handleSetSingle(id).then(arr => { this.handleSetSingle(id)
if (arr.length) { .then((arr) => {
this.tableList.splice(index, 1, arr[0]) if (arr.length) {
} this.tableList.splice(index, 1, arr[0])
this.$loading(false, 'singleReset') }
}).catch(() => { this.$loading(false, 'singleReset')
this.$loading(false, 'singleReset') })
}) .catch(() => {
this.$loading(false, 'singleReset')
})
}, },
handleListQuery(paramProp) { handleListQuery(paramProp) {
this.listQuery = { this.listQuery = {
@ -129,7 +160,7 @@ export default {
this.handleRefresh() this.handleRefresh()
}, },
handleScroll() { handleScroll() {
getScrollTop().then(height => { getScrollTop().then((height) => {
this.height = height this.height = height
}) })
}, },
@ -147,8 +178,8 @@ export default {
this.$router.push({ this.$router.push({
path: '/claim', path: '/claim',
query: { query: {
type: 'add' type: 'add',
} },
}) })
}, },
handleAllRefresh() { handleAllRefresh() {
@ -179,36 +210,38 @@ export default {
// const { shellIdsLocal, collegeInfoIdLocal, startDate, endDate, keyword, type, method, targets, usePersonId, teacherIds, chargePersonIds } = this.listQuery // const { shellIdsLocal, collegeInfoIdLocal, startDate, endDate, keyword, type, method, targets, usePersonId, teacherIds, chargePersonIds } = this.listQuery
const query = { const query = {
...this.listQuery, ...this.listQuery,
...{authorisedType:this.authorisedType} ...{ authorisedType: this.authorisedType },
} }
this.moreLoading = true this.moreLoading = true
this.$loading(true, 'tableLoading') this.$loading(true, 'tableLoading')
getExpenseClaimPage(query).then(res => { getExpenseClaimPage(query)
let resList = res.data && res.data.list || [] .then((res) => {
if (['init', 'refresh'].includes(val)) { let resList = (res.data && res.data.list) || []
this.tableList = resList if (['init', 'refresh'].includes(val)) {
this.handleScrollToTop() this.tableList = resList
} else { this.handleScrollToTop()
this.tableList = this.tableList.concat(resList) } else {
} this.tableList = this.tableList.concat(resList)
if (resList.length < this.pageSize) { }
this.finished = true if (resList.length < this.pageSize) {
} this.finished = true
}).finally(() => { }
this.$nextTick(() => { })
this.moreLoading = false .finally(() => {
this.refreshing = false this.$nextTick(() => {
this.$loading(false, 'tableLoading') this.moreLoading = false
this.refreshing = false
this.$loading(false, 'tableLoading')
})
// this.$loading(false, `cTableLoading_${this.listType}`)
}) })
// this.$loading(false, `cTableLoading_${this.listType}`)
})
}, },
authorisedChange(){ authorisedChange() {
this.listQuery.pageNo = 1 this.listQuery.pageNo = 1
this.finished = false this.finished = false
this.getTableList('refresh') this.getTableList('refresh')
} },
} },
} }
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

@ -1,4 +1,5 @@
<template> <template>
<!-- 出差申请 -->
<div class="common-list-contain"> <div class="common-list-contain">
<div class="common-form"> <div class="common-form">
<van-form <van-form
@ -359,6 +360,8 @@ import {
} from '@/api/bs/expenseApply' } from '@/api/bs/expenseApply'
import { listData } from '@/api/system/dict/data' import { listData } from '@/api/system/dict/data'
import VerifyFunc from '@/utils/verify' import VerifyFunc from '@/utils/verify'
import { getAreaTree } from '@/api/system/area'
import { handleAreaLoop } from '@/utils'
export default { export default {
//import使 //import使
name: 'company-trips', name: 'company-trips',
@ -381,9 +384,9 @@ export default {
}) })
return arr return arr
}, },
areaTree() { /* areaTree() {
return this.$store.getters.areaTree return this.$store.getters.areaTree
}, }, */
userDeptTree() { userDeptTree() {
return this.$store.getters.userDeptTree return this.$store.getters.userDeptTree
}, },
@ -407,6 +410,7 @@ export default {
created() { created() {
this.handleInitList() this.handleInitList()
this.handleInitForm() this.handleInitForm()
this.getTree()
}, },
// 访DOM // 访DOM
mounted() { mounted() {
@ -414,6 +418,8 @@ export default {
}, },
data() { data() {
return { return {
//
areaTree: [],
VerifyFunc, VerifyFunc,
accessId: null, accessId: null,
isAuthorised: false, isAuthorised: false,
@ -470,6 +476,14 @@ export default {
watch: {}, watch: {},
// //
methods: { methods: {
//
getTree() {
getAreaTree().then((res) => {
let tree = res.data || []
handleAreaLoop(tree)
this.areaTree = tree
})
},
handleClear(index, type) { handleClear(index, type) {
if (type === 1) { if (type === 1) {
this.$set(this.form.expenseApplyTrips[index], 'time', null) this.$set(this.form.expenseApplyTrips[index], 'time', null)

@ -1,27 +1,55 @@
<template> <template>
<!-- 对公收款 --> <!-- 对公收款 -->
<div> <div>
<HeaderFilter :listType="listType" :spList="spList" @onListQuery="handleListQuery" :paramProp="listQuery" /> <HeaderFilter
<RMList :moreLoading.sync="moreLoading" :refreshing.sync="refreshing" :finished.sync="finished" @onLoad="handleLoad" @onRefresh="handleRefresh" isMore :tableList="tableList"> :listType="listType"
:spList="spList"
@onListQuery="handleListQuery"
:paramProp="listQuery"
/>
<RMList
:moreLoading.sync="moreLoading"
:refreshing.sync="refreshing"
:finished.sync="finished"
@onLoad="handleLoad"
@onRefresh="handleRefresh"
isMore
:tableList="tableList"
>
<div> <div>
<CorporateReceiptsCard v-for="(item,index) in tableList" :key="item.id" :itemData="item" :listType="listType" @onUpdataInfo="handleUpdataInfo($event, index)" @onAllRefresh="handleAllRefresh" /> <CorporateReceiptsCard
v-for="(item, index) in tableList"
:key="index"
:itemData="item"
:listType="listType"
@onAllRefresh="handleAllRefresh"
:isApproval="isApproval"
/>
<!-- @onUpdataInfo="handleUpdataInfo($event, index)" -->
</div> </div>
</RMList> </RMList>
<div class="common-bottom-btns" style="bottom:8rem">
<div class="common-bottom-btns" style="bottom: 8rem">
<div class="common-bottom-btn" @click="handleTopPage"> <div class="common-bottom-btn" @click="handleTopPage">
<img src="@/assets/images/icons/top.png" alt=""> <img src="@/assets/images/icons/top.png" alt="" />
<span>回到顶部</span> <span>回到顶部</span>
</div> </div>
</div> </div>
<div class="common-bottom-btns" v-hasPermi="['bs:vendor-receipt:create']" style="bottom:10rem"> <div v-if="isAdd">
<div class="common-bottom-btn" @click="handleToAdd"> <div
<img src="@/assets/images/icons/add.png" alt=""> class="common-bottom-btns"
<span>添加收款</span> v-hasPermi="['bs:vendor-receipt:create']"
style="bottom: 10rem"
>
<div class="common-bottom-btn" @click="handleToAdd">
<img src="@/assets/images/icons/add.png" alt="" />
<span>添加收款</span>
</div>
</div> </div>
</div> </div>
<div class="common-bottom-btns" style="bottom:6rem"> <div class="common-bottom-btns" style="bottom: 6rem">
<div class="common-bottom-btn" @click="handleBack"> <div class="common-bottom-btn" @click="handleBack">
<img src="@/assets/images/icons/home.png" alt=""> <img src="@/assets/images/icons/home.png" alt="" />
<span>返回首页</span> <span>返回首页</span>
</div> </div>
</div> </div>
@ -30,13 +58,13 @@
<script> <script>
import { getScrollTop } from '@/utils' import { getScrollTop } from '@/utils'
import { getSupplierCompanyPage } from "@/api/bs/quotationSheet"; import { getSupplierCompanyPage } from '@/api/bs/quotationSheet'
import { getVendorReceiptPage } from "@/api/bs/vendorReceipt"; import { getVendorReceiptPage } from '@/api/bs/vendorReceipt'
import { mapState } from 'vuex' import { mapState } from 'vuex'
import dayjs from 'dayjs' import dayjs from 'dayjs'
export default { export default {
props: { props: {
listType: String // EnrollmentOrder: EnrollmentCollection: ShiftRecord: WaitPay: listType: String, // EnrollmentOrder: EnrollmentCollection: ShiftRecord: WaitPay:
}, },
components: { components: {
HeaderFilter: () => import('./HeaderFilter.vue'), HeaderFilter: () => import('./HeaderFilter.vue'),
@ -73,23 +101,34 @@ export default {
remark: null, remark: null,
files: null, files: null,
createTime: [], createTime: [],
}, },
isApproval: false,
degreeOfInquiry: 2,
isAdd: true,
} }
}, },
computed: { computed: {
...mapState({ ...mapState({
singlePageSize: state => state.common.setting.singlePageSize, singlePageSize: (state) => state.common.setting.singlePageSize,
pageSize: state => state.common.setting.pageSize, pageSize: (state) => state.common.setting.pageSize,
}) }),
}, },
activated() { activated() {
this.handleScrollInit() this.handleScrollInit()
this.handleInit()
}, },
deactivated() { deactivated() {
window.removeEventListener('scroll', this.handleScroll) window.removeEventListener('scroll', this.handleScroll)
}, },
created() { created() {
console.log(this.$route.path, 'path')
if (this.$route.path == '/corporateReceiptsApproval') {
this.isApproval = true //
this.degreeOfInquiry = 1 // 1 2
this.isAdd = false //
}
this.handleInit() this.handleInit()
// this.handleUpdataInfo()
}, },
methods: { methods: {
handleBack() { handleBack() {
@ -104,41 +143,53 @@ export default {
this.spList = res.data.list || [] this.spList = res.data.list || []
}) })
}, },
handleSetSingle(id) { /* handleSetSingle(id) {
return new Promise((resolve, reject) => { return new Promise((resolve, reject) => {
let listQuery = { let listQuery = {
pageNo: 1, pageNo: 1,
pageSize: this.singlePageSize, pageSize: this.singlePageSize,
degreeOfInquiry: this.degreeOfInquiry,
} }
getVendorReceiptPage(listQuery).then((res) => { console.log(this.degreeOfInquiry, 'this.degreeOfInquiry')
let arr = (res.data && res.data.list || []).filter(item => item.id == id) getVendorReceiptPage(listQuery)
resolve(arr) .then((res) => {
}).catch((err) => { console.log(res)
reject(err) // let arr = ((res.data && res.data.list) || []).filter(
}) // (item) => item.id == id
// )
resolve(res.data.list)
})
.catch((err) => {
reject(err)
})
}) })
}, }, */
handleUpdataInfo(id, index) { /* handleUpdataInfo(id, index) {
this.$loading(true, 'singleReset') this.$loading(true, 'singleReset')
this.handleSetSingle(id).then(arr => { this.handleSetSingle(id)
if (arr.length) { .then((arr) => {
this.tableList.splice(index, 1, arr[0]) if (arr.length) {
} this.tableList.push(...arr)
this.$loading(false, 'singleReset') }
}).catch(() => { this.$loading(false, 'singleReset')
this.$loading(false, 'singleReset') })
}) .catch(() => {
}, this.$loading(false, 'singleReset')
})
}, */
handleListQuery(paramProp) { handleListQuery(paramProp) {
this.listQuery = { this.listQuery = {
...paramProp, ...paramProp,
invoiceDate: paramProp.startDate && [dayjs(paramProp.startDate).format('YYYY-MM-DD HH:ss:mm'), dayjs(paramProp.endDate).format('YYYY-MM-DD HH:ss:mm')] invoiceDate: paramProp.startDate && [
dayjs(paramProp.startDate).format('YYYY-MM-DD HH:ss:mm'),
dayjs(paramProp.endDate).format('YYYY-MM-DD HH:ss:mm'),
],
} }
this.finished = false this.finished = false
this.handleRefresh() this.handleRefresh()
}, },
handleScroll() { handleScroll() {
getScrollTop().then(height => { getScrollTop().then((height) => {
this.height = height this.height = height
}) })
}, },
@ -156,8 +207,8 @@ export default {
this.$router.push({ this.$router.push({
path: '/receipts', path: '/receipts',
query: { query: {
type: 'add' type: 'add',
} },
}) })
}, },
handleAllRefresh() { handleAllRefresh() {
@ -188,31 +239,34 @@ export default {
getTableList(val) { getTableList(val) {
// const { shellIdsLocal, collegeInfoIdLocal, startDate, endDate, keyword, type, method, targets, usePersonId, teacherIds, chargePersonIds } = this.listQuery // const { shellIdsLocal, collegeInfoIdLocal, startDate, endDate, keyword, type, method, targets, usePersonId, teacherIds, chargePersonIds } = this.listQuery
const query = { const query = {
...this.listQuery ...this.listQuery,
degreeOfInquiry: this.degreeOfInquiry,
} }
this.moreLoading = true this.moreLoading = true
this.$loading(true, 'tableLoading') this.$loading(true, 'tableLoading')
getVendorReceiptPage(query).then(res => { getVendorReceiptPage(query)
let resList = res.data && res.data.list || [] .then((res) => {
if (['init', 'refresh'].includes(val)) { let resList = (res.data && res.data.list) || []
this.tableList = resList if (['init', 'refresh'].includes(val)) {
this.handleScrollToTop() this.tableList = resList
} else { this.handleScrollToTop()
this.tableList = this.tableList.concat(resList) } else {
} this.tableList = this.tableList.concat(resList)
if (resList.length < this.pageSize) { }
this.finished = true if (resList.length < this.pageSize) {
} this.finished = true
}).finally(() => { }
this.$nextTick(() => { })
this.moreLoading = false .finally(() => {
this.refreshing = false this.$nextTick(() => {
this.$loading(false, 'tableLoading') this.moreLoading = false
this.refreshing = false
this.$loading(false, 'tableLoading')
})
// this.$loading(false, `cTableLoading_${this.listType}`)
}) })
// this.$loading(false, `cTableLoading_${this.listType}`)
})
}, },
} },
} }
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">

@ -1,45 +1,213 @@
<template> <template>
<div class="common-list-contain"> <div class="common-list-contain">
<div class="common-form"> <div class="common-form">
<van-form ref="form" :show-error-message="false" validate-trigger="" :submit-on-enter="false" label-width="8rem"> <van-form
<div class="section"> <span class="line"> </span> 基本信息</div> ref="form"
:show-error-message="false"
validate-trigger=""
:submit-on-enter="false"
label-width="8rem"
>
<div class="section"><span class="line"> </span> 基本信息</div>
<div class="trips-box"> <div class="trips-box">
<div class="item-box"> <div class="item-box">
<van-field v-model="form.vendorReceiptNo" v-if="form.vendorReceiptNo" disabled label="单号" clear-trigger="always" input-align="right" /> <van-field
<van-field v-model="cn" disabled label="公司名称" clear-trigger="always" input-align="right" /> v-model="form.vendorReceiptNo"
<van-field v-model="form.projectName" :disabled="disabled" label="项目名称" clear-trigger="always" placeholder="请输入" input-align="right" /> v-if="form.vendorReceiptNo"
<van-field v-model="userInfo.nickname" disabled label="申请人" clear-trigger="always" input-align="right" maxlength="50" placeholder="请输入" /> disabled
<van-field v-model="userInfo.dept.name" disabled label="申请部门" clear-trigger="always" input-align="right" maxlength="50" placeholder="请输入" /> label="单号"
<RePick v-model="form.accountType" :disabled="disabled" label="账户类型" name="accountType" :list="accountList" title="账户类型" titleKey="label" idKey="value" isCell clearable /> clear-trigger="always"
<RePick v-model="form.currency" :disabled="disabled" label="收取币种" name="currency" :list="moneyList" title="收取币种" titleKey="label" idKey="value" isCell clearable /> input-align="right"
<van-field v-model="form.amount" type="number" name="amount" :disabled="disabled" placeholder="请输入" input-align="right" required :rules="[{ required: true, message: '收款金额格式错误',validator: VerifyFunc.validatorMoney }]" label="收款金额" /> />
<van-field v-model="form.projectManager" :disabled="disabled" label="项目负责人" :rules="[{ required: true, message: '请输入' }]" required placeholder="请输入" clear-trigger="always" input-align="right" /> <van-field
<RePick v-model="form.vendorIds" isRequrie :rules="[{ required: true, message: '请选择' }]" required :disabled="disabled" label="关联供应商" name="vendorIds" isShowSearch :list="allGysList" title="关联供应商" :isUseLimitPage="allGysList.length > 300" isCell clearable /> v-model="cn"
<RePick v-model="form.receiptBankIds" isRequrie :rules="[{ required: true, message: '请选择' }]" required :disabled="disabled" label="关收款账户" name="currency" isShowSearch :list="allBankList" title="关收款账户" :isUseLimitPage="allBankList.length > 300" isCell clearable /> disabled
<van-field v-model="form.reason" laceholder="请输入" :disabled="disabled" autosize rows="1" type="textarea" :rules="[{ required: true, message: '请输入' }]" label="申请事由" required clear-trigger="always" input-align="right" /> label="公司名称"
<van-field v-model="form.remark" placeholder="请输入" :disabled="disabled" autosize rows="1" type="textarea" label="备注信息" clear-trigger="always" input-align="right" /> clear-trigger="always"
input-align="right"
/>
<van-field
v-model="form.projectName"
:disabled="disabled"
label="项目名称"
clear-trigger="always"
placeholder="请输入"
input-align="right"
/>
<van-field
v-model="form.createName"
disabled
label="申请人"
clear-trigger="always"
input-align="right"
maxlength="50"
placeholder="请输入"
/>
<!-- <van-field
v-model="userInfo.dept.name"
disabled
label="申请部门"
clear-trigger="always"
input-align="right"
maxlength="50"
placeholder="请输入"
/> -->
<van-field
v-model="form.deptName"
disabled
label="申请部门"
clear-trigger="always"
input-align="right"
maxlength="50"
placeholder="请输入"
/>
<RePick
v-model="form.accountType"
:disabled="disabled"
label="账户类型"
name="accountType"
:list="accountList"
title="账户类型"
titleKey="label"
idKey="value"
isCell
clearable
/>
<RePick
v-model="form.currency"
:disabled="disabled"
label="收取币种"
name="currency"
:list="moneyList"
title="收取币种"
titleKey="label"
idKey="value"
isCell
clearable
/>
<van-field
v-model="form.amount"
type="number"
name="amount"
:disabled="disabled"
placeholder="请输入"
input-align="right"
required
:rules="[
{
required: true,
message: '收款金额格式错误',
validator: VerifyFunc.validatorMoney,
},
]"
label="收款金额"
/>
<van-field
v-model="form.projectManager"
:disabled="disabled"
label="项目负责人"
:rules="[{ required: true, message: '请输入' }]"
required
placeholder="请输入"
clear-trigger="always"
input-align="right"
/>
<RePick
v-model="form.vendorIds"
isRequrie
:rules="[{ required: true, message: '请选择' }]"
required
:disabled="disabled"
label="关联供应商"
name="vendorIds"
isShowSearch
:list="allGysList"
title="关联供应商"
:isUseLimitPage="allGysList.length > 300"
isCell
clearable
/>
<RePick
v-model="form.receiptBankIds"
isRequrie
:rules="[{ required: true, message: '请选择' }]"
required
:disabled="disabled"
label="关收款账户"
name="currency"
isShowSearch
:list="allBankList"
title="关收款账户"
:isUseLimitPage="allBankList.length > 300"
isCell
clearable
/>
<van-field
v-model="form.reason"
laceholder="请输入"
:disabled="disabled"
autosize
rows="1"
type="textarea"
:rules="[{ required: true, message: '请输入' }]"
label="申请事由"
required
clear-trigger="always"
input-align="right"
/>
<van-field
v-model="form.remark"
placeholder="请输入"
:disabled="disabled"
autosize
rows="1"
type="textarea"
label="备注信息"
clear-trigger="always"
input-align="right"
/>
</div> </div>
</div> </div>
<div class="section mt5"> <span class="line"> </span>附件</div> <div class="section mt5"><span class="line"> </span>附件</div>
<div class="trips-box"> <div class="trips-box">
<div class="item-box"> <div class="item-box">
<UploadFile :typeStr="typeStr" @onConfirm="handleUpload" :fileList="fileList" /> <UploadFile
:typeStr="typeStr"
@onConfirm="handleUpload"
:fileList="fileList"
/>
</div> </div>
</div> </div>
<div class="section mt5" v-if="['show'].includes(typeStr)"> <span class="line"> </span>审批流程</div> <div class="section mt5" v-if="['show'].includes(typeStr)">
<ApprovalProcess v-if="['show'].includes(typeStr)" :processInstanceId="form.processInstanceId" @onSetId="handleSetAccessId" /> <span class="line"> </span>审批流程
</div>
<ApprovalProcess
v-if="['show'].includes(typeStr)"
:processInstanceId="form.processInstanceId"
@onSetId="handleSetAccessId"
/>
</van-form> </van-form>
</div> </div>
<BottomBtn ref="BottomBtn" :isAuthorised="isAuthorised" @onBtConfirm="handleBtConfirm" :accessId="accessId" /> <BottomBtn
ref="BottomBtn"
:isAuthorised="isAuthorised"
@onBtConfirm="handleBtConfirm"
:accessId="accessId"
/>
</div> </div>
</template> </template>
<script> <script>
import { createVendorReceipt, getVendorReceipt, updateVendorReceipt } from "@/api/bs/vendorReceipt"; import {
createVendorReceipt,
getVendorReceipt,
updateVendorReceipt,
} from '@/api/bs/vendorReceipt'
import VerifyFunc from '@/utils/verify' import VerifyFunc from '@/utils/verify'
import { getDictDatas, DICT_TYPE } from "@/utils/dict"; import { getDictDatas, DICT_TYPE } from '@/utils/dict'
import { getVendorPage } from "@/api/bs/vendor"; import { getVendorPage } from '@/api/bs/vendor'
import { getBankAccountInfoPage } from "@/api/bs/bankAccountInfo"; import { getBankAccountInfoPage } from '@/api/bs/bankAccountInfo'
export default { export default {
//import使 //import使
props: {}, props: {},
@ -52,16 +220,24 @@ export default {
}, },
// 访this // 访this
created() { created() {
this.isApproval = this.$route.query.isApproval == 'true' ? true : false
this.handleInitList().then(() => { this.handleInitList().then(() => {
this.handleInitForm() this.handleInitForm()
}) })
}, },
// 访DOM // 访DOM
mounted() { mounted() {},
},
data() { data() {
return { return {
form: {}, isApproval: false,
form: {
createName: JSON.parse(
window.localStorage.getItem('userInfo') || { dept: {} }
).nickname,
deptName: JSON.parse(
window.localStorage.getItem('userInfo') || { dept: {} }
).dept.name,
},
allBankList: [], allBankList: [],
allGysList: [], allGysList: [],
isAuthorised: false, isAuthorised: false,
@ -71,12 +247,12 @@ export default {
typeStr: null, // show: edit: : typeStr: null, // show: edit: :
fileList: [], fileList: [],
btnList: [ btnList: [
{ title: '暂存', icon: 'star-o', color: "#909399", key: 0 }, { title: '暂存', icon: 'star-o', color: '#909399', key: 0 },
{ title: '提交', icon: 'edit', color: "#ff9900", key: 1 }, { title: '提交', icon: 'edit', color: '#ff9900', key: 1 },
{ title: '同意', icon: 'certificate', color: "#19be6b", key: 2 }, { title: '同意', icon: 'certificate', color: '#19be6b', key: 2 },
{ title: '驳回', icon: 'exchange', color: "#fa3534", key: 3 }, { title: '驳回', icon: 'exchange', color: '#fa3534', key: 3 },
], ],
}; }
}, },
// //
// bs_fee_type // bs_fee_type
@ -104,7 +280,7 @@ export default {
}, },
disabled() { disabled() {
return ['show'].includes(this.$route.query.type) return ['show'].includes(this.$route.query.type)
} },
}, },
// //
methods: { methods: {
@ -112,45 +288,57 @@ export default {
this.fileList = list this.fileList = list
}, },
handleBtConfirm(key, ignoreFeeTip) { handleBtConfirm(key, ignoreFeeTip) {
console.log(key, 1)
if (key == 2 || key == 3) { if (key == 2 || key == 3) {
return return
} }
console.log(key, 2)
this.$nextTick(() => { this.$nextTick(() => {
this.$refs.form.validate().then(() => { this.$refs.form
// / .validate()
let newForm = { .then(() => {
...this.form, console.log(key, 3)
files: this.fileList, // /
receiptBankIds: [this.form.receiptBankIds], let newForm = {
vendorIds: [this.form.vendorIds], ...this.form,
status: key files: this.fileList,
} receiptBankIds: [this.form.receiptBankIds],
this.$loading(true, 'form') vendorIds: [this.form.vendorIds],
let api = newForm.id ? updateVendorReceipt : createVendorReceipt status: key,
api(newForm).then(() => {
this.$loading(false, 'form')
this.$sm(`${this.form.id ? '修改成功!' : '新增成功!'}`)
//
if (!newForm.id) {
this.$EventBus.$emit('handleResetLive', 'contract-corporateReceipts')
} }
history.back() this.$loading(true, 'form')
}).catch(() => { let api = newForm.id ? updateVendorReceipt : createVendorReceipt
this.$loading(false, 'form') api(newForm)
.then(() => {
this.$loading(false, 'form')
this.$sm(`${this.form.id ? '修改成功!' : '新增成功!'}`)
//
if (!newForm.id) {
this.$EventBus.$emit(
'handleResetLive',
'contract-corporateReceipts'
)
}
history.back()
})
.catch(() => {
this.$loading(false, 'form')
})
}) })
.catch((err) => {
}).catch((err) => { this.$loading(false, 'form')
this.$loading(false, 'form') if (err && err.length > 0 && err[0].name) {
if (err && err.length > 0 && err[0].name) { if (err[0].name === 'amount') {
if (err[0].name === 'amount') { this.$fm(err[0].message)
this.$fm(err[0].message) }
const fieldElement = this.$refs.form.$el.querySelector(
`[name="${err[0].name}"]`
)
const fieldHeight = fieldElement.offsetHeight
const scrollHeight = fieldHeight + 50 // 50px
this.$refs.form.scrollToField(err[0].name, scrollHeight)
} }
const fieldElement = this.$refs.form.$el.querySelector(`[name="${err[0].name}"]`); })
const fieldHeight = fieldElement.offsetHeight;
const scrollHeight = fieldHeight + 50; // 50px
this.$refs.form.scrollToField(err[0].name, scrollHeight);
}
})
}) })
}, },
handleSetAccessId(id) { handleSetAccessId(id) {
@ -163,20 +351,29 @@ export default {
if (this.$route.query.id) { if (this.$route.query.id) {
this.$loading(true, 'loadingSb') this.$loading(true, 'loadingSb')
let api = getVendorReceipt let api = getVendorReceipt
api(this.$route.query.id).then((res) => { api({ id: this.$route.query.id, isApproval: this.isApproval })
this.form = { .then((res) => {
...(res.data || {}), this.form = {
receiptBankIds: Array.isArray(res.data.receiptBankIds) && res.data.receiptBankIds.length ? Number(res.data.receiptBankIds[0]) : null, ...(res.data || {}),
vendorIds: Array.isArray(res.data.vendorIds) && res.data.vendorIds.length ? Number(res.data.vendorIds[0]) : null receiptBankIds:
} Array.isArray(res.data.receiptBankIds) &&
this.fileList = res.data.files || [] res.data.receiptBankIds.length
this.isAuthorised = res.data.isAuthorised ? Number(res.data.receiptBankIds[0])
this.$nextTick(() => { : null,
this.$refs.BottomBtn.handleFilterBtnList() vendorIds:
Array.isArray(res.data.vendorIds) && res.data.vendorIds.length
? Number(res.data.vendorIds[0])
: null,
}
this.fileList = res.data.files || []
this.isAuthorised = res.data.isAuthorised
this.$nextTick(() => {
this.$refs.BottomBtn.handleFilterBtnList()
})
})
.finally(() => {
this.$loading(false, 'loadingSb')
}) })
}).finally(() => {
this.$loading(false, 'loadingSb')
})
} }
}, },
@ -185,28 +382,30 @@ export default {
return new Promise((resolve) => { return new Promise((resolve) => {
Promise.all([ Promise.all([
getVendorPage({ pageNo: 1, pageSize: 999 }), getVendorPage({ pageNo: 1, pageSize: 999 }),
getBankAccountInfoPage({ pageNo: 1, pageSize: 999 }) getBankAccountInfoPage({ pageNo: 1, pageSize: 999 }),
]).then(responses => { ])
// .then((responses) => {
this.allGysList = (responses[0].data.list || []).map(item => { //
return { this.allGysList = (responses[0].data.list || []).map((item) => {
id: item.id, return {
title: item.vendorName id: item.id,
} title: item.vendorName,
}); }
this.allBankList = (responses[1].data.list || []).map(item => { })
return { this.allBankList = (responses[1].data.list || []).map((item) => {
id: item.id, return {
title: `${item.bankName}-收款账户:${item.bankAccount}` id: item.id,
} title: `${item.bankName}-收款账户:${item.bankAccount}`,
}); }
resolve() })
}).catch(error => { resolve()
// })
console.error('Error:', error); .catch((error) => {
}); //
console.error('Error:', error)
})
}) })
} },
}, },
} }
</script> </script>

@ -126,47 +126,6 @@ export default {
handleFilterList() { handleFilterList() {
this.roterList = [] this.roterList = []
let arr = [ let arr = [
{
row: [
/* {
route: '/mySupplier',
title: '供应商合同审批',
icon: 'friends-o',
show: this.permission_btns.includes('procurement:supplierCt:list')
},
{
route: '/myCustom',
title: '客户合同审批',
icon: 'manager-o',
show: this.permission_btns.includes('bs:customer-contract:query')
},
{
route: '/myBidder',
title: '中标审批',
icon: 'bookmark-o',
show: this.permission_btns.includes('bs:quotation-sheet:create')
},
{
route: '/myPay',
title: '付款审批',
icon: 'refund-o',
show: this.permission_btns.includes('procurement:payApply:list')
}, */
{
route: '/corporateReceipts',
title: '对公收款',
icon: 'friends-o',
show: this.permission_btns.includes('bs:vendor-receipt:query'),
},
{
route: '/corporatePayment',
title: '对公付款',
icon: 'friends-o',
show: this.permission_btns.includes('bs:vendor-payment:query'),
},
],
title: '合同审批',
},
{ {
row: [ row: [
// { // {
@ -212,7 +171,7 @@ export default {
show: checkPermission('bs/invoice/index'), show: checkPermission('bs/invoice/index'),
}, },
], ],
title: '企业办公', title: '报销',
}, },
{ {
row: [ row: [
@ -228,9 +187,56 @@ export default {
icon: 'qr-invalid', icon: 'qr-invalid',
show: checkPermission('bs/expenseClaim/index'), show: checkPermission('bs/expenseClaim/index'),
}, },
{
route: '/corporateReceiptsApproval', //
title: '对公收款审批',
icon: 'friends-o',
show: this.permission_btns.includes('bs:vendor-receipt:query'),
},
], ],
title: '审批', title: '审批',
}, },
{
row: [
/* {
route: '/mySupplier',
title: '供应商合同审批',
icon: 'friends-o',
show: this.permission_btns.includes('procurement:supplierCt:list')
},
{
route: '/myCustom',
title: '客户合同审批',
icon: 'manager-o',
show: this.permission_btns.includes('bs:customer-contract:query')
},
{
route: '/myBidder',
title: '中标审批',
icon: 'bookmark-o',
show: this.permission_btns.includes('bs:quotation-sheet:create')
},
{
route: '/myPay',
title: '付款审批',
icon: 'refund-o',
show: this.permission_btns.includes('procurement:payApply:list')
}, */
{
route: '/corporateReceipts',
title: '对公收款',
icon: 'friends-o',
show: this.permission_btns.includes('bs:vendor-receipt:query'),
},
/* {
route: '/corporatePayment',
title: '对公付款',
icon: 'friends-o',
show: this.permission_btns.includes('bs:vendor-payment:query'),
}, */
],
title: '对公',
},
] ]
this.roterList = arr.map((item) => { this.roterList = arr.map((item) => {
return { return {

@ -8,6 +8,7 @@
</div> </div>
</div> </div>
<div v-else class="login-mobile-contain"> <div v-else class="login-mobile-contain">
<!-- <div class="login-mobile-contain"> -->
<div class="login-contaion flex-c flex-c-center"> <div class="login-contaion flex-c flex-c-center">
<div class="contain-topbg flex flex-center flex-c flex-c-center"> <div class="contain-topbg flex flex-center flex-c flex-c-center">
<img class="logo-img" src="@/assets/logo.png" alt="" /> <img class="logo-img" src="@/assets/logo.png" alt="" />
@ -16,7 +17,7 @@
<div class="round"></div> <div class="round"></div>
</div> </div>
<!-- 密码登录 --> <!-- 密码登录 -->
<div v-if="firstLogin" style="width: 90%; z-index: 10"> <div style="width: 90%; z-index: 10">
<div class="login-form"> <div class="login-form">
<div <div
style="border-bottom: 0.0125rem solid #ddd; padding-bottom: 24px" style="border-bottom: 0.0125rem solid #ddd; padding-bottom: 24px"
@ -65,7 +66,6 @@
<van-button <van-button
type="primary" type="primary"
@click="handleWxLogin" @click="handleWxLogin"
:class="{ mtop: !firstLogin }"
style="left: 50%; transform: translateX(-50%); width: 90%" style="left: 50%; transform: translateX(-50%); width: 90%"
>企业微信登录</van-button >企业微信登录</van-button
> >
@ -102,7 +102,6 @@ export default {
tenantEnable: false, tenantEnable: false,
captchaEnable: false, captchaEnable: false,
isRemeber: false, isRemeber: false,
firstLogin: false,
code: '', code: '',
state: '', state: '',
} }
@ -183,7 +182,6 @@ export default {
forbidClick: false, forbidClick: false,
message: '请输入账号密码首次绑定', message: '请输入账号密码首次绑定',
}) })
this.firstLogin = true
this.$nextTick(() => { this.$nextTick(() => {
return return
}) })
@ -284,7 +282,6 @@ export default {
} }
window.localStorage.setItem('loginInfo', JSON.stringify(obj)) window.localStorage.setItem('loginInfo', JSON.stringify(obj))
} }
this.firstLogin = false
// //
if (window.location.href.includes('code')) { if (window.location.href.includes('code')) {
userBind({ code: this.code, state: this.state, type: 40 }) userBind({ code: this.code, state: this.state, type: 40 })

Loading…
Cancel
Save