| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/permit/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export const getListold = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/permit/list', |
| | | method: 'get', |
| | | params: { |
| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/record/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export const getListold = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/record/list', |
| | | method: 'get', |
| | | params: { |
| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/recordk/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | } |
| | | }) |
| | | } |
| | | |
| | | export const getListold = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/recordk/list', |
| | | method: 'get', |
| | | params: { |
| | |
| | | |
| | | export const getList = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/revoke/page', |
| | | method: 'get', |
| | | params: { |
| | | ...params, |
| | | current, |
| | | size, |
| | | } |
| | | }) |
| | | } |
| | | |
| | | |
| | | export const getListold = (current, size, params) => { |
| | | return request({ |
| | | url: '/api/revoke/list', |
| | | method: 'get', |
| | | params: { |
| | |
| | | component: Layout, |
| | | children: [{ |
| | | path: 'index', |
| | | name: '附件查看', |
| | | name: '附件查阅', |
| | | meta: { |
| | | i18n: 'index', |
| | | }, |
| | |
| | | * @Author: liu |
| | | * @Date: 2021-08-26 17:00:55 |
| | | * @Last Modified by: liu |
| | | * @Last Modified time: 2021-09-22 11:24:11 |
| | | * @Last Modified time: 2021-11-05 14:51:45 |
| | | */ |
| | | |
| | | |
| | |
| | | :type="type" |
| | | class="zhengJian-icon" |
| | | @click.stop="handleCredentials(row)" |
| | | >附件审查</el-button |
| | | >附件</el-button |
| | | > |
| | | <el-button |
| | | icon="el-icon-edit" |
| | | :size="size" |
| | | :type="type" |
| | | v-if="row.type == '2'" |
| | | v-if="row.type == '2' && userData == '0'" |
| | | @click.stop="rowDel(row)" |
| | | >备案审批 |
| | | </el-button> |
| | |
| | | {{ |
| | | row.type == "0" ? "通过" : row.type == "1" ? "不通过" : "待审批" |
| | | }} |
| | | <i class="gz" v-if="row.type == '0'"></i> |
| | | <i class="gz" v-if="row.type == '2'"></i> |
| | | <!-- 黄色 --> |
| | | <i class="yj" v-if="row.type == '1'"></i> |
| | | <i class="zc" v-if="row.type == '2'"></i> |
| | | <!-- 红色 --> |
| | | <i class="zc" v-if="row.type == '0'"></i> |
| | | <!-- 绿色 --> |
| | | </el-tag> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | column: column, |
| | | }, |
| | | data: [], |
| | | userData: "", |
| | | }; |
| | | }, |
| | | computed: { |
| | |
| | | // console.log(this.userInfo.dept_id); |
| | | // }, |
| | | methods: { |
| | | changeuserData() { |
| | | // console.log(this.userInfo, "userDatauserDatauserData"); |
| | | if (this.userInfo.Id == "1123598821738675201") { |
| | | this.userData = "0"; |
| | | return; |
| | | } |
| | | var gonganj = ""; |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | let test = /派出所$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "2"; |
| | | } |
| | | test = /分局|公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "1"; |
| | | } |
| | | test = /市公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "0"; |
| | | } |
| | | } |
| | | this.userData = gonganj; |
| | | }, |
| | | Print() { |
| | | this.$Print(this.$refs.licence); |
| | | }, |
| | |
| | | this.onLoad(this.page, this.query); |
| | | }, |
| | | onLoad(page, params = {}) { |
| | | this.changeuserData(); |
| | | this.loading = true; |
| | | // console.log(this.userInfo); |
| | | params["ptype"] = 2; |
| | | params["jurisdiction"] = this.userInfo.jurisdiction; |
| | | params["usetype"] = this.userData; |
| | | |
| | | getList( |
| | | page.currentPage, |
| | | page.pageSize, |
| | |
| | | * @Author: liu |
| | | * @Date: 2021-08-26 17:00:04 |
| | | * @Last Modified by: liu |
| | | * @Last Modified time: 2021-09-22 11:23:44 |
| | | * @Last Modified time: 2021-11-05 15:24:32 |
| | | */ |
| | | |
| | | |
| | |
| | | :type="type" |
| | | class="zhengJian-icon" |
| | | @click.stop="handleCredentials(row)" |
| | | >附件查阅 |
| | | >附件 |
| | | </el-button> |
| | | <el-button |
| | | icon="el-icon-edit" |
| | | :size="size" |
| | | :type="type" |
| | | @click.stop="rowDel(row)" |
| | | v-if="row.type == '2'" |
| | | v-if="row.type == '2' && userData == '0'" |
| | | >撤销备案审批 |
| | | </el-button> |
| | | </template> |
| | |
| | | {{ |
| | | row.type == "0" ? "通过" : row.type == "1" ? "不通过" : "待审核" |
| | | }} |
| | | <i class="gz" v-if="row.type == '0'"></i> |
| | | <i class="gz" v-if="row.type == '2'"></i> |
| | | <!-- 黄色 --> |
| | | <i class="yj" v-if="row.type == '1'"></i> |
| | | <i class="zc" v-if="row.type == '2'"></i> |
| | | <!-- 红色 --> |
| | | <i class="zc" v-if="row.type == '0'"></i> |
| | | <!-- 绿色 --> |
| | | </el-tag> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | column: column, |
| | | }, |
| | | data: [], |
| | | userData: "", |
| | | }; |
| | | }, |
| | | computed: { |
| | |
| | | // console.log(this.userInfo.dept_id); |
| | | // }, |
| | | methods: { |
| | | changeuserData() { |
| | | // console.log(this.userInfo, "userDatauserDatauserData"); |
| | | if (this.userInfo.Id == "1123598821738675201") { |
| | | this.userData = "0"; |
| | | return; |
| | | } |
| | | var gonganj = ""; |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | let test = /派出所$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "2"; |
| | | } |
| | | test = /分局|公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "1"; |
| | | } |
| | | test = /市公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "0"; |
| | | } |
| | | } |
| | | this.userData = gonganj; |
| | | }, |
| | | Print() { |
| | | this.$Print(this.$refs.licence); |
| | | }, |
| | |
| | | path: "/attachOnce/index", |
| | | // redirect: { name: "foo" }, |
| | | // query: { row: row }, |
| | | query: { deptid: row.cardid, type: "6" }, |
| | | query: { deptid: row.cardid, type: "4" }, |
| | | // params: { row: row.identificationnumber }, |
| | | }); |
| | | }, |
| | |
| | | this.onLoad(this.page, this.query); |
| | | }, |
| | | onLoad(page, params = {}) { |
| | | this.changeuserData(); |
| | | this.loading = true; |
| | | params["ptype"] = 4; |
| | | params["jurisdiction"] = this.userInfo.jurisdiction; |
| | | params["usetype"] = this.userData; |
| | | getList( |
| | | page.currentPage, |
| | | page.pageSize, |
| | |
| | | // }, |
| | | // ], |
| | | // }, |
| | | { |
| | | label: "登记机关", |
| | | prop: "registration", |
| | | overHidden: true, |
| | | rules: [ |
| | | { |
| | | required: true, |
| | | message: "请输入登记机关", |
| | | trigger: "blur", |
| | | }, |
| | | ], |
| | | }, |
| | | // { |
| | | // label: "登记机关", |
| | | // prop: "registration", |
| | | // overHidden: true, |
| | | // rules: [ |
| | | // { |
| | | // required: true, |
| | | // message: "请输入登记机关", |
| | | // trigger: "blur", |
| | | // }, |
| | | // ], |
| | | // }, |
| | | { |
| | | label: "所属行业", |
| | | hide: true, |
| | |
| | | ], |
| | | }, |
| | | { |
| | | label: "经营范围", |
| | | label: "审批意见", |
| | | prop: "approve", |
| | | overHidden: true |
| | | // addDisplay: false, |
| | | // type: "select", |
| | | // dicData: [ |
| | | // { |
| | | // label: "通过", |
| | | // value: "0", |
| | | // }, |
| | | // { |
| | | // label: "不通过", |
| | | // value: "1", |
| | | // }, |
| | | // { |
| | | // label: "待审核", |
| | | // value: "2", |
| | | // }, |
| | | // ], |
| | | }, |
| | | { |
| | | label: "服务范围", |
| | | prop: "business", |
| | | component: "AvueUeditor", |
| | | hide: true, |
| | |
| | | * @Author:liu |
| | | * @Date: 2021-08-26 16:59:35 |
| | | * @Last Modified by: liu |
| | | * @Last Modified time: 2021-09-23 16:43:31 |
| | | * @Last Modified time: 2021-11-05 14:51:52 |
| | | */ |
| | | |
| | | |
| | |
| | | :type="type" |
| | | class="zhengJian-icon" |
| | | @click.stop="handleCredentials(row)" |
| | | >附件查阅 |
| | | >附件 |
| | | </el-button> |
| | | <el-button |
| | | icon="el-icon-edit" |
| | | :size="size" |
| | | :type="type" |
| | | @click.stop="rowDel(row)" |
| | | v-if="row.type == '2'" |
| | | v-if="row.type == '2' && userData == '0'" |
| | | >备案审批 |
| | | </el-button> |
| | | <el-button |
| | |
| | | {{ |
| | | row.type == "0" ? "通过" : row.type == "1" ? "不通过" : "待审核" |
| | | }} |
| | | <i class="gz" v-if="row.type == '0'"></i> |
| | | <i class="gz" v-if="row.type == '2'"></i> |
| | | <!-- 黄色 --> |
| | | <i class="yj" v-if="row.type == '1'"></i> |
| | | <i class="zc" v-if="row.type == '2'"></i> |
| | | <!-- 红色 --> |
| | | <i class="zc" v-if="row.type == '0'"></i> |
| | | <!-- 绿色 --> |
| | | </el-tag> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | column: column, |
| | | }, |
| | | data: [], |
| | | userData: "", |
| | | }; |
| | | }, |
| | | computed: { |
| | |
| | | // console.log(this.userInfo.dept_id); |
| | | // }, |
| | | methods: { |
| | | changeuserData() { |
| | | // console.log(this.userInfo, "userDatauserDatauserData"); |
| | | if (this.userInfo.Id == "1123598821738675201") { |
| | | this.userData = "0"; |
| | | return; |
| | | } |
| | | var gonganj = ""; |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | let test = /派出所$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "2"; |
| | | } |
| | | test = /分局|公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "1"; |
| | | } |
| | | test = /市公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "0"; |
| | | } |
| | | } |
| | | this.userData = gonganj; |
| | | }, |
| | | Print() { |
| | | this.$Print(this.$refs.licence); |
| | | }, |
| | |
| | | this.onLoad(this.page, this.query); |
| | | }, |
| | | onLoad(page, params = {}) { |
| | | this.changeuserData(); |
| | | this.loading = true; |
| | | params["ptype"] = 5; |
| | | params["jurisdiction"] = this.userInfo.jurisdiction; |
| | | params["usetype"] = this.userData; |
| | | getList( |
| | | page.currentPage, |
| | | page.pageSize, |
| | |
| | | * @Author: liu |
| | | * @Date: 2021-08-26 16:57:58 |
| | | * @Last Modified by: liu |
| | | * @Last Modified time: 2021-09-25 17:58:55 |
| | | * @Last Modified time: 2021-11-05 14:45:01 |
| | | */ |
| | | |
| | | |
| | |
| | | :type="type" |
| | | class="zhengJian-icon" |
| | | @click.stop="handleCredentials(row)" |
| | | >附件审查</el-button |
| | | >附件</el-button |
| | | > |
| | | <el-button |
| | | icon="el-icon-edit" |
| | |
| | | @click.stop="rowDel(row)" |
| | | >备案审批 |
| | | </el-button> |
| | | <el-button |
| | | <!-- <el-button |
| | | icon="el-icon-edit" |
| | | :size="size" |
| | | :type="type" |
| | |
| | | " |
| | | @click.stop="rowSee(row)" |
| | | >审批查询 |
| | | </el-button> |
| | | </el-button> --> |
| | | <el-button |
| | | icon="el-icon-brush" |
| | | :size="size" |
| | |
| | | ? "不通过" |
| | | : "待审核" |
| | | }} |
| | | <i class="gz" v-if="row.stateOur == '0'"></i> |
| | | <i class="yj" v-if="row.stateOur == '2'"></i> |
| | | <i class="zc" v-if="row.stateOur == '1'"></i> |
| | | <i class="gz" v-if="row.type == '2'"></i> |
| | | <!-- 黄色 --> |
| | | <i class="yj" v-if="row.type == '1'"></i> |
| | | <!-- 红色 --> |
| | | <i class="zc" v-if="row.type == '0'"></i> |
| | | <!-- 绿色 --> |
| | | </el-tag> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | stateOur: "", |
| | | stateText: "", |
| | | dialogVisibleccsee: false, |
| | | |
| | | userData: "", |
| | | }; |
| | | }, |
| | | computed: { |
| | |
| | | gonganj = "市局管理员"; |
| | | } |
| | | } |
| | | this.userData = |
| | | gonganj == "派出所管理员" ? "2" : gonganj == "县局管理员" ? "1" : "0"; |
| | | params = { |
| | | ...params, |
| | | ...this.getFenji(gonganj), |
| | | }; |
| | | console.log(params, "params"); |
| | | params["jurisdiction"] = this.userInfo.jurisdiction; |
| | | params["usetype"] = this.userData; |
| | | // return; |
| | | getList( |
| | | page.currentPage, |
| | |
| | | * @Author: liu |
| | | * @Date: 2021-08-26 16:22:20 |
| | | * @Last Modified by: liu |
| | | * @Last Modified time: 2021-09-22 11:22:57 |
| | | * @Last Modified time: 2021-11-05 14:52:21 |
| | | */ |
| | | |
| | | <template> |
| | |
| | | :type="type" |
| | | class="zhengJian-icon" |
| | | @click.stop="handleCredentials(row)" |
| | | >附件查阅 |
| | | >附件 |
| | | </el-button> |
| | | <el-button |
| | | icon="el-icon-edit" |
| | | :size="size" |
| | | :type="type" |
| | | @click.stop="rowDel(row)" |
| | | v-if="row.type == '2'" |
| | | v-if="row.type == '2' && userData == '0'" |
| | | >许可审批 |
| | | </el-button> |
| | | <el-button |
| | |
| | | {{ |
| | | row.type == "0" ? "通过" : row.type == "1" ? "不通过" : "待审核" |
| | | }} |
| | | <i class="gz" v-if="row.type == '0'"></i> |
| | | <i class="gz" v-if="row.type == '2'"></i> |
| | | <!-- 黄色 --> |
| | | <i class="yj" v-if="row.type == '1'"></i> |
| | | <i class="zc" v-if="row.type == '2'"></i> |
| | | <!-- 红色 --> |
| | | <i class="zc" v-if="row.type == '0'"></i> |
| | | <!-- 绿色 --> |
| | | </el-tag> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | column: column, |
| | | }, |
| | | data: [], |
| | | |
| | | userData: "", |
| | | }; |
| | | }, |
| | | computed: { |
| | |
| | | // console.log(this.userInfo.dept_id); |
| | | // }, |
| | | methods: { |
| | | changeuserData() { |
| | | // console.log(this.userInfo, "userDatauserDatauserData"); |
| | | if (this.userInfo.Id == "1123598821738675201") { |
| | | this.userData = "0"; |
| | | return; |
| | | } |
| | | var gonganj = ""; |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | let test = /派出所$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "2"; |
| | | } |
| | | test = /分局|公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "1"; |
| | | } |
| | | test = /市公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "0"; |
| | | } |
| | | } |
| | | this.userData = gonganj; |
| | | }, |
| | | Print() { |
| | | this.$Print(this.$refs.licence); |
| | | }, |
| | |
| | | this.onLoad(this.page, this.query); |
| | | }, |
| | | onLoad(page, params = {}) { |
| | | this.changeuserData(); |
| | | this.loading = true; |
| | | params["ptype"] = 0; |
| | | params["jurisdiction"] = this.userInfo.jurisdiction; |
| | | params["usetype"] = this.userData; |
| | | getList( |
| | | page.currentPage, |
| | | page.pageSize, |
| | |
| | | * @Author: liu |
| | | * @Date: 2021-08-26 16:55:25 |
| | | * @Last Modified by: liu |
| | | * @Last Modified time: 2021-09-22 11:24:49 |
| | | * @Last Modified time: 2021-11-05 14:52:22 |
| | | */ |
| | | |
| | | |
| | |
| | | :type="type" |
| | | class="zhengJian-icon" |
| | | @click.stop="handleCredentials(row)" |
| | | >附件查阅 |
| | | >附件 |
| | | </el-button> |
| | | <el-button |
| | | icon="el-icon-edit" |
| | | :size="size" |
| | | :type="type" |
| | | @click.stop="rowDel(row)" |
| | | v-if="row.type == '2'" |
| | | v-if="row.type == '2' && userData == '0'" |
| | | >许可审批 |
| | | </el-button> |
| | | <el-button |
| | |
| | | {{ |
| | | row.type == "0" ? "通过" : row.type == "1" ? "不通过" : "待审核" |
| | | }} |
| | | <i class="gz" v-if="row.type == '0'"></i> |
| | | <i class="gz" v-if="row.type == '2'"></i> |
| | | <!-- 黄色 --> |
| | | <i class="yj" v-if="row.type == '1'"></i> |
| | | <i class="zc" v-if="row.type == '2'"></i> |
| | | <!-- 红色 --> |
| | | <i class="zc" v-if="row.type == '0'"></i> |
| | | <!-- 绿色 --> |
| | | </el-tag> |
| | | </template> |
| | | </avue-crud> |
| | |
| | | column: column, |
| | | }, |
| | | data: [], |
| | | userData: "", |
| | | }; |
| | | }, |
| | | computed: { |
| | |
| | | // console.log(this.userInfo.dept_id); |
| | | // }, |
| | | methods: { |
| | | changeuserData() { |
| | | // console.log(this.userInfo, "userDatauserDatauserData"); |
| | | if (this.userInfo.Id == "1123598821738675201") { |
| | | this.userData = "0"; |
| | | return; |
| | | } |
| | | var gonganj = ""; |
| | | if (this.userInfo.role_name == "公安管理员") { |
| | | let test = /派出所$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "2"; |
| | | } |
| | | test = /分局|公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "1"; |
| | | } |
| | | test = /市公安局$/g; |
| | | if (test.test(this.userInfo.list.name)) { |
| | | gonganj = "0"; |
| | | } |
| | | } |
| | | this.userData = gonganj; |
| | | }, |
| | | Print() { |
| | | this.$Print(this.$refs.licence); |
| | | }, |
| | |
| | | this.onLoad(this.page, this.query); |
| | | }, |
| | | onLoad(page, params = {}) { |
| | | this.changeuserData(); |
| | | this.loading = true; |
| | | params["ptype"] = 1; |
| | | params["jurisdiction"] = this.userInfo.jurisdiction; |
| | | params["usetype"] = this.userData; |
| | | getList( |
| | | page.currentPage, |
| | | page.pageSize, |
| | |
| | | i = 0, |
| | | ind = null; |
| | | this.$store.state.tags.tagList.forEach((item, index) => { |
| | | if (item.label == "附件上传") { |
| | | if (item.label == "附件查阅") { |
| | | if (flag == false) { |
| | | ind = index; |
| | | flag = true; |