|
@@ -18,11 +18,6 @@
|
|
|
{{ (queryParams.pageNum - 1) * queryParams.pageSize + scope.$index + 1 }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="上报时段" align="center" prop="tblx">
|
|
|
- <template slot-scope="scope">
|
|
|
- <dict-tag :options="dict.type.CWTB003" :value="scope.row.tblx"/>
|
|
|
- </template>
|
|
|
- </el-table-column>
|
|
|
<el-table-column label="登记时间" align="center" prop="djsj" width="180">
|
|
|
<template slot-scope="scope">
|
|
|
<span>{{ special(scope.row.djsj) }}</span>
|
|
@@ -43,26 +38,6 @@
|
|
|
</el-table-column>
|
|
|
</el-table>
|
|
|
|
|
|
- <el-dialog title="选择填报时段" :visible.sync="innerVisible">
|
|
|
- <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
- <el-form-item label="填报时段" prop="tblx">
|
|
|
- <!-- <el-input v-model="form.tblx" placeholder="请输入填报时段"/>-->
|
|
|
- <el-select v-model="form.tblx" placeholder="请选择填报时段">
|
|
|
- <el-option
|
|
|
- v-for="dict in dict.type.CWTB003"
|
|
|
- :key="dict.value"
|
|
|
- :label="dict.label"
|
|
|
- :value="dict.value"
|
|
|
- ></el-option>
|
|
|
- </el-select>
|
|
|
- </el-form-item>
|
|
|
- </el-form>
|
|
|
- <div slot="footer" class="dialog-footer">
|
|
|
- <el-button @click="innerVisible = false">取 消</el-button>
|
|
|
- <el-button type="primary" :disabled="form.tblx?false:true" @click="handleAdd">确定</el-button>
|
|
|
- </div>
|
|
|
- </el-dialog>
|
|
|
-
|
|
|
<!-- 添加或修改先进个人管理对话框 -->
|
|
|
<el-dialog v-dialog-drag :title="title" :visible.sync="open" width="1600px" append-to-body>
|
|
|
<el-form class="add-form" ref="form" :model="form" :rules="rules" :disabled="true" label-width="180px" :inline="true">
|
|
@@ -101,7 +76,7 @@ import { decryptData_ECB, decryptRowData_ECB } from "@/api/tool/sm4";
|
|
|
|
|
|
export default {
|
|
|
name: "Xjgrgl",
|
|
|
- dicts: [ 'C0038','CH010','CWTB001','CWTB002','CWTB003','CWTB004','CWTB005'],
|
|
|
+ dicts: [ 'C0038','CH010','CWTB001','CWTB003','CWTB004','CWTB005'],
|
|
|
data() {
|
|
|
return {
|
|
|
outerVisible: false,
|
|
@@ -179,7 +154,6 @@ export default {
|
|
|
{
|
|
|
label:'机构-基本信息',child:[
|
|
|
{key:'djsj',label:'登记时间',value:'',type:'date'},
|
|
|
- // {key:'tblx',label:'填报类型',value:'',type:'select',dict:'CWTB002'},
|
|
|
{key:'djbm',label:'登记部门',value:''},
|
|
|
{key:'tyxydm',label:'统一社会信用代码',value:''},
|
|
|
{key:'dwmc',label:'单位名称',value:''},
|
|
@@ -396,26 +370,6 @@ export default {
|
|
|
}
|
|
|
})
|
|
|
},
|
|
|
- // /** 季度填报新增按钮操作 */
|
|
|
- // handleAddJD() {
|
|
|
- // this.reset();
|
|
|
- // getJbxx().then(response => {
|
|
|
- // this.form = decryptData_ECB(response.data,["fddbr","dh", "dz"], [1, 3, 4])
|
|
|
- // this.form.tblx='02';
|
|
|
- // });
|
|
|
- // this.open = true;
|
|
|
- // this.title = "添加【季度】财政报表";
|
|
|
- // },
|
|
|
- // /** 年度填报新增按钮操作 */
|
|
|
- // handleAddND() {
|
|
|
- // this.reset();
|
|
|
- // getJbxx().then(response => {
|
|
|
- // this.form = decryptData_ECB(response.data,["fddbr","dh", "dz"], [1, 3, 4])
|
|
|
- // this.form.tblx='03';
|
|
|
- // });
|
|
|
- // this.open = true;
|
|
|
- // this.title = "添加【年度】财政报表";
|
|
|
- // },
|
|
|
/** 修改按钮操作 */
|
|
|
handleUpdate(row) {
|
|
|
this.reset();
|