|
@@ -81,7 +81,7 @@
|
|
|
margin-top: 5px;
|
|
|
font-weight: 700;
|
|
|
border-left: 3px;
|
|
|
- ">支付科目</span>
|
|
|
+ ">支出科目</span>
|
|
|
<template v-if="currentDepartment !== null">
|
|
|
<el-button type="primary" size="small" icon="plus" v-hasPermi="['expenditure:subject:add']"
|
|
|
@click="newSubType">新增</el-button>
|
|
@@ -93,10 +93,10 @@
|
|
|
<div style="height: 100%">
|
|
|
<el-table v-loading="loading" :data="typeSubLis" size="small" border height="100%"
|
|
|
@selection-change="handleSelectionChange">
|
|
|
- <el-table-column label="支付科目" align="center" prop="name">
|
|
|
+ <el-table-column label="支出科目" align="center" prop="name">
|
|
|
<template #default="scope">
|
|
|
<el-input size="small" v-if="scope.row.isAdd || scope.row.isEdit" v-model="scope.row.name"
|
|
|
- placeholder="请输入支付科目"></el-input>
|
|
|
+ placeholder="请输入支出科目"></el-input>
|
|
|
<span v-else>{{ scope.row.name }}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
@@ -259,7 +259,7 @@
|
|
|
return;
|
|
|
}
|
|
|
if (row.name == "" || row.name == null) {
|
|
|
- proxy.$modal.msgError("支付科目不能为空");
|
|
|
+ proxy.$modal.msgError("支出科目不能为空");
|
|
|
return;
|
|
|
}
|
|
|
if (row.status == null || row.status === "") {
|