|
|
@@ -776,11 +776,11 @@
|
|
|
<el-radio :label="0">{{ $t('Exportbyproject') }}</el-radio>
|
|
|
<el-radio :label="1">{{ $t('Exportbprojectcategory') }}</el-radio>
|
|
|
</el-radio-group>
|
|
|
- <div style="margin-top: 20px;">
|
|
|
+ <div style="margin-top: 20px;" v-if="groupByCategory==0">
|
|
|
<el-checkbox v-model="personnelAllocation">含人员分摊明细</el-checkbox>
|
|
|
</div>
|
|
|
- <div style="margin-top: 20px;">
|
|
|
- <span style="margin-right: 10px;">项目数据精度:保留小数点后</span>
|
|
|
+ <div style="margin-top: 20px;" v-if="groupByCategory==0">
|
|
|
+ <span style="margin-right: 10px;">项目成本金额保留至小数点后</span>
|
|
|
<el-select v-model="exportScale" size="small" style="width: 120px;">
|
|
|
<el-option :value="2" label="2位"></el-option>
|
|
|
<el-option :value="3" label="3位"></el-option>
|
|
|
@@ -2143,7 +2143,6 @@ export default {
|
|
|
yearMonth: this.date
|
|
|
},
|
|
|
res => {
|
|
|
- this.listLoading = false;
|
|
|
if (res.code == "ok") {
|
|
|
// console.log(res.data, '审核状态')
|
|
|
if (res.data) {
|
|
|
@@ -2173,7 +2172,6 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
error => {
|
|
|
- this.listLoading = false;
|
|
|
this.$message({
|
|
|
message: error,
|
|
|
type: "error"
|