|
@@ -109,6 +109,7 @@
|
|
|
<script>
|
|
|
import {applyLoan, paymentApply} from "@/api/financialManagement/paymentRequest";
|
|
|
import option from "./config/option.json"
|
|
|
+ import {getUserInfo} from "@/api/system/user";
|
|
|
export default {
|
|
|
name: "financialAccount",
|
|
|
props: {
|
|
@@ -144,9 +145,15 @@
|
|
|
placeholder: '请点击右边按钮选择',
|
|
|
dicData: []
|
|
|
},
|
|
|
+ category: '',
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
+ getUserInfo().then(res=>{
|
|
|
+ this.category = res.data.data.billType
|
|
|
+ if (this.category == 2) {
|
|
|
+ }
|
|
|
+ })
|
|
|
//币别
|
|
|
this.getWorkDicts("currency").then(res => {
|
|
|
this.currencyDic = res.data.data
|