|
@@ -119,7 +119,7 @@
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column label="更新时间" align="center" prop="updateTime">
|
|
<el-table-column label="更新时间" align="center" prop="updateTime">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
- <el-table-column label="更信任" align="center" prop="updateBy">
|
|
|
|
|
|
+ <el-table-column label="更新人" align="center" prop="updateBy">
|
|
</el-table-column>
|
|
</el-table-column>
|
|
<el-table-column
|
|
<el-table-column
|
|
fixed="right"
|
|
fixed="right"
|
|
@@ -185,14 +185,21 @@
|
|
</el-select>
|
|
</el-select>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
- <el-form-item label="固定资产投资" prop="gdzctz">
|
|
|
|
- <el-input
|
|
|
|
- v-model="form.gdzctz"
|
|
|
|
- placeholder="请输入固定资产投资"
|
|
|
|
- ></el-input>
|
|
|
|
|
|
+ <el-form-item label="年月" prop="dateValue">
|
|
|
|
+ <el-date-picker
|
|
|
|
+ v-model="form.dateValue"
|
|
|
|
+ type="month"
|
|
|
|
+ @change="changeDate"
|
|
|
|
+ value-format="yyyy-MM"
|
|
|
|
+ format="yyyy 年 MM 月"
|
|
|
|
+ placeholder="选择年月"
|
|
|
|
+ >
|
|
|
|
+ </el-date-picker>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+
|
|
<el-col :span="12">
|
|
<el-col :span="12">
|
|
<el-form-item label="资产分类 " prop="zcfl">
|
|
<el-form-item label="资产分类 " prop="zcfl">
|
|
<el-input
|
|
<el-input
|
|
@@ -249,6 +256,14 @@
|
|
></el-input>
|
|
></el-input>
|
|
</el-form-item>
|
|
</el-form-item>
|
|
</el-col>
|
|
</el-col>
|
|
|
|
+ <el-col :span="12">
|
|
|
|
+ <el-form-item label="固定资产投资" prop="gdzctz">
|
|
|
|
+ <el-input
|
|
|
|
+ v-model="form.gdzctz"
|
|
|
|
+ placeholder="请输入固定资产投资"
|
|
|
|
+ ></el-input>
|
|
|
|
+ </el-form-item>
|
|
|
|
+ </el-col>
|
|
</el-row>
|
|
</el-row>
|
|
</el-form>
|
|
</el-form>
|
|
</el-tab-pane>
|
|
</el-tab-pane>
|
|
@@ -437,6 +452,9 @@ export default {
|
|
deptId: [
|
|
deptId: [
|
|
{ required: true, message: "部门id不能为空", trigger: "blur" },
|
|
{ required: true, message: "部门id不能为空", trigger: "blur" },
|
|
],
|
|
],
|
|
|
|
+ dateValue: [
|
|
|
|
+ { required: true, message: "年月不能为空", trigger: "blur" },
|
|
|
|
+ ],
|
|
gmysgycz: [
|
|
gmysgycz: [
|
|
{
|
|
{
|
|
required: true,
|
|
required: true,
|
|
@@ -585,6 +603,9 @@ export default {
|
|
yfywjckz: null,
|
|
yfywjckz: null,
|
|
zlmyjckz: null,
|
|
zlmyjckz: null,
|
|
kjdsywjckz: null,
|
|
kjdsywjckz: null,
|
|
|
|
+ dateValue: null,
|
|
|
|
+ year:null,
|
|
|
|
+ month:null
|
|
};
|
|
};
|
|
this.resetForm("form");
|
|
this.resetForm("form");
|
|
},
|
|
},
|
|
@@ -604,6 +625,12 @@ export default {
|
|
this.single = selection.length !== 1;
|
|
this.single = selection.length !== 1;
|
|
this.multiple = !selection.length;
|
|
this.multiple = !selection.length;
|
|
},
|
|
},
|
|
|
|
+ changeDate(val){
|
|
|
|
+ this.form.year = this.form.dateValue.slice(0,4)
|
|
|
|
+ console.log('年'+this.form.year);
|
|
|
|
+ this.form.month = this.form.dateValue.slice(5)
|
|
|
|
+ console.log('月'+this.form.month);
|
|
|
|
+ },
|
|
/** 新增按钮操作 */
|
|
/** 新增按钮操作 */
|
|
handleAdd() {
|
|
handleAdd() {
|
|
this.reset();
|
|
this.reset();
|
|
@@ -612,7 +639,7 @@ export default {
|
|
},
|
|
},
|
|
/** 修改按钮操作 */
|
|
/** 修改按钮操作 */
|
|
handleUpdate(row) {
|
|
handleUpdate(row) {
|
|
- this.activeName = 'first';
|
|
|
|
|
|
+ this.activeName = "first";
|
|
this.reset();
|
|
this.reset();
|
|
const id = row.id || this.ids;
|
|
const id = row.id || this.ids;
|
|
getENTERPRISETRADEPERFORMANCE(id).then((response) => {
|
|
getENTERPRISETRADEPERFORMANCE(id).then((response) => {
|