md
This commit is contained in:
parent
9841af8fa4
commit
a5675f7e0e
@ -112,7 +112,7 @@
|
||||
</el-table-column>
|
||||
<el-table-column :label="$t('开票状态')" align="center" prop="openChStatus" width="100" :show-overflow-tooltip="true" >
|
||||
<template slot-scope="scope">
|
||||
<el-tag v-if="scope.row.openChStatus==-1" type="error" >发送异常</el-tag>
|
||||
<el-tag v-if="scope.row.openChStatus==-1" type="error" >开票异常</el-tag>
|
||||
<el-tag v-if="scope.row.openChStatus==0" type="info" >未发送</el-tag>
|
||||
<el-tag v-if="scope.row.openChStatus==1" type="info" >已发送</el-tag>
|
||||
<el-tag v-if="scope.row.openChStatus==2" type="success" >开票成功</el-tag>
|
||||
|
||||
@ -122,7 +122,24 @@
|
||||
</div>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
|
||||
<el-col :span="12">
|
||||
<el-form-item label="启用状态" prop="blOpen">
|
||||
<el-radio-group v-model="form.blOpen">
|
||||
<el-radio :label="'1'">启用</el-radio>
|
||||
<el-radio :label="'0'">停用</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
<el-col :span="12">
|
||||
<el-form-item label="剔除自提" prop="blIgnoreZt">
|
||||
<el-radio-group v-model="form.blIgnoreZt">
|
||||
<el-radio :label="'1'">是</el-radio>
|
||||
<el-radio :label="'0'">否</el-radio>
|
||||
</el-radio-group>
|
||||
</el-form-item>
|
||||
</el-col>
|
||||
|
||||
|
||||
<el-col :span="24">
|
||||
<el-form-item label="备注" prop="remark">
|
||||
@ -234,16 +251,6 @@ export default {
|
||||
|
||||
methods: {
|
||||
initData() {
|
||||
|
||||
// this.feeTypeList=[];
|
||||
// this.feeTypeList=this.dict.type.emis_cost_fee_type.map(item=>{
|
||||
// if(item.value=='1002' || item.value=='1004'){
|
||||
// return item;
|
||||
// }
|
||||
// });
|
||||
|
||||
console.log()
|
||||
|
||||
if(this.id !=null) {
|
||||
this.loading = true;
|
||||
getEmisTmsCostQuotePrice(this.id).then(response => {
|
||||
@ -252,8 +259,9 @@ export default {
|
||||
});
|
||||
}else{
|
||||
this.reset();
|
||||
this.form.blIgnoreZt="0";
|
||||
this.form.blOpen="1";
|
||||
}
|
||||
// this.getTreeselect();
|
||||
},
|
||||
// 取消按钮
|
||||
cancel() {
|
||||
@ -284,6 +292,7 @@ export default {
|
||||
startDate: null,
|
||||
endDate: null,
|
||||
blOpen: null,
|
||||
blIgnoreZt: null,
|
||||
remark: null,
|
||||
tenantId: null,
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user