Commit 20808809 authored by youjie's avatar youjie

no message

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