|
@@ -0,0 +1,495 @@
|
|
|
+<template>
|
|
|
+ <div class="page">
|
|
|
+ <el-form :inline="true" v-if="searchVisible" class="query-form m-b-10" ref="searchForm" :model="searchForm" @keyup.enter.native="refreshList()" @submit.native.prevent>
|
|
|
+ <!-- 搜索框-->
|
|
|
+ <el-form-item label="关联项目" prop="projectName">
|
|
|
+ <el-input v-model="searchForm.projectName" placeholder="请输入关联项目" clearable></el-input>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="用印类型" prop="types">
|
|
|
+ <el-cascader style="width: 100%" v-model="searchForm.types" :options="typeData" @change="handleChange" placeholder="请选择" clearable />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item v-if="showHideItem" label="申请人" prop="createById">
|
|
|
+ <UserSelect :limit='1' :modelValue="searchForm.createById" @update:modelValue='(value, label) => {searchForm.createById = value}'></UserSelect>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item v-if="showHideItem" prop="office" label="申请人部门">
|
|
|
+ <SelectTree
|
|
|
+ ref="officeTree"
|
|
|
+ :props="{
|
|
|
+ value: 'id', // ID字段名
|
|
|
+ label: 'name', // 显示名称
|
|
|
+ children: 'children' // 子级字段名
|
|
|
+ }"
|
|
|
+
|
|
|
+ :url="`/system-server/sys/office/treeData?type=2`"
|
|
|
+ :value="searchForm.office"
|
|
|
+ size="default"
|
|
|
+ :accordion="true"
|
|
|
+ @getValue="(value) => {searchForm.office=value}"/>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item v-if="showHideItem" label="申请时间" prop="createDates">
|
|
|
+ <el-date-picker
|
|
|
+ placement="bottom-start"
|
|
|
+ format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ value-format="YYYY-MM-DD HH:mm:ss"
|
|
|
+ v-model="searchForm.createDates"
|
|
|
+ type="datetimerange"
|
|
|
+ range-separator="至"
|
|
|
+ start-placeholder="开始日期"
|
|
|
+ end-placeholder="结束日期">
|
|
|
+ </el-date-picker>
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="default" @click="showHide" :icon="showHideIcon">{{showHideName}}</el-button>
|
|
|
+ <el-button type="primary" @click="refreshList()" icon="el-icon-search">查询</el-button>
|
|
|
+ <el-button @click="resetSearch()" icon="el-icon-refresh-right">重置</el-button>
|
|
|
+ </el-form-item>
|
|
|
+ </el-form>
|
|
|
+ <div class="jp-table top" style="">
|
|
|
+ <vxe-toolbar :refresh="{query: refreshList}" custom>
|
|
|
+ <template #buttons>
|
|
|
+ <el-button v-if="hasPermission('material:info:add')" :disabled="isAdmin" type="primary" icon="el-icon-plus" @click="add()">新建</el-button>
|
|
|
+ </template>
|
|
|
+ <template #tools>
|
|
|
+ <vxe-button
|
|
|
+ text
|
|
|
+ type="primary"
|
|
|
+ :title="searchVisible ? '收起检索' : '展开检索'"
|
|
|
+ icon="vxe-icon-search"
|
|
|
+ class="tool-btn"
|
|
|
+ @click="searchVisible = !searchVisible"
|
|
|
+ ></vxe-button>
|
|
|
+ </template>
|
|
|
+ </vxe-toolbar>
|
|
|
+ <div style="height: calc(100% - 90px)">
|
|
|
+ <vxe-table
|
|
|
+ border="inner"
|
|
|
+ auto-resize
|
|
|
+ resizable
|
|
|
+ height="auto"
|
|
|
+ :loading="loading"
|
|
|
+ ref="clientTable"
|
|
|
+ show-header-overflow
|
|
|
+ show-overflow
|
|
|
+ highlight-hover-row
|
|
|
+ :menu-config="{}"
|
|
|
+ @sort-change="sortChangeHandle"
|
|
|
+ :sort-config="{remote:true}"
|
|
|
+ :data="dataList"
|
|
|
+ :checkbox-config="{}">
|
|
|
+ <vxe-column type="seq" width="60" title="序号"></vxe-column>
|
|
|
+ <vxe-column min-width="160" align="center" title="关联项目" field="projectName">
|
|
|
+ <template #default="scope">
|
|
|
+ <el-link type="primary" :underline="false" @click="view(scope.row)">{{scope.row.projectName}}</el-link>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column min-width="160" align="center" title="用印编号" field="no"></vxe-column>
|
|
|
+ <vxe-column min-width="160" align="center" title="用印类型" field="type"></vxe-column>
|
|
|
+ <vxe-column min-width="160" align="center" title="用印份数" field="number"></vxe-column>
|
|
|
+ <vxe-column min-width="160" align="center" title="申请人" field="createByName"></vxe-column>
|
|
|
+ <vxe-column min-width="160" align="center" title="申请人部门" field="office"></vxe-column>
|
|
|
+ <vxe-column min-width="160" align="center" title="申请时间" field="createDate"></vxe-column>
|
|
|
+ <vxe-column min-width="150px" align="center" title="状态" field="status" >
|
|
|
+ <template #default="scope">
|
|
|
+ <el-button @click="detail(scope.row)" :type="$dictUtils.getDictLabel('program_project_list_info_status_info', scope.row.status, '')" effect="dark" >{{$dictUtils.getDictLabel("program_project_list_info_status", scope.row.status, '未登记')}} </el-button>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ <vxe-column title="操作" width="150px" fixed="right" align="center">
|
|
|
+ <template #default="scope">
|
|
|
+ <div v-if="isAdmin">
|
|
|
+<!-- <el-button text type="primary" @click="edit(scope.row.id)">修改</el-button>-->
|
|
|
+ <el-button text type="primary" size="small" v-if="scope.row.status==='0' || scope.row.status==='5'" @click="del(scope.row.id)">删除</el-button>
|
|
|
+ </div>
|
|
|
+ <div v-else>
|
|
|
+ <!-- 当前申请人撤回-->
|
|
|
+ <el-button v-if="scope.row.createById === $store.state.user.id && scope.row.status==='2'" text type="primary" size="small" @click="reback(scope.row)">撤回</el-button>
|
|
|
+
|
|
|
+ <el-button v-if="scope.row.status==='2' && checkIsAudit(scope.row)" text type="primary" size="small" @click="examine(scope.row)">审核</el-button>
|
|
|
+ <el-button v-if="scope.row.status === '4'&&scope.row.createById === $store.state.user.id" text type="primary" size="small" @click="adjust(scope.row)">驳回调整</el-button>
|
|
|
+ </div>
|
|
|
+ </template>
|
|
|
+ </vxe-column>
|
|
|
+ </vxe-table>
|
|
|
+ <vxe-pager
|
|
|
+ background
|
|
|
+ :current-page="tablePage.currentPage"
|
|
|
+ :page-size="tablePage.pageSize"
|
|
|
+ :total="tablePage.total"
|
|
|
+ :page-sizes="[10, 20, 100, 1000, {label: '全量数据', value: 1000000}]"
|
|
|
+ :layouts="['PrevPage', 'JumpNumber', 'NextPage', 'FullJump', 'Sizes', 'Total']"
|
|
|
+ @page-change="currentChangeHandle">
|
|
|
+ </vxe-pager>
|
|
|
+ <SupplierChooseForm ref="supplierChooseForm" @getSupplier="getSupplier"></SupplierChooseForm>
|
|
|
+ <ProgramForm ref="programForm"></ProgramForm>
|
|
|
+
|
|
|
+ <el-dialog v-model="dialogTableVisible" width="1000px"
|
|
|
+ height="500px" title="关联项目">
|
|
|
+ <el-table :data="gridData" width="auto" border="inner" height="550px">
|
|
|
+ <el-table-column property="name" label="项目名称" width="200" >
|
|
|
+ <template #default="scope">
|
|
|
+ <el-link type="primary" :underline="false" @click="openProject(scope.row.id)">{{scope.row.name}}</el-link>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column property="no" label="项目编号" width="200" />
|
|
|
+ <el-table-column property="contractName" label="合同名称" width="200" />
|
|
|
+ <el-table-column property="createById" label="创建人" width="200" />
|
|
|
+ <el-table-column property="createTime" label="创建时间" width="200" />
|
|
|
+ </el-table>
|
|
|
+ </el-dialog>
|
|
|
+ <ProjectDia ref="projectDia" @refreshDataList="refreshList"></ProjectDia>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+
|
|
|
+ </div>
|
|
|
+
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+ import UserSelect from '@/components/userSelect'
|
|
|
+ import SelectTree from '@/components/treeSelect/treeSelect.vue'
|
|
|
+ import SignetService from '@/api/jy/SignetService'
|
|
|
+ import taskService from '@/api/flowable/taskService'
|
|
|
+ import processService from '@/api/flowable/processService'
|
|
|
+ import userService from '@/api/sys/userService'
|
|
|
+ import pick from 'lodash.pick'
|
|
|
+ import SupplierChooseForm from '@/views/materialManagement/supplier/SupplierChooseForm'
|
|
|
+ import dictService from "@/api/sys/dictService";
|
|
|
+ import ProjectDia from '../../jy/project/ProjectDia.vue'
|
|
|
+export default {
|
|
|
+ data () {
|
|
|
+ return {
|
|
|
+ dialogTableVisible:false,
|
|
|
+ searchVisible: true,
|
|
|
+ showHideItem: false,
|
|
|
+ showHideIcon: 'el-icon-arrow-down',
|
|
|
+ showHideName: '展示',
|
|
|
+ num: 0,
|
|
|
+ searchForm: {
|
|
|
+ projectName: '',
|
|
|
+ types: [],
|
|
|
+ createById: '',
|
|
|
+ office: '',
|
|
|
+ createDates: [],
|
|
|
+ },
|
|
|
+ dataList: [],
|
|
|
+ tablePage: {
|
|
|
+ total: 0,
|
|
|
+ currentPage: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ orders: []
|
|
|
+ },
|
|
|
+ tableKey: '',
|
|
|
+ loading: false,
|
|
|
+ processDefinitionId: '',
|
|
|
+ procDefKey: '',
|
|
|
+ isAdmin: false,
|
|
|
+ create: '',
|
|
|
+ gridData:[],
|
|
|
+ typeData:[]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ SignetService: null,
|
|
|
+ created () {
|
|
|
+ this.signetService = new SignetService()
|
|
|
+ this.getTypeList()
|
|
|
+ },
|
|
|
+ components: {
|
|
|
+ SelectTree,
|
|
|
+ UserSelect,
|
|
|
+ SupplierChooseForm,
|
|
|
+ ProjectDia
|
|
|
+ },
|
|
|
+ computed: {
|
|
|
+ userName () {
|
|
|
+ return this.$store.state.user.name
|
|
|
+ },
|
|
|
+ user () {
|
|
|
+ this.createName = this.$store.state.user.name
|
|
|
+ return this.$store.state.user
|
|
|
+ }
|
|
|
+ },
|
|
|
+ mounted () {
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ activated () {
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ showHide () {
|
|
|
+ if (this.showHideItem === false) {
|
|
|
+ this.showHideItem = true
|
|
|
+ this.showHideIcon = 'el-icon-arrow-up'
|
|
|
+ this.showHideName = '隐藏'
|
|
|
+ } else {
|
|
|
+ this.showHideItem = false
|
|
|
+ this.showHideIcon = 'el-icon-arrow-down'
|
|
|
+ this.showHideName = '展示'
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 新增
|
|
|
+ add () {
|
|
|
+ // 读取流程表单
|
|
|
+ let tabTitle = `发起流程【嘉溢-用印流程】`
|
|
|
+ let processTitle = `${this.userName} 在 ${this.moment(new Date()).format('YYYY-MM-DD HH:mm')} 发起了 [嘉溢-用印流程]`
|
|
|
+ taskService.getTaskDef({ procDefId: this.processDefinitionId,
|
|
|
+ status: 'startAndHold'}).then((data) => {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/flowable/task/TaskForm',
|
|
|
+ query: {
|
|
|
+ ...pick(data, 'formType', 'formUrl', 'procDefKey', 'taskDefKey', 'procInsId', 'procDefId', 'taskId', 'status', 'title'),
|
|
|
+ procDefId: this.processDefinitionId,
|
|
|
+ procDefKey: this.procDefKey,
|
|
|
+ status: 'startAndHold',
|
|
|
+ title: tabTitle,
|
|
|
+ formType: data.formType,
|
|
|
+ formUrl: data.formUrl,
|
|
|
+ formTitle: processTitle,
|
|
|
+ businessId: 'false',
|
|
|
+ isShow: false,
|
|
|
+ routePath: '/materialManagement/userSeal/SignetList'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 修改
|
|
|
+ edit (id) {
|
|
|
+ id = id || this.$refs.clientTable.getCheckboxRecords().map(item => {
|
|
|
+ return item.id
|
|
|
+ })[0]
|
|
|
+ this.$refs.wareHouseAddForm.init('edit', id)
|
|
|
+ },
|
|
|
+ // 查看
|
|
|
+ view (row) {
|
|
|
+ this.dialogTableVisible=true
|
|
|
+ this.gridData=row.projectList
|
|
|
+ console.log('z',this.gridData)
|
|
|
+ },
|
|
|
+ // 查询当前用户是否是管理员用户
|
|
|
+ checkIsAdmin () {
|
|
|
+ userService.is().then((data) => {
|
|
|
+ this.isAdmin = data
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 获取数据列表
|
|
|
+ refreshList () {
|
|
|
+ this.loading = true
|
|
|
+ this.signetService.findPageList({
|
|
|
+ 'current': this.tablePage.currentPage,
|
|
|
+ 'size': this.tablePage.pageSize,
|
|
|
+ 'orders': this.tablePage.orders,
|
|
|
+ ...this.searchForm
|
|
|
+ }).then((data) => {
|
|
|
+ console.log('x',data.records)
|
|
|
+ this.dataList = data.records
|
|
|
+ this.tablePage.total = data.total
|
|
|
+ this.tableKey = Math.random()
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ // this.materialManagementService.list({
|
|
|
+ // 'current': this.tablePage.currentPage,
|
|
|
+ // 'size': this.tablePage.pageSize,
|
|
|
+ // 'orders': this.tablePage.orders,
|
|
|
+ // ...this.searchForm
|
|
|
+ // }).then((data) => {
|
|
|
+ // this.dataList = data.records
|
|
|
+ // this.tablePage.total = data.total
|
|
|
+ // this.tableKey = Math.random()
|
|
|
+ // this.loading = false
|
|
|
+ // })
|
|
|
+ this.checkIsAdmin()
|
|
|
+ processService.getByName('嘉溢-用印流程').then((data) => {
|
|
|
+ console.log('1',data)
|
|
|
+ if (!this.commonJS.isEmpty(data.id)) {
|
|
|
+ this.processDefinitionId = data.id
|
|
|
+ this.procDefKey = data.key
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 当前页
|
|
|
+ currentChangeHandle ({ currentPage, pageSize }) {
|
|
|
+ this.tablePage.currentPage = currentPage
|
|
|
+ this.tablePage.pageSize = pageSize
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ // 排序
|
|
|
+ sortChangeHandle (column) {
|
|
|
+ this.tablePage.orders = []
|
|
|
+ if (column.order != null) {
|
|
|
+ this.tablePage.orders.push({column: this.$utils.toLine(column.property), asc: column.order === 'asc'})
|
|
|
+ }
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+ // 删除
|
|
|
+ del (id) {
|
|
|
+ let ids = id || this.$refs.clientTable.getCheckboxRecords().map(item => {
|
|
|
+ return item.id
|
|
|
+ }).join(',')
|
|
|
+ this.$confirm(`确定删除所选项吗?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.loading = true
|
|
|
+ this.wareHouseService.remove(ids).then((data) => {
|
|
|
+ this.$message.success(data)
|
|
|
+ this.refreshList()
|
|
|
+ this.loading = false
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ resetSearch () {
|
|
|
+ this.$refs.searchForm.resetFields()
|
|
|
+ this.searchForm.supplierId = '' // 重置时清空供应商筛选
|
|
|
+ this.refreshList()
|
|
|
+ },
|
|
|
+
|
|
|
+ // 查看修改流程结果
|
|
|
+ detail (row) {
|
|
|
+ if (row.status !== '0' && row.status !== '1') {
|
|
|
+ this.signetService.queryById(row.id).then((da)=>{
|
|
|
+ // eslint-disable-next-line eqeqeq
|
|
|
+ taskService.getTaskDef({
|
|
|
+ procInsId: row.procInsId,
|
|
|
+ procDefId: this.processDefinitionId
|
|
|
+ }).then((data) => {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/flowable/task/TaskFormDetail',
|
|
|
+ query: {
|
|
|
+ ...pick(data, 'formType', 'formUrl', 'procDefKey', 'taskDefKey', 'procInsId', 'procDefId', 'taskId', 'status', 'title'),
|
|
|
+ isShow: 'false',
|
|
|
+ readOnly: true,
|
|
|
+ title: '用印申请' + '流程详情',
|
|
|
+ formTitle: '用印申请' + '流程详情',
|
|
|
+ businessId: row.id,
|
|
|
+ status: 'reback',
|
|
|
+ method: 'view'
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ },
|
|
|
+ // 撤回入库修改
|
|
|
+ reback (row) {
|
|
|
+ this.$confirm(`确定要撤回该申请吗?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.signetService.queryById(row.id).then((data) => {
|
|
|
+ if (data.status !== '2') { // status的值不等于“审核中”,就弹出提示
|
|
|
+ this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
|
+ this.refreshList()
|
|
|
+ } else {
|
|
|
+ processService.revokeProcIns(row.procInsId).then((data) => {
|
|
|
+ let form = {status: '3', id: row.id}
|
|
|
+ this.signetService.updateStatusById(form)
|
|
|
+ this.$message.success(data)
|
|
|
+ this.refreshList()
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ stopUpdate (id) {
|
|
|
+ this.signetService.queryById(id).then((data) => {
|
|
|
+ if (data.status !== '3') { // status的值不等于“撤回”,就弹出提示
|
|
|
+ this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
|
+ this.refreshList()
|
|
|
+ } else {
|
|
|
+ this.$confirm(`确定要取消修改申请吗?`, '提示', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ cancelButtonText: '取消',
|
|
|
+ type: 'warning'
|
|
|
+ }).then(() => {
|
|
|
+ this.wareHouseService.backSourceData(id).then((data) => {
|
|
|
+ if (data.result === 'success') {
|
|
|
+ this.$message.success('取消修改申请成功')
|
|
|
+ } else {
|
|
|
+ this.$message.error('取消修改申请失败')
|
|
|
+ }
|
|
|
+ this.refreshList()
|
|
|
+ }).catch(() => {
|
|
|
+ this.refreshList()
|
|
|
+ })
|
|
|
+ })
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 驳回后调整
|
|
|
+ adjust (row) {
|
|
|
+ this.signetService.queryById(row.id).then((data) => {
|
|
|
+ if (data.status !== '4') { // status的值不等于“驳回”,就弹出提示
|
|
|
+ this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
|
+ this.refreshList()
|
|
|
+ } else {
|
|
|
+ this.todo(row)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 审核
|
|
|
+ examine (row) {
|
|
|
+ this.signetService.queryById(row.id).then((data) => {
|
|
|
+ if (data.status !== '2') { // status的值不等于“审核中”,就弹出提示
|
|
|
+ this.$message.error('数据已发生改变或不存在,请刷新数据')
|
|
|
+ this.refreshList()
|
|
|
+ } else {
|
|
|
+ this.todo(row)
|
|
|
+ }
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 审核或重新调整跳转
|
|
|
+ todo (row) {
|
|
|
+ let cUser = false
|
|
|
+ taskService.getTaskDefInfo({
|
|
|
+ taskId: row.taskId
|
|
|
+ }).then((data) => {
|
|
|
+ this.$router.push({
|
|
|
+ path: '/flowable/task/TaskForm',
|
|
|
+ query: {
|
|
|
+ ...pick(data, 'formType', 'formUrl', 'procDefKey', 'taskDefKey', 'procInsId', 'procDefId', 'taskId', 'status', 'title', 'businessId'),
|
|
|
+ isShow: false,
|
|
|
+ formReadOnly: true,
|
|
|
+ formTitle: `${data.taskName}`,
|
|
|
+ cUser: cUser,
|
|
|
+ title: `审批【${data.taskName || ''}】`,
|
|
|
+ routePath: '/materialManagement/userSeal/SignetList', // 数据处理后需要跳转的页面路径
|
|
|
+ }
|
|
|
+ })
|
|
|
+ })
|
|
|
+ },
|
|
|
+ // 查询当前登录人是否是数据的审核人
|
|
|
+ checkIsAudit (row) {
|
|
|
+ let loginUserId = this.$store.state.user.id // 获取当前登录用户id
|
|
|
+ if (this.commonJS.isNotEmpty(row.auditUserIds)) {
|
|
|
+ for (const userId of row.auditUserIds) {
|
|
|
+ if (userId === loginUserId) { // 当数据的审核人中包含当前登录人id时,返回true
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return false
|
|
|
+ },
|
|
|
+ getSupplier (row) {
|
|
|
+ this.searchForm.supplierId = row.id
|
|
|
+ this.searchForm.supplierName = row.name
|
|
|
+ },
|
|
|
+ // 打开供应商选择组件
|
|
|
+ openSupplierChoose () {
|
|
|
+ this.$refs.supplierChooseForm.init()
|
|
|
+ },
|
|
|
+ getTypeList(){
|
|
|
+ console.log(111)
|
|
|
+ dictService.getTypeData().then((data)=>{
|
|
|
+ console.log('a',data)
|
|
|
+ this.typeData=data
|
|
|
+ })
|
|
|
+ },
|
|
|
+ //查看项目信息
|
|
|
+ openProject(id){
|
|
|
+ this.$refs.projectDia.init('view', id)
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+</script>
|