Commit c73e05c7 by wenyi.chen

线上

parent dfda4d33
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -3,28 +3,28 @@ export function getHost() { ...@@ -3,28 +3,28 @@ export function getHost() {
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
return '/dev' return '/dev'
} else { } else {
return '/product_library_api' return '/element-plus-api_v1'
} }
} }
export function getUploadUrl() { export function getUploadUrl() {
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
return '/dev/api/upload/picture' return '/dev/api/upload/picture'
} else { } else {
return '/product_library_api/api/upload/picture' return '/element-plus-api_v1/api/upload/picture'
} }
} }
export function getUploadPdf() { export function getUploadPdf() {
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
return '/dev/api/getUploadUrl' return '/dev/api/getUploadUrl'
} else { } else {
return '/product_library_api/api/getUploadUrl' return '/element-plus-api_v1/api/getUploadUrl'
} }
} }
export function getServerUrl() { export function getServerUrl() {
if (process.env.NODE_ENV === 'development') { if (process.env.NODE_ENV === 'development') {
return '/dev/api' return '/dev/api'
} else { } else {
return '/product_library_api/api' return '/element-plus-api_v1/api'
} }
} }
......
...@@ -18,30 +18,30 @@ ...@@ -18,30 +18,30 @@
<div class="page-main" ref="pageMain"> <div class="page-main" ref="pageMain">
<el-card shadow="hover" style="height:100%;"> <el-card shadow="hover" style="height:100%;">
<!-- <Toolbar ref="ToolbarRef" v-model:showSearch="showSearch" @queryTable="getList" @search="search" :columns="columns"/> --> <Toolbar ref="ToolbarRef" v-model:showSearch="showSearch" @queryTable="getList" @search="search" :columns="columns"/>
<el-table :data="state.tableData.data" style="width: 100%" :height="state.tableHeight" <el-table :data="state.tableData.data" style="width: 100%" :height="state.tableHeight"
ref="multipleTableRef"> ref="multipleTableRef">
<el-table-column label="序号" type="index" width="100" show-overflow-tooltip align="center"></el-table-column> <el-table-column label="序号" type="index" width="100" show-overflow-tooltip align="center"></el-table-column>
<el-table-column prop="product_id" label="产品ID" key="product_id" v-if="columns[0].visible" width="200" show-overflow-tooltip align="center"></el-table-column> <el-table-column prop="product_id" label="产品ID" key="product_id" v-if="columns[0].visible" width="200" show-overflow-tooltip align="center"></el-table-column>
<el-table-column prop="productInfo.page_url" label="页面URL" key="page_url" v-if="columns[2].visible" width="200" align="center"> <el-table-column prop="page_url" label="页面URL" key="page_url" v-if="columns[2].visible" width="200" align="center">
<template #default="scope"> <template #default="scope">
<el-link type="primary" :href="scope.row.productInfo.page_url" target ="_blank">{{scope.row.productInfo.page_url}}</el-link> <el-link type="primary" :href="scope.row.page_url" target ="_blank">{{scope.row.page_url}}</el-link>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="productInfo.product_categ_name" label="产品分类名称" key="product_categ_name" v-if="columns[3].visible" width="200" align="center"></el-table-column> <el-table-column prop="product_categ_name" label="产品分类名称" key="product_categ_name" v-if="columns[3].visible" width="200" align="center"></el-table-column>
<el-table-column prop="productInfo.product_name" label="产品名称" key="product_name" v-if="columns[4].visible" width="200" align="center"></el-table-column> <el-table-column prop="product_name" label="产品名称" key="product_name" v-if="columns[4].visible" width="200" align="center"></el-table-column>
<el-table-column prop="productInfo.product_model" label="产品型号" key="product_model" v-if="columns[5].visible" width="200" align="center"></el-table-column> <el-table-column prop="product_model" label="产品型号" key="product_model" v-if="columns[5].visible" width="200" align="center"></el-table-column>
<el-table-column prop="productInfo.describe" label="功能描述" key="describe" v-if="columns[6].visible" width="250" show-overflow-tooltip align="center"> <el-table-column prop="describe" label="功能描述" key="describe" v-if="columns[6].visible" width="250" show-overflow-tooltip align="center">
</el-table-column> </el-table-column>
<el-table-column prop="productInfo.parameter" label="规格参数" key="parameter" v-if="columns[7].visible" width="200" show-overflow-tooltip align="center"></el-table-column> <el-table-column prop="parameter" label="规格参数" key="parameter" v-if="columns[7].visible" width="200" show-overflow-tooltip align="center"></el-table-column>
<el-table-column prop="inspect_status" key="verify_type" v-if="columns[12].visible" label="检查状态" width="200" align="center"> <el-table-column prop="inspect_status" key="verify_type" v-if="columns[12].visible" label="检查状态" width="200" align="center">
<template #default="scope"> <template #default="scope">
<el-tag type="info" v-if="scope.row.productInfo.inspect_status ==''||scope.row.productInfo.inspect_status ==null||scope.row.productInfo.inspect_status ==0">待分配</el-tag> <el-tag type="info" v-if="scope.row.inspect_status ==''||scope.row.inspect_status ==null||scope.row.inspect_status ==0">待检查</el-tag>
<el-tag v-if="scope.row.productInfo.inspect_status ==1">检查完成</el-tag> <el-tag v-if="scope.row.inspect_status ==1">检查完成</el-tag>
<el-tag type="warning" v-if="scope.row.productInfo.inspect_status ==2">检查中</el-tag> <el-tag type="warning" v-if="scope.row.inspect_status ==2">检查中</el-tag>
<el-tag type="danger" v-if="scope.row.productInfo.inspect_status ==3">检查异常</el-tag> <el-tag type="danger" v-if="scope.row.inspect_status ==3">检查异常</el-tag>
<el-tag type="danger" v-if="scope.row.productInfo.inspect_status ==4">数据异常</el-tag> <el-tag type="danger" v-if="scope.row.inspect_status ==4">数据异常</el-tag>
<el-tag type="danger" v-if="scope.row.productInfo.inspect_status ==5">数据废弃</el-tag> <el-tag type="danger" v-if="scope.row.inspect_status ==5">数据废弃</el-tag>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="adminInfo.name" label="检查人员" key="verify_user_id" v-if="columns[9].visible" width="200" align="center"></el-table-column> <el-table-column prop="adminInfo.name" label="检查人员" key="verify_user_id" v-if="columns[9].visible" width="200" align="center"></el-table-column>
...@@ -54,7 +54,7 @@ ...@@ -54,7 +54,7 @@
<el-table-column prop="distribute_time" key="distribute_time" label="分发时间" v-if="columns[10].visible" width="200" align="center"></el-table-column> <el-table-column prop="distribute_time" key="distribute_time" label="分发时间" v-if="columns[10].visible" width="200" align="center"></el-table-column>
<el-table-column label="操作" width="200" fixed="right" align="center"> <el-table-column label="操作" width="200" fixed="right" align="center">
<template #default="scope"> <template #default="scope">
<el-button size="small" @click="setup(scope.row.id)" type="primary">检查数据</el-button> <el-button size="small" @click="setup(scope.row.allocation_id)" type="primary">检查数据</el-button>
</template> </template>
</el-table-column> </el-table-column>
...@@ -90,7 +90,7 @@ const SetupDialog = defineAsyncComponent(() => import('/@/views/product_info/lis ...@@ -90,7 +90,7 @@ const SetupDialog = defineAsyncComponent(() => import('/@/views/product_info/lis
const AddDialog = defineAsyncComponent(() => import('/@/views/product_info/list/add.vue')); const AddDialog = defineAsyncComponent(() => import('/@/views/product_info/list/add.vue'));
const DistributeDialog = defineAsyncComponent(() => import('/@/views/product_info/list/distribute.vue')); const DistributeDialog = defineAsyncComponent(() => import('/@/views/product_info/list/distribute.vue'));
const Toolbar = defineAsyncComponent(() => import('/@/components/RightToolbar/index.vue')); const Toolbar = defineAsyncComponent(() => import('/@/components/RightToolbar/index.vue'));
const Search = defineAsyncComponent(() => import('/@/views/product_info/list/search.vue')); const Search = defineAsyncComponent(() => import('/@/views/search/allocation.vue'));
// 定义变量内容 // 定义变量内容
const AddDialogRef = ref() const AddDialogRef = ref()
...@@ -146,12 +146,15 @@ const search = () => { ...@@ -146,12 +146,15 @@ const search = () => {
* 搜索条件 * 搜索条件
*/ */
const searchData = (va) => { const searchData = (va) => {
console.log(va) if(va){
productApi().list({search:va}).then(res => { productApi().productAllocationList(va).then(res => {
state.tableData.data = res.data.data state.tableData.data = res.data.data
state.tableData.total = res.data.total state.tableData.total = res.data.total
}).catch(() => { console.log(res.data.data)
}) }).catch(() => {
})
}
} }
......
...@@ -42,7 +42,7 @@ ...@@ -42,7 +42,7 @@
</el-row> </el-row>
</div> </div>
<div style="margin-top: 5px;"> <div style="margin-top: 5px;">
<div class="number"><span>产品编号:</span><span>RS1722417085980508</span></div> <div class="number"><span>产品编号:</span><span>{{ state.info.product_number}}</span></div>
<el-form ref="dialogFormRef" :model="state.info" size="default" label-width="100px" v-loading="state.dataLoading" label-position="right" style="width: 500px;"> <el-form ref="dialogFormRef" :model="state.info" size="default" label-width="100px" v-loading="state.dataLoading" label-position="right" style="width: 500px;">
<el-form-item label="企业名称:" prop="企业名称"> <el-form-item label="企业名称:" prop="企业名称">
<el-input v-model="state.info.enterprise_name" placeholder="企业名称" clearable disabled></el-input> <el-input v-model="state.info.enterprise_name" placeholder="企业名称" clearable disabled></el-input>
...@@ -70,16 +70,16 @@ ...@@ -70,16 +70,16 @@
</el-form-item> </el-form-item>
</el-form> </el-form>
<div style="margin-top: 30px;padding-right: 50px;"> <div style="margin-top: 30px;padding-right: 50px;">
<el-button type="danger" :loading="state.btnLoading" @click="abnormal(4)">数据异常</el-button> <el-button type="danger" :loading="state.btnLoading" @click="abnormal(4)" >数据异常</el-button>
<el-button type="warning" :loading="state.btnLoading" @click="abnormal(5)">数据废弃</el-button> <el-button type="warning" :loading="state.btnLoading" @click="abnormal(5)" >数据废弃</el-button>
<el-button type="primary" style="float: right;" :loading="state.btnLoading" @click="onSubmit()">检查完成</el-button> <el-button type="primary" style="float: right;" :loading="state.btnLoading" @click="onSubmit()" >检查完成</el-button>
</div> </div>
</div> </div>
</div> </div>
</el-col> </el-col>
<el-col :span="16"><div class="grid-content bg-purple-light"> <el-col :span="16"><div class="grid-content bg-purple-light">
<!-- <div style="float: right;"><el-link type="primary" href="https://element.eleme.io">主要链接</el-link></div> --> <!-- <div style="float: right;"><el-link type="primary" href="https://element.eleme.io">主要链接</el-link></div> -->
<div><iframe :src="state.info.page_url" width="100%" height="830px" style=" border: #909399 1px dotted ; padding: 15px;" ></iframe></div> <div><iframe :src="state.info.page_url" style=" border: #909399 1px dotted ; padding: 15px;" :height="state.tableHeight" width="100%"></iframe></div>
</div> </div>
</el-col> </el-col>
</el-row> </el-row>
...@@ -89,6 +89,7 @@ ...@@ -89,6 +89,7 @@
<script setup name="systemRoleDialog"> <script setup name="systemRoleDialog">
const router = useRouter(); const router = useRouter();
import { getCurrentInstance } from 'vue';
import { ElMessage } from 'element-plus'; import { ElMessage } from 'element-plus';
import { create } from 'lodash'; import { create } from 'lodash';
import { productApi } from '/@/api/product' import { productApi } from '/@/api/product'
...@@ -116,6 +117,7 @@ const state = reactive({ ...@@ -116,6 +117,7 @@ const state = reactive({
number:{}, number:{},
xhr:null, // 请求对象 xhr:null, // 请求对象
mscontent:'', mscontent:'',
tableHeight: '30vh',
}); });
...@@ -138,6 +140,7 @@ const apiData = JSON.parse(JSON.stringify(state.info)) ...@@ -138,6 +140,7 @@ const apiData = JSON.parse(JSON.stringify(state.info))
productApi().productAllocationSave(apiData).then(res => { productApi().productAllocationSave(apiData).then(res => {
state.btnLoading = false state.btnLoading = false
ElMessage.success('ok'); ElMessage.success('ok');
page_turning(state.number.after)
emit('refresh'); emit('refresh');
closeDialog(); closeDialog();
}).catch(() => { }).catch(() => {
...@@ -168,6 +171,7 @@ const abnormal = (type) => { ...@@ -168,6 +171,7 @@ const abnormal = (type) => {
productApi().productAllocationAbnormal(apiData).then(res => { productApi().productAllocationAbnormal(apiData).then(res => {
state.btnLoading = false state.btnLoading = false
ElMessage.success('ok'); ElMessage.success('ok');
page_turning(state.number.after)
emit('refresh'); emit('refresh');
closeDialog(); closeDialog();
}).catch(() => { }).catch(() => {
...@@ -178,6 +182,7 @@ const abnormal = (type) => { ...@@ -178,6 +182,7 @@ const abnormal = (type) => {
const getProductAllocation = () => { const getProductAllocation = () => {
productApi().productAllocationSee({id:state.query_id}).then(res => { productApi().productAllocationSee({id:state.query_id}).then(res => {
state.info.id= res.data.productAllocationInfo.id state.info.id= res.data.productAllocationInfo.id
state.info.product_number= res.data.productInfo.product_id
state.info.product_id= res.data.productInfo.id state.info.product_id= res.data.productInfo.id
state.info.inspect_status= res.data.productInfo.inspect_status state.info.inspect_status= res.data.productInfo.inspect_status
state.info.enterprise_name= res.data.enterpriseInfo.enterprise_name state.info.enterprise_name= res.data.enterpriseInfo.enterprise_name
...@@ -190,7 +195,7 @@ const getProductAllocation = () => { ...@@ -190,7 +195,7 @@ const getProductAllocation = () => {
state.info.inspect_remarks= res.data.productInfo.inspect_remarks state.info.inspect_remarks= res.data.productInfo.inspect_remarks
state.info.distribute_time= res.data.productAllocationInfo.distribute_time state.info.distribute_time= res.data.productAllocationInfo.distribute_time
state.info.user_name= res.data.userInfo.name state.info.user_name= res.data.userInfo.name
state.number = res.data.number state.number = res.data.number
}).catch(() => { }).catch(() => {
...@@ -279,6 +284,23 @@ defineExpose({ ...@@ -279,6 +284,23 @@ defineExpose({
// this.$router.push('/target') // this.$router.push('/target')
router.push({ path: '/product_info/allocation'}); router.push({ path: '/product_info/allocation'});
} }
const handleKeyDown = (event) => {
//监听 ctrl+s
if (event.key === '1' && event.altKey) {
abnormal(4)
}
if (event.key === '2' && event.altKey) {
abnormal(5)
}
if (event.key === '3' && event.altKey) {
onSubmit()
}
if (event.key === '4' && event.altKey) {
source_address(state.info.page_url)
}
}
created:{ created:{
if(router.currentRoute.value.query.id =="" ||router.currentRoute.value.query.id==null|| router.currentRoute.value.query.id==undefined){ if(router.currentRoute.value.query.id =="" ||router.currentRoute.value.query.id==null|| router.currentRoute.value.query.id==undefined){
router.push({ path: '/product_info/list'}); router.push({ path: '/product_info/list'});
...@@ -286,10 +308,14 @@ created:{ ...@@ -286,10 +308,14 @@ created:{
state.query_id = router.currentRoute.value.query.id state.query_id = router.currentRoute.value.query.id
getProductAllocation() getProductAllocation()
} }
let height = window.innerHeight-70;
state.tableHeight = height+"px";
} }
onMounted(() => { onMounted(() => {
// fileContentExtraction() document.addEventListener('keydown',handleKeyDown)
});
onUnmounted(() => {
document.removeEventListener('keydown',handleKeyDown)
}); });
</script> </script>
......
<template>
<div class="system-role-dialog-container">
<el-dialog :title="state.dialog.title" v-model="state.dialog.isShowDialog" width="700px" @close="closeDialog" :close-on-click-modal="false">
<el-form ref="dialogFormRef" :model="state.ruleForm" :rules="state.rules" size="default" label-width="200px"
v-loading="state.dataLoading" label-position="right" style="width:100%">
<el-divider>模糊搜索条件</el-divider>
<el-form-item label="产品ID" prop="product_id">
<el-input v-model="state.ruleForm.product_id" placeholder="请输入产品ID" clearable></el-input>
</el-form-item>
<el-form-item label="产品名称" prop="product_name">
<el-input v-model="state.ruleForm.product_name" placeholder="请输入产品名称" clearable></el-input>
</el-form-item>
<el-form-item label="状态" prop="inspect_status">
<el-select v-model="state.ruleForm.inspect_status" filterable placeholder="请选择检查状态" size="default" style="width: 100%;">
<el-option v-for="(item, index) in state.verifyTypeList" :key="index" :label="item.name"
:value="item.value"></el-option>
</el-select>
</el-form-item>
</el-form>
<template #footer>
<span class="dialog-footer">
<el-button @click="closeDialog()" size="default">取 消</el-button>
<el-button type="primary" :loading="state.btnLoading" @click="onSubmit(dialogFormRef)"
size="default">确认</el-button>
</span>
</template>
</el-dialog>
</div>
</template>
<script setup name="systemRoleDialog">
import { ElMessage } from 'element-plus';
import { enterpriseApi } from '/@/api/enterpriseInfo'
import { Session } from '/@/utils/storage';
// 定义子组件向父组件传值/事件
// const emit = defineEmits(['refresh']);
const emits = defineEmits(['search-to-parent']);
// 定义变量内容
const dialogFormRef = ref();
const state = reactive({
taskId: null,
ruleForm: {
},
rules: {
},
dialog: {
isShowDialog: false,
title: '搜索条件',
submitTxt: '',
},
dataLoading: false,
btnLoading: false,
userList:[],
userId:'',
verifyTypeList:[
{name:'待分配',value:0},
{name:'检查完成',value:1},
{name:'检查中',value:'2'},
{name:'数据异常',value:'3'},
{name:'检查异常',value:'4'},
{name:'数据废弃',value:'5'}
],
enterpriseList:[
],
enterpriseId:'',
});
// 打开弹窗
const openDialog = () => {
state.dialog.isShowDialog = true;
state.dialog.title = '搜索条件';
};
// 关闭弹窗
const closeDialog = () => {
dialogFormRef.value.resetFields();
state.dialog.isShowDialog = false;
};
// 提交
const onSubmit = () => {
emits('search-to-parent', state.ruleForm);
// state.ruleForm = {};
};
// 暴露变量
defineExpose({
openDialog,
});
onMounted(() => {
});
</script>
<style scoped lang="scss"></style>
\ No newline at end of file
...@@ -13,6 +13,7 @@ ...@@ -13,6 +13,7 @@
</div> --> </div> -->
<!-- <el-button size="default" type="primary" @click="add()" >新增产品</el-button> <!-- <el-button size="default" type="primary" @click="add()" >新增产品</el-button>
<el-button size="default" type="primary" @click="distribute()" >产品分发</el-button> --> <el-button size="default" type="primary" @click="distribute()" >产品分发</el-button> -->
<!-- <el-button size="default" type="primary" @click="allocation()" >分配任务</el-button> -->
<el-button size="default" type="primary" @click="allocation()" >分配任务</el-button> <el-button size="default" type="primary" @click="allocation()" >分配任务</el-button>
</div> </div>
...@@ -48,7 +49,6 @@ ...@@ -48,7 +49,6 @@
</el-card> </el-card>
</div> </div>
<AddDialog ref="AddDialogRef" @refresh="getList()" /> <AddDialog ref="AddDialogRef" @refresh="getList()" />
<DistributeDialog ref="DistributeDialogRef" @refresh="getList()" />
<SetupDialog ref="SetupDialogRef" @refresh="getList()" /> <SetupDialog ref="SetupDialogRef" @refresh="getList()" />
<Search ref="SearchDialogRef" @search-to-parent="searchData" /> <Search ref="SearchDialogRef" @search-to-parent="searchData" />
</div> </div>
...@@ -64,13 +64,11 @@ import { Session } from '/@/utils/storage'; ...@@ -64,13 +64,11 @@ import { Session } from '/@/utils/storage';
const Breadcrumb = defineAsyncComponent(() => import('/@/layout/navBars/breadcrumb/breadcrumb.vue')); const Breadcrumb = defineAsyncComponent(() => import('/@/layout/navBars/breadcrumb/breadcrumb.vue'));
const SetupDialog = defineAsyncComponent(() => import('/@/views/product_info/list/setup.vue')); const SetupDialog = defineAsyncComponent(() => import('/@/views/product_info/list/setup.vue'));
const AddDialog = defineAsyncComponent(() => import('/@/views/product_info/list/add.vue')); const AddDialog = defineAsyncComponent(() => import('/@/views/product_info/list/add.vue'));
const DistributeDialog = defineAsyncComponent(() => import('/@/views/product_info/list/distribute.vue'));
const Toolbar = defineAsyncComponent(() => import('/@/components/RightToolbar/index.vue')); const Toolbar = defineAsyncComponent(() => import('/@/components/RightToolbar/index.vue'));
const Search = defineAsyncComponent(() => import('/@/views/product_info/list/search.vue')); const Search = defineAsyncComponent(() => import('/@/views/product_info/list/search.vue'));
// 定义变量内容 // 定义变量内容
const AddDialogRef = ref() const AddDialogRef = ref()
const DistributeDialogRef = ref()
const SetupDialogRef = ref() const SetupDialogRef = ref()
const SearchDialogRef = ref() const SearchDialogRef = ref()
......
...@@ -48,7 +48,6 @@ ...@@ -48,7 +48,6 @@
</el-card> </el-card>
</div> </div>
<AddDialog ref="AddDialogRef" @refresh="getList()" /> <AddDialog ref="AddDialogRef" @refresh="getList()" />
<DistributeDialog ref="DistributeDialogRef" @refresh="getList()" />
<SetupDialog ref="SetupDialogRef" @refresh="getList()" /> <SetupDialog ref="SetupDialogRef" @refresh="getList()" />
<Search ref="SearchDialogRef" @search-to-parent="searchData" /> <Search ref="SearchDialogRef" @search-to-parent="searchData" />
</div> </div>
...@@ -64,13 +63,11 @@ import { Session } from '/@/utils/storage'; ...@@ -64,13 +63,11 @@ import { Session } from '/@/utils/storage';
const Breadcrumb = defineAsyncComponent(() => import('/@/layout/navBars/breadcrumb/breadcrumb.vue')); const Breadcrumb = defineAsyncComponent(() => import('/@/layout/navBars/breadcrumb/breadcrumb.vue'));
const SetupDialog = defineAsyncComponent(() => import('/@/views/product_info/list/setup.vue')); const SetupDialog = defineAsyncComponent(() => import('/@/views/product_info/list/setup.vue'));
const AddDialog = defineAsyncComponent(() => import('/@/views/product_info/list/add.vue')); const AddDialog = defineAsyncComponent(() => import('/@/views/product_info/list/add.vue'));
const DistributeDialog = defineAsyncComponent(() => import('/@/views/product_info/list/distribute.vue'));
const Toolbar = defineAsyncComponent(() => import('/@/components/RightToolbar/index.vue')); const Toolbar = defineAsyncComponent(() => import('/@/components/RightToolbar/index.vue'));
const Search = defineAsyncComponent(() => import('/@/views/product_info/list/search.vue')); const Search = defineAsyncComponent(() => import('/@/views/product_info/list/search.vue'));
// 定义变量内容 // 定义变量内容
const AddDialogRef = ref() const AddDialogRef = ref()
const DistributeDialogRef = ref()
const SetupDialogRef = ref() const SetupDialogRef = ref()
const SearchDialogRef = ref() const SearchDialogRef = ref()
......
...@@ -35,7 +35,6 @@ ...@@ -35,7 +35,6 @@
</el-card> </el-card>
</div> </div>
<AddDialog ref="AddDialogRef" @refresh="getList()" /> <AddDialog ref="AddDialogRef" @refresh="getList()" />
<DistributeDialog ref="DistributeDialogRef" @refresh="getList()" />
</div> </div>
</template> </template>
...@@ -48,11 +47,9 @@ import { Session } from '/@/utils/storage'; ...@@ -48,11 +47,9 @@ import { Session } from '/@/utils/storage';
// 引入组件 // 引入组件
const Breadcrumb = defineAsyncComponent(() => import('/@/layout/navBars/breadcrumb/breadcrumb.vue')); const Breadcrumb = defineAsyncComponent(() => import('/@/layout/navBars/breadcrumb/breadcrumb.vue'));
const AddDialog = defineAsyncComponent(() => import('/@/views/task/list/add.vue')); const AddDialog = defineAsyncComponent(() => import('/@/views/task/list/add.vue'));
const DistributeDialog = defineAsyncComponent(() => import('/@/views/task/list/distribute.vue'));
// 定义变量内容 // 定义变量内容
const AddDialogRef = ref() const AddDialogRef = ref()
const DistributeDialogRef = ref()
const SearchDialogRef = ref() const SearchDialogRef = ref()
const state = reactive({ const state = reactive({
......
...@@ -37,7 +37,7 @@ const viteConfig = defineConfig((mode) => { ...@@ -37,7 +37,7 @@ const viteConfig = defineConfig((mode) => {
hmr: true, hmr: true,
proxy: { proxy: {
'/dev': { '/dev': {
target: 'http://gcspider.raisound.com:81/product_library_api', target: 'http://gcspider.raisound.com:81/element-plus-api_v1',
// target: 'http://192.168.10.168/smart-detection', // target: 'http://192.168.10.168/smart-detection',
ws: true, ws: true,
changeOrigin: true, changeOrigin: true,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment