| | |
| | | |
| | | const user = { |
| | | state: { |
| | | id: getStore({ |
| | | name: 'id' |
| | | }), |
| | | userInfo: getStore({ |
| | | name: 'userInfo' |
| | | }) || {}, |
| | |
| | | } |
| | | }, |
| | | mutations: { |
| | | SET_ID: (state, id) => { |
| | | state.id = id |
| | | setStore({ |
| | | name:'id', |
| | | content: state.id, |
| | | type: 'session' |
| | | }) |
| | | }, |
| | | SET_ACCESS_TOKEN: (state, access_token) => { |
| | | state.access_token = access_token |
| | | setStore({ |
| | |
| | | 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%" |
| | |
| | | this.$router.push({ |
| | | path: '/padWord', |
| | | query: { |
| | | id: row.id, |
| | | //id: row.id, |
| | | name:row.casePoint |
| | | } |
| | | }) |
| | | this.$store.commit('SET_ID',row.id) |
| | | }, |
| | | //打开新增弹框 |
| | | getById(){ |
| | |
| | | <el-tabs type="border-card" style="margin-top: 10px!important;" v-model="activeName" @tab-click="handleClick" |
| | | :stretch="true"> |
| | | <el-tab-pane label="调查询问笔录" name="first"> |
| | | <BiLu v-if="id" :id="id"></BiLu> |
| | | <BiLu v-if="activeName == 'first'"></BiLu> |
| | | </el-tab-pane> |
| | | <el-tab-pane label="责令限期改正通知书" name="second"> |
| | | <GaiZheng v-if="id" :id="id"></GaiZheng> |
| | | <GaiZheng v-if="activeName == 'second'"></GaiZheng> |
| | | </el-tab-pane> |
| | | <el-tab-pane label="处罚决定书" name="third"> |
| | | <JueDingShu v-if="id" :id="id"></JueDingShu> |
| | | <JueDingShu v-if="activeName == 'third'"></JueDingShu> |
| | | </el-tab-pane> |
| | | </el-tabs> |
| | | </div> |
| | |
| | | }, |
| | | data() { |
| | | return { |
| | | id: '', |
| | | form:{ |
| | | id:'' |
| | | }, |
| | |
| | | created() { |
| | | if (this.$route.query) { |
| | | this.$nextTick(() => { |
| | | this.id = this.$route.query.id |
| | | console.log(this.id,'id==========') |
| | | this.name1 = this.$route.query.name |
| | | }) |
| | | } |
| | |
| | | },*/ |
| | | handleClick(tab, event) { |
| | | console.log(tab, event); |
| | | this.activeName = tab.name |
| | | } |
| | | } |
| | | } |
| | |
| | | |
| | | export default { |
| | | name: "mangeBL", |
| | | props: ['id'], |
| | | data() { |
| | | return { |
| | | id:'', |
| | | value1: [], |
| | | form: { |
| | | causePoint: "", |
| | |
| | | }, |
| | | } |
| | | }, |
| | | created() { |
| | | mounted() { |
| | | this.id = this.$store.state.user.id |
| | | this.getDataList() |
| | | window.getSignUrl =this.getSignUrl; |
| | | window.getFingerUrl =this.getFingerUrl; |
| | |
| | | },*/ |
| | | methods: { |
| | | getDataList() { |
| | | this.$nextTick(()=>{ |
| | | // console.log(this.id,'this.id') |
| | | inquiryquestion(this.id).then(res => { |
| | | this.form = res.data.data |
| | | this.value1.push(res.data.data.startTime) |
| | | this.value1.push(res.data.data.endTime) |
| | | this.form = res.data.data |
| | | this.value1.push(res.data.data.startTime) |
| | | this.value1.push(res.data.data.endTime) |
| | | }) |
| | | }) |
| | | |
| | | }, |
| | | // 点击添加 |
| | |
| | | |
| | | export default { |
| | | name: "mangeGZ", |
| | | props:['id'], |
| | | data(){ |
| | | return{ |
| | | id:'', |
| | | form:{ |
| | | unitName:"", |
| | | litigant:"", |
| | |
| | | }, |
| | | } |
| | | }, |
| | | created() { |
| | | mounted() { |
| | | this.id = this.$store.state.user.id |
| | | this.getDataList() |
| | | }, |
| | | methods:{ |
| | |
| | | |
| | | export default { |
| | | name: "mangeJD", |
| | | props: ['id'], |
| | | data() { |
| | | return { |
| | | id:'', |
| | | form: { |
| | | unitName: "", |
| | | litigant: "", |
| | |
| | | } |
| | | } |
| | | }, |
| | | created() { |
| | | mounted() { |
| | | this.id = this.$store.state.user.id |
| | | this.init(); |
| | | }, |
| | | methods: { |
| | |
| | | }, |
| | | //点击保存数据 |
| | | dataFormSubmit() { |
| | | this.form.startTime = this.value1[0] |
| | | this.form.endTime = this.value1[1] |
| | | this.form.registerId = this.id |
| | | /*this.form.startTime = this.value1[0] |
| | | this.form.endTime = this.value1[1]*/ |
| | | //this.form.registerId = this.id |
| | | inquiry(this.form).then(res => { |
| | | if (res.data.code == 0) { |
| | | this.$message.success("保存成功"); |