|
@@ -94,7 +94,7 @@
|
|
|
</div>
|
|
|
<div class="Entry-form-li">
|
|
|
<div class="Entry-li-lables">
|
|
|
- <el-checkbox v-model="choiceTwo"></el-checkbox>
|
|
|
+ <!-- <el-checkbox v-model="choiceTwo"></el-checkbox> -->
|
|
|
<div class="li-lable">二、国际旅费合计:</div>
|
|
|
<div style="display: flex;">
|
|
|
<div class="li-lable">
|
|
@@ -215,6 +215,13 @@
|
|
|
<el-table-column
|
|
|
prop="address"
|
|
|
label="操 作">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ style="color: #fff;"
|
|
|
+ size="mini"
|
|
|
+ type="danger"
|
|
|
+ @click="deleteRow(scope.$index,scope.row,quarterageData,1 )">删除</el-button>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
@@ -298,6 +305,13 @@
|
|
|
<el-table-column
|
|
|
prop="address"
|
|
|
label="操 作">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ style="color: #fff;"
|
|
|
+ size="mini"
|
|
|
+ type="danger"
|
|
|
+ @click="deleteRow(scope.$index,scope.row,boardWagesData,2 )">删除</el-button>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
@@ -381,6 +395,13 @@
|
|
|
<el-table-column
|
|
|
prop="address"
|
|
|
label="操 作">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ style="color: #fff;"
|
|
|
+ size="mini"
|
|
|
+ type="danger"
|
|
|
+ @click="deleteRow(scope.$index,scope.row,miscellaneousFeeData,3 )">删除</el-button>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
@@ -458,29 +479,36 @@
|
|
|
label="费用小计"
|
|
|
width="180">
|
|
|
<template slot-scope="scope">
|
|
|
- <div class="sub-boxs">{{scope.row.subTotal|numFilter}}</div>
|
|
|
+ <div class="sub-boxs">{{scope.row.subTotal|numFilter}}</div> CNY
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column
|
|
|
prop="address"
|
|
|
label="操 作">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <el-button
|
|
|
+ style="color: #fff;"
|
|
|
+ size="mini"
|
|
|
+ type="danger"
|
|
|
+ @click="deleteRow(scope.$index,scope.row,trainingExpenseData,4 )">删除</el-button>
|
|
|
+ </template>
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="Entry-form-li">
|
|
|
<div class="Entry-li-lables">
|
|
|
- <div class="li-lable">七、费用总计:</div>
|
|
|
+ <div class="li-lable">费用总计:</div>
|
|
|
<div style="display: flex;">
|
|
|
<div class="li-lable">
|
|
|
- <el-checkbox style="margin-right: -10px;" v-model="airJJC_Checked"></el-checkbox>
|
|
|
+ <!-- <el-checkbox style="margin-right: -10px;" v-model="airJJC_Checked"></el-checkbox> -->
|
|
|
<label>(经济舱)</label>
|
|
|
<div class="sub-boxs">{{jjctotal|numFilter}}</div>
|
|
|
<span>元/人</span>
|
|
|
</div>
|
|
|
|
|
|
<div class="li-lable">
|
|
|
- <el-checkbox style="margin-right: -10px;" v-model="airGWC_Checked"></el-checkbox>
|
|
|
+ <!-- <el-checkbox style="margin-right: -10px;" v-model="airGWC_Checked"></el-checkbox> -->
|
|
|
<label>(公务舱)</label>
|
|
|
<div class="sub-boxs">{{gwctotal|numFilter}}</div>
|
|
|
<span>元/人</span>
|
|
@@ -493,6 +521,9 @@
|
|
|
</div>
|
|
|
</template>
|
|
|
<script>
|
|
|
+
|
|
|
+import { Decimal } from 'decimal.js'
|
|
|
+
|
|
|
export default {
|
|
|
data() {
|
|
|
return {
|
|
@@ -744,8 +775,8 @@ export default {
|
|
|
that.DomesticFees.insurance=res.data.data.safe;
|
|
|
that.DomesticFees.ticketsExhibitionL=res.data.data.ticket;
|
|
|
//国际旅费
|
|
|
- that.TotalExpenses.EconomyClass=res.data.data.outsideJJPay;
|
|
|
- that.TotalExpenses.BusinessClass=res.data.data.outsaideGWPay;
|
|
|
+ that.TotalExpenses.EconomyClass=res.data.data.airJJ;
|
|
|
+ that.TotalExpenses.BusinessClass=res.data.data.airGW;
|
|
|
that.TotalExpenses.TravellingExpenses=res.data.data.cityTranffic;
|
|
|
|
|
|
//是否计算Checkbox
|
|
@@ -1039,42 +1070,6 @@ export default {
|
|
|
var url = "/api/Groups/PostEnterExitCostOperate"
|
|
|
var that = this
|
|
|
console.log(that.value)
|
|
|
- var data={
|
|
|
- portType: 1,
|
|
|
- userId: that.userId,
|
|
|
- id: that.storageid,
|
|
|
- diId: that.value,
|
|
|
- choiceOne: that.choiceOne?1:0,
|
|
|
- insidePay:that.DomesticFees.total,
|
|
|
- visa: that.DomesticFees.visafees,
|
|
|
- visaRemark: that.DomesticFees.visafeesDescription,
|
|
|
- yiMiao: that.DomesticFees.vaccinefees,
|
|
|
- heSuan: that.DomesticFees.nucleicfees,
|
|
|
- service: that.DomesticFees.serviceCharge,
|
|
|
- ticket: that.DomesticFees.ticketsExhibitionL,
|
|
|
- safe: that.DomesticFees.insurance,
|
|
|
- choiceTwo: that.choiceTwo?1:0,
|
|
|
- sumJJC:that.sumJJC?1:0,
|
|
|
- sumGWC:that.sumGWC?1:0,
|
|
|
- outsideJJPay:that.TotalExpenses.EconomyClasstotal,
|
|
|
- outsaideGWPay:this.TotalExpenses.BusinessClasstotal,
|
|
|
- airJJ:that.jjctotal,
|
|
|
- airGW:that.gwctotal,
|
|
|
- cityTranffic: that.TotalExpenses.TravellingExpenses,
|
|
|
- currencys: that.currencys,
|
|
|
- choiceThree:that.choiceThree?1:0,
|
|
|
- quarterageData: arrthre,
|
|
|
- choiceFour:that.choiceFour?1:0,
|
|
|
- boardWagesData: arrfour,
|
|
|
- choiceFive:that.choiceFive?1:0,
|
|
|
- miscellaneousFeeData:arrfive,
|
|
|
- choiceSix:that.choiceSix?1:0,
|
|
|
- trainingExpenseData:arrsix,
|
|
|
- airJJC_Checked:that.airJJC_Checked?1:0,
|
|
|
- airGWC_Checked:that.airGWC_Checked?1:0,
|
|
|
- }
|
|
|
- console.log(data)
|
|
|
- console.log(JSON.stringify (data))
|
|
|
this.$axios({
|
|
|
method: 'post',
|
|
|
url: url,
|
|
@@ -1099,10 +1094,10 @@ export default {
|
|
|
choiceTwo: that.choiceTwo?1:0,
|
|
|
sumJJC:that.sumJJC?1:0,
|
|
|
sumGWC:that.sumGWC?1:0,
|
|
|
- outsideJJPay:that.jjctotal,
|
|
|
- outsaideGWPay:that.gwctotal,
|
|
|
- airJJ:that.TotalExpenses.EconomyClasstotal,
|
|
|
- airGW:that.TotalExpenses.BusinessClasstotal,
|
|
|
+ outsideJJPay:that.TotalExpenses.EconomyClasstotal,
|
|
|
+ outsaideGWPay:that.TotalExpenses.BusinessClasstotal,
|
|
|
+ airJJ:that.TotalExpenses.EconomyClass,
|
|
|
+ airGW:that.TotalExpenses.BusinessClass,
|
|
|
cityTranffic: that.TotalExpenses.TravellingExpenses,
|
|
|
currencys: that.currencys,
|
|
|
choiceThree:that.choiceThree?1:0,
|
|
@@ -1173,63 +1168,235 @@ export default {
|
|
|
}).then(function (res) {
|
|
|
console.log(res)
|
|
|
if(res.data.code==200){
|
|
|
- window.open(res.data.data.url)
|
|
|
+ that.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: res.data.msg
|
|
|
+ });
|
|
|
+ window.open(res.data.data.url);
|
|
|
+ }else{
|
|
|
+ that.$message.error(res.data.msg);
|
|
|
}
|
|
|
})
|
|
|
- }
|
|
|
+ },
|
|
|
+ calculation(){
|
|
|
+ var jnfy
|
|
|
+ var jjcxj
|
|
|
+ var gwcxj
|
|
|
+ var zsf
|
|
|
+ var hsf
|
|
|
+ var gzf
|
|
|
+ var pxf
|
|
|
+ if (this.choiceOne == true) {
|
|
|
+ jnfy=this.DomesticFees.total;
|
|
|
+ } else {
|
|
|
+ jnfy= 0;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (this.choiceThree == true) {
|
|
|
+ zsf=this.TotalAccommodationFee;
|
|
|
+ } else {
|
|
|
+ zsf= 0;
|
|
|
+ }
|
|
|
+ if (this.choiceFour == true) {
|
|
|
+ hsf=this.TotalMeals;
|
|
|
+ } else {
|
|
|
+ hsf= 0;
|
|
|
+ }
|
|
|
+ if (this.choiceFive == true) {
|
|
|
+ gzf=this.TotalMiscellaneous;
|
|
|
+ } else {
|
|
|
+ gzf= 0;
|
|
|
+ }
|
|
|
+ if (this.choiceSix == true) {
|
|
|
+ pxf=this.trainingExpense;
|
|
|
+ } else {
|
|
|
+ pxf= 0;
|
|
|
+ }
|
|
|
+ if (this.sumJJC == true) {
|
|
|
+ jjcxj=this.TotalExpenses.EconomyClasstotal;
|
|
|
+ this.jjctotal=jnfy+jjcxj+zsf+hsf+gzf+pxf;
|
|
|
+ } else {
|
|
|
+ jjcxj= 0;
|
|
|
+ this.jjctotal=0;
|
|
|
+ }
|
|
|
+ if (this.sumGWC == true) {
|
|
|
+ gwcxj=this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.gwctotal=jnfy+gwcxj+zsf+hsf+gzf+pxf;
|
|
|
+ } else {
|
|
|
+ gwcxj= 0;
|
|
|
+ this.gwctotal=0;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ },
|
|
|
+ //删除
|
|
|
+ deleteRow(index,row,rows,val){
|
|
|
+ console.log(row.id);
|
|
|
+ if(row.id==0){
|
|
|
+ this.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: '删除成功'
|
|
|
+ });
|
|
|
+ rows.splice(index, 1);
|
|
|
+ if(val==1){
|
|
|
+ this.TotalAccommodationFee=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ this.TotalAccommodationFee+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(val==2){
|
|
|
+ this.TotalMeals=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ this.TotalMeals+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(val==3){
|
|
|
+ this.TotalMiscellaneous=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ this.TotalMiscellaneous+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(val==4){
|
|
|
+ this.trainingExpense=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ this.trainingExpense+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ var url = "/api/Groups/PostEnterExitCostSubItemDel"
|
|
|
+ var that = this
|
|
|
+ this.$axios({
|
|
|
+ method: 'post',
|
|
|
+ url: url,
|
|
|
+ headers: {
|
|
|
+ Authorization: 'Bearer ' + that.token
|
|
|
+ },
|
|
|
+ data:{
|
|
|
+ portType: 1,
|
|
|
+ id: row.id,
|
|
|
+ deleteUserId: that.userId
|
|
|
+ }
|
|
|
+ }).then(function (res) {
|
|
|
+ console.log(res)
|
|
|
+ if(res.data.code==200){
|
|
|
+ that.$message({
|
|
|
+ type: 'success',
|
|
|
+ message: res.data.msg
|
|
|
+ });
|
|
|
+ rows.splice(index, 1);
|
|
|
+ if(val==1){
|
|
|
+ that.TotalAccommodationFee=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ that.TotalAccommodationFee+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(val==2){
|
|
|
+ that.TotalMeals=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ that.TotalMeals+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(val==3){
|
|
|
+ that.TotalMiscellaneous=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ that.TotalMiscellaneous+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(val==4){
|
|
|
+ that.trainingExpense=0;
|
|
|
+ for(let a=0;a<rows.length;a++){
|
|
|
+ that.trainingExpense+=rows[a].subTotal;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }else{
|
|
|
+ that.$message.error(res.data.msg);
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
},
|
|
|
filters: {
|
|
|
numFilter (value) {
|
|
|
// 截取当前数据到小数点后两位
|
|
|
- let realVal = parseFloat(value).toFixed(2)
|
|
|
+ let realVal = new Decimal(value).toFixed(2)
|
|
|
return realVal
|
|
|
}
|
|
|
},
|
|
|
watch: {
|
|
|
+ choiceOne(val){//境内费用(其他费用)选择框
|
|
|
+ this.calculation();
|
|
|
+ },
|
|
|
+ choiceThree(val){//住宿费合计选择框
|
|
|
+ this.calculation();
|
|
|
+ },
|
|
|
+ choiceFour(val){//伙食费合计选择框
|
|
|
+ this.calculation();
|
|
|
+ },
|
|
|
+ choiceFive(val){//公杂费合计选择框
|
|
|
+ this.calculation();
|
|
|
+ },
|
|
|
+ choiceSix(val){//培训费用选择框
|
|
|
+ this.calculation();
|
|
|
+ },
|
|
|
+ sumJJC(val){//经济舱小计选择框
|
|
|
+ this.calculation();
|
|
|
+ },
|
|
|
+ sumGWC(val){//公务舱小计选择框
|
|
|
+ this.calculation();
|
|
|
+ },
|
|
|
'DomesticFees.total':{
|
|
|
handler(newVal,oldVal) {
|
|
|
- this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
- this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.calculation();
|
|
|
+ // this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
+ // this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
},
|
|
|
},
|
|
|
TotalAccommodationFee:{
|
|
|
handler(newVal,oldVal) {
|
|
|
- this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
- this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.calculation();
|
|
|
+ // this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
+ // this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
},
|
|
|
|
|
|
},
|
|
|
TotalMeals:{
|
|
|
handler(newVal,oldVal) {
|
|
|
- this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
- this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.calculation();
|
|
|
+ // this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
+ // this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
},
|
|
|
},
|
|
|
TotalMiscellaneous:{
|
|
|
handler(newVal,oldVal) {
|
|
|
- this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
- this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.calculation();
|
|
|
+ // this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
+ // this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
},
|
|
|
},
|
|
|
trainingExpense:{
|
|
|
handler(newVal,oldVal) {
|
|
|
- this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
- this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.calculation();
|
|
|
+ // this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
+ // this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
},
|
|
|
},
|
|
|
'TotalExpenses.EconomyClasstotal':{
|
|
|
handler(newVal,oldVal) {
|
|
|
- this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
- this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.calculation();
|
|
|
+ // this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
+ // this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
},
|
|
|
},
|
|
|
'TotalExpenses.BusinessClasstotal':{
|
|
|
handler(newVal,oldVal) {
|
|
|
- this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
- this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
+ this.calculation();
|
|
|
+ // this.jjctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.EconomyClasstotal;
|
|
|
+ // this.gwctotal=this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal;
|
|
|
// console.log(this.DomesticFees.total+this.TotalAccommodationFee+this.TotalMeals+this.TotalMiscellaneous+this.trainingExpense+this.TotalExpenses.BusinessClasstotal)
|
|
|
},
|
|
|
},
|
|
|
+
|
|
|
//境内费用非空处理
|
|
|
DomesticFees: {
|
|
|
handler(newVal, oldVal) {
|
|
@@ -1277,7 +1444,6 @@ export default {
|
|
|
this.userId=JSON.parse(localStorage.getItem('userinif')).userInfo.userId;
|
|
|
this.GetEnterExitCostDataSource();
|
|
|
this.GetNationalTravelFeeData();
|
|
|
- console.log(this.currencys)
|
|
|
}
|
|
|
}
|
|
|
</script>
|
|
@@ -1305,6 +1471,7 @@ export default {
|
|
|
}
|
|
|
.Entry-li-inif{
|
|
|
display: flex;
|
|
|
+ align-items: center;
|
|
|
width: 100%;
|
|
|
border-top:1px solid #ebeef5;
|
|
|
padding: 5px 0;
|
|
@@ -1336,10 +1503,7 @@ export default {
|
|
|
font-size: 14px;
|
|
|
color: #606266;
|
|
|
}
|
|
|
-.Entry-li-inif span{
|
|
|
- font-size: 14px;
|
|
|
- color: #606266;
|
|
|
-}
|
|
|
+
|
|
|
.Entry-form .redzhu{
|
|
|
font-size: 14px;
|
|
|
color: red;
|
|
@@ -1350,6 +1514,7 @@ export default {
|
|
|
-webkit-user-select: none;
|
|
|
-moz-user-select: none;
|
|
|
font-size: 12px;
|
|
|
+ font-family:"微软雅黑";
|
|
|
user-select: none;
|
|
|
background-color: #FFF;
|
|
|
background-image: none;
|