Commit aeb83054 authored by Mac's avatar Mac

修改样式问题

parent 8e2aac5a
......@@ -41,15 +41,19 @@
<div class="mySJbox" v-if="!loading">
<div>
<div style="font-size: 14px; color: #000;padding: 8px 15px;display: flex; justify-content: space-between;">
<span style="border-left: 3px solid #e95252;padding-left: 10px;">财务收据</span>
<span style="border-left: 3px solid #e95252;padding-left: 10px;">财务收据 <span v-if="data && data.State" :style="{'font-size': '12px','color':data.State==1?'#409EFF':'#F56C6C'}">({{data.State==1?'已领':'未领'}})</span> </span>
<div style="display: flex;align-items: center;" v-if="data && data.State ">
<span class="_btn" @click="Printreceipt" >打印</span>
<span class="_btn" @click='addreceipt' v-if="data.State==2&& isoneself">修改</span>
<span class="_btn" @click='setdelete' v-if="data.State==2 && isoneself">删除</span>
<span class="_btn" @click='getshare'>分享</span>
<span class="_btn" @click='getshare' v-if="data.State==2">分享</span>
</div>
</div>
<div v-if="data && data.Id>0" style="padding: 10px;">
<div style="display: flex;align-items: center; justify-content: space-between;">
<div> </div>
<div>认领码: <span class="sjbianhao">{{data.ClaimCode}}</span> </div>
</div>
<div style="display: flex;align-items: center; justify-content: space-between;">
<div>开票日期:<span>{{data.CreateTime}}</span> </div>
<div>编号: <span class="sjbianhao">{{data.ReceiptNo}}</span> </div>
......@@ -115,8 +119,8 @@
<template>
<div class="courserefund_Div" id="proToCol"
style="display: flex;flex-direction: column;align-items: center; padding: 15px;">
<img src="http://192.168.20.214:8130/EduSystem/Test/Upload/Temporary/202109290408209920000000003.jpeg" alt="" style="width:100%;" />
<div style="margin: 15px 0;">尊敬的客户,成都市锦江区甲鹤外语培训学校 发送给您了一个财务收据,请长按识别二维码查收</div>
<img :src="imgurl" alt="" style="width:100%;" />
<div style="margin: 25px 0;">尊敬的客户,成都市锦江区甲鹤外语培训学校 发送给您了一个财务收据,请长按识别二维码查收</div>
</div>
<div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="sharedialog=false">关闭</button>
......@@ -281,7 +285,7 @@
})
this.apipostDS(
"/api/user/GetWeiXinQRCodeForHT", {
Path: "/pages/school/personal/receiptDetails?id=" + this.FrID,
Path: "/pages/school/personal/receiptDetails?id=" + this.FrID+'&JumpType=20',
With: 430
},
(res) => {
......
......@@ -1077,7 +1077,7 @@
</div>
</div>
</div>
<div v-if="ConfigInfo && ConfigInfo.Enable==1 && getreceipt() ">
<div v-if="ConfigInfo && ConfigInfo.Enable==1 && getreceipt() && bossID == GetDetail.CreateBy ">
<p class="_splic" >
///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
</p>
......
......@@ -40,11 +40,11 @@
<div class="cm_content">
<table class="singeRowTable" border="0" cellspacing="0" cellpadding="0" v-loading="loading">
<tr>
<th width="250">财务单据</th>
<th width="150">财务单据</th>
<th >收据编码</th>
<th >交款人</th>
<th width="100">金额</th>
<th>收款事由</th>
<th width='550'>收款事由</th>
<th>状态</th>
<th>认领码</th>
<th>甲鹤用户</th>
......
......@@ -159,7 +159,7 @@
<q-select class="col-12 q-pb-lg q-pr-lg" multiple clearable filled stack-label use-input use-chips
option-value="Id" option-label="Name" v-model="tempManager"
:rules="[(val) => !!val || '请选择相关流程']" :options="SingleList" label="相关流程" :dense="false" emit-value
map-options @input="getIds">
map-options >
</q-select>
</div>
......@@ -244,13 +244,13 @@
this.apipost('FinancialFlowTemplate_post_GetSingleList', {}, res => {
if (res.data.resultCode == 1) {
this.SingleList = res.data.data;
this.SingleList.unshift({
Id: -1,
Name: "不限",
});
this.SingleList.forEach(x => {
x.disable = false
})
// this.SingleList.unshift({
// Id: -1,
// Name: "不限",
// });
// this.SingleList.forEach(x => {
// x.disable = false
// })
} else { }
}, err => { })
},
......@@ -262,7 +262,7 @@
geteject() {
this.addMsg = JSON.parse(JSON.stringify(this.baseObj))
this.tempManager = this.addMsg.TempleteIds.split(',').map(Number)
this.getIds()
// this.getIds()//去掉不限 这里注释掉不处理
this.isShowBaseSet = true;
},
getIds(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment