Commit 20808809 authored by youjie's avatar youjie

no message

parent ea4d2a34
......@@ -399,7 +399,6 @@ html, body{
flex: 1;
}
.travelDaysdetails-textBox:last-child .travelDaysdetails-text{
font-size: 14px;
height: 105px;
word-break: break-all;
text-overflow: ellipsis;
......@@ -414,7 +413,6 @@ html, body{
}
.travelDaysdetails-text0 {
font-size: 21px;
font-family: PingFang SC;
font-weight: 800;
color: #2A2A2A;
......@@ -423,7 +421,7 @@ html, body{
}
.travelDaysdetails-text {
font-size: 21px;
font-size: 16px;
font-weight: 100;
color: #2A2A2A;
line-height: 34px;
......@@ -431,10 +429,9 @@ html, body{
display: inline-block;
padding: 0;
margin: 0;
margin-right: 10px;
}
.travelDaysdetails-text1{
font-size: 21px !important;
font-size: 16px !important;
font-weight: 100 !important;
color: #2A2A2A;
}
......
......@@ -217,7 +217,8 @@
</div>
<div slot="footer" class="dialog-footer">
<button class="hollowFixedBtn" @click="iszhidanBox=false">{{$t('pub.cancelBtn')}}</button>
<button class="normalBtn" type="primary" @click="getMaking()">{{$t('pub.sureBtn')}}</button>
<el-button class="normalBtn" type="primary" @click="getMaking()"
:loading="loadingStandard">{{$t('pub.sureBtn')}}</el-button>
</div>
</template>
</el-dialog>
......@@ -256,6 +257,7 @@
export default {
data() {
return {
loadingStandard: false,
showDialog: false,
shezhiMsg: {
FinanceId: 0,
......@@ -460,11 +462,13 @@
this.getMoney()
this.BillMakingMsg.Money = this.totalZD
this.iszhidanBox = true
this.loadingStandard = true
this.apipost('Financial_post_SetFinanceHandFeeCode', {
FrIds: ids.join(',')
}, res => {
if (res.data.resultCode == 1) {
this.BillMakingMsg.StandardCurrencyName = res.data.data
this.loadingStandard = false
// this.showDialog = true
} else {
this.Error(res.data.message);
......@@ -524,8 +528,10 @@
},
//设置转交
getMaking() {
this.iszhidanBox = false;
this.makeAdocument(1)
if(!this.loadingStandard&&this.BillMakingMsg.StandardCurrencyName){
this.iszhidanBox = false;
this.makeAdocument(1)
}
},
// 制作单据
makeAdocument(num, StandardCurrencyName) {
......
......@@ -124,7 +124,7 @@
{{getHtmlPlainText(t.content).text}}
</template>
<!-- <div class="travelDaysdetails-text1" v-if="t.content!=''" v-html="t.content"></div> -->
<p v-else style="font-size: 21px;">暂无提示</p>
<p v-else>暂无提示</p>
</div>
</div>
</template>
......
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