|
|
|
@ -373,17 +373,28 @@
|
|
|
|
|
<div class="box-tp" style="margin-bottom: 1rem">
|
|
|
|
|
<div
|
|
|
|
|
class="tp-lf"
|
|
|
|
|
@click.stop="showRules(nitem, index, nIndex)"
|
|
|
|
|
|
|
|
|
|
>
|
|
|
|
|
费用 {{ nIndex + 1 }}
|
|
|
|
|
<span class="rules" style="color: #1989fa">
|
|
|
|
|
<span class="rules" style="color: #1989fa" @click.stop="showRules(nitem, index, nIndex)" >
|
|
|
|
|
<van-icon
|
|
|
|
|
|
|
|
|
|
size="18"
|
|
|
|
|
name="coupon-o"
|
|
|
|
|
color="#1989fa"
|
|
|
|
|
/>报销规则</span
|
|
|
|
|
/>报销规则
|
|
|
|
|
|
|
|
|
|
</span
|
|
|
|
|
>
|
|
|
|
|
<span style="color: #1989fa; padding:5px" @click="addInvoice">
|
|
|
|
|
<van-icon
|
|
|
|
|
size="18"
|
|
|
|
|
name="plus"
|
|
|
|
|
color="#1989fa"
|
|
|
|
|
/>新增发票
|
|
|
|
|
</span>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div
|
|
|
|
|
class="tp-rt"
|
|
|
|
|
v-if="!(item.expenseClaimDetails.length == 1)"
|
|
|
|
@ -989,6 +1000,15 @@ export default {
|
|
|
|
|
watch: {},
|
|
|
|
|
// 方法集合
|
|
|
|
|
methods: {
|
|
|
|
|
// 新增发票按钮
|
|
|
|
|
addInvoice() {
|
|
|
|
|
this.$router.push({
|
|
|
|
|
path: '/myInvoice',
|
|
|
|
|
query: {
|
|
|
|
|
isAdd:'isAdd'
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
getTree() {
|
|
|
|
|
getAreaTree().then((res) => {
|
|
|
|
|
let tree = res.data || []
|
|
|
|
|