From 77bbb07044f0e139c20c979c39682c751b7ea0d4 Mon Sep 17 00:00:00 2001 From: yang <1441163367@qq.com> Date: 星期三, 02 十一月 2022 03:33:05 +0800 Subject: [PATCH] 修改新增简易案件问题 --- src/views/padSunmaryProcedure/index.vue | 62 ++++++++++++++++-------------- 1 files changed, 33 insertions(+), 29 deletions(-) diff --git a/src/views/padSunmaryProcedure/index.vue b/src/views/padSunmaryProcedure/index.vue index f6b6b0a..a3b64ca 100644 --- a/src/views/padSunmaryProcedure/index.vue +++ b/src/views/padSunmaryProcedure/index.vue @@ -5,7 +5,7 @@ <el-input v-model="formInline.litigant" placeholder="瀹℃壒浜�"></el-input> </el-form-item> <el-form-item label="鐢佃瘽"> - <el-input v-model="formInline.user" placeholder="瀹℃壒浜�"></el-input> + <el-input v-model="formInline.phone" placeholder="鐢佃瘽"></el-input> </el-form-item> <el-form-item> <el-button type="primary" @click="getDataList(0)">鏌ヨ</el-button> @@ -36,13 +36,13 @@ min-width="22%" ></el-table-column> <el-table-column - prop="unitName" + prop="createTime" label="鎻愪氦鏃堕棿" sortable min-width="18%" ></el-table-column> <el-table-column - prop="caseSource" + prop="hanlders" label="鎵ф硶浜�" :show-overflow-tooltip="true" min-width="18%" @@ -74,14 +74,14 @@ data() { return { - isShow:false, + isShow: false, formInline: { litigant: '', phone: '' }, - pageSize:10, - pageIndex:1, - total:10, + pageSize: 10, + pageIndex: 1, + total: 10, tableHeight: 460, tableData: [] } @@ -90,38 +90,42 @@ this.getDataList(0) }, methods: { + /*look(){ + // this.formInline.phone =1111 + this.formInline.phone = window.android.getAppToken() + },*/ // 鏌ヨ鍒楄〃 - getDataList(type){ + getDataList(type) { // this.$nextTick(()=>{ - if(type==0){ - this.formInline.type = type - // this.formInline.user=222 - getObj(this.formInline).then(res =>{ - this.tableData =res.data.data.records - }) - }else { - // this.formInline.user=333 - getObj().then(res =>{ - this.tableData =res.data.data.records - }) - } + if (type == 0) { + this.formInline.type = type + getObj(this.formInline).then(res => { + this.tableData = res.data.data.records + }) + this.formInline.litigant = 222 + } else { + // this.formInline.user=333 + getObj().then(res => { + this.tableData = res.data.data.records + }) + } // }) }, //鐐瑰嚮鐐硅烦杞煡鐪� - rowget(row,column) { - /*console.log(row,'row===') - console.log(column,'column===')*/ - // this.$router.push({name: 'process_manage', params: {name: id}}) + rowget(row, column) { + // if (row.casePoint){ this.$router.push({ path: '/padWord', query: { - id: row.id, - name:row.casePoint + name: row.casePoint, } }) + this.$store.commit('SET_ID', row.id) + // } + }, //鎵撳紑鏂板寮规 - getById(){ + getById() { this.$router.push({ path: '/fromAdd', }) @@ -146,7 +150,7 @@ </script> <style lang="scss" scoped> -#box{ - font-size: 30px!important; +#box { + font-size: 30px !important; } </style> -- Gitblit v1.9.1