This commit is contained in:
timorls 2022-01-05 16:41:55 +08:00
parent 7e15e081a1
commit 4ddf8e1277
4 changed files with 14628 additions and 486 deletions

15072
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -26,7 +26,7 @@
</el-card>
<el-row class="info" style="height: calc(100% - 260px)">
<el-card style="height: 100%">
<el-card style="height: 100%;overflow:auto">
<step-state
:data="data"
@mode="mode"
@ -57,7 +57,7 @@
:disabled="step === 0 ? true : false"
>上一步</el-button
>
<el-button type="primary" @click="save">{{
<el-button type="primary" @click="save" :disabled="!saveState">{{
step === 3 ? "提交" : "下一步"
}}</el-button>
</el-row>
@ -186,7 +186,6 @@ export default {
margin-top: 40px;
::v-deep .el-card__body {
height: calc(100% - 40px);
display: flex;
justify-content: center;
}

View File

@ -16,9 +16,9 @@
<span class="block">3. 单位</span>
<i class="el-icon-warning warning" slot="reference" />
</el-popover>
<span style="float:right">单位: </span>
<span style="float: right">单位: </span>
</p>
<el-row style="align-items: flex-start">
<el-col :span="3">
<el-tag
@ -43,6 +43,17 @@
:height.sync="height"
:label="prop"
/>
<div v-if="prop === '补充数据表'" style="margin-top: 10px">
<p>备注</p>
<el-row type="flex" justify="space-between">
<p class="block" v-for="(item, index) in prompt" :key="index">
{{ index }}
<span class="block" v-for="(child, i) in item" :key="i">
{{ child }}
</span>
</p>
</el-row>
</div>
</el-col>
</el-row>
</div>
@ -60,6 +71,22 @@ export default {
prop: "资产负债表",
height: 0,
success: [false, false, false],
prompt: {
研发费用: [
"1.此科目可见于利润表-营业总成本-其他业务成本-研发费用",
"2.若没有统计此科目则默认为0",
],
计入财务费的利息支出: [
"1.此科目特指计入财务费用的利息支出,在利润表财务费用下可以找到",
"2.若财务费用为负数则此科目默认为0",
"3.若没有找到财务费用下的利息支出,可填写财务费用做为替代",
],
资本化利息支出: [
"1.资本化利息是为获取或建造长期资产而借入的成本",
"2.此科目可见于资产负债表-非流动资产-在建工程合计-资本化利息支出",
"3.若没有找到此科目则默认为0",
],
},
};
},
@ -146,8 +173,8 @@ export default {
justify-content: center;
i {
position: absolute;
left: 10px;
position: absolute;
left: 10px;
}
}

View File

@ -122,7 +122,7 @@
</el-tabs>
<el-dialog :visible.sync="visible">
<p>企业评价尚未完成公司数据暂无数据</p>
<p>企业暂无综合信用评价信息请选择并完成评价服务</p>
<span slot="footer" class="dialog-footer">
<el-button @click="visible = false">知道了</el-button>
<el-button type="primary" @click="toAppraisal">完成评价</el-button>