吉安感知网项目-前端
罗广辉
2026-02-02 fd7c13ce580074ab32c9432a2d8b625e207d4bc5
Merge remote-tracking branch 'origin/master'
3 files modified
3 files added
49 ■■■■ changed files
applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue 14 ●●●● patch | view | raw | blame | history
applications/task-work-order/src/views/orderView/orderDataManage/evaluate/index.vue 1 ●●●● patch | view | raw | blame | history
uniapps/work-wx/src/pages/page/index.vue 34 ●●●● patch | view | raw | blame | history
uniapps/work-wx/src/static/images/lbt1.png patch | view | raw | blame | history
uniapps/work-wx/src/static/images/lbt2.png patch | view | raw | blame | history
uniapps/work-wx/src/static/images/lbt3.png patch | view | raw | blame | history
applications/task-work-order/src/views/orderView/orderDataManage/appInnovation/index.vue
@@ -87,7 +87,6 @@
</template>
<script setup>
import { Search, RefreshRight, Plus, Delete } from '@element-plus/icons-vue'
import { onMounted, ref, nextTick, provide } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { getDictionaryByCode } from '@/api/system/dictbiz'
import { getDictLabel } from '@ztzf/utils'
@@ -99,12 +98,14 @@
import { useStore } from 'vuex'
const store = useStore()
const userDepartment = store.state.user.userInfo?.dept_id
const permission = computed(() => store.state.user.permission);
// 初始化查询参数
const initSearchParams = () => ({
    caseName: '', // 案例名称
    innovationStatus: '', // 应用创新状态
    current: 1, // 当前页
    size: 10, // 每页大小
    isQueryAll:''//是否查询所有
})
const searchParams = ref(initSearchParams()) // 查询参数
const total = ref(0) // 总条数
@@ -129,7 +130,16 @@
async function getList() {
    loading.value = true
    try {
        const res = await gdApplicationInnovationPageApi(searchParams.value)
        // 根据权限设置查询参数
        const params = { ...searchParams.value }
        if (permission.value.yycx_shtg) {
            params.innovationStatus = '1'
            params.isQueryAll = true
        } else {
            params.isQueryAll = false
            delete params.innovationStatus
        }
        const res = await gdApplicationInnovationPageApi(params)
        res?.data?.data?.records.forEach(item => {
            item.isTheSameDepartment = String(item.createDept) === String(userDepartment)
        })
applications/task-work-order/src/views/orderView/orderDataManage/evaluate/index.vue
@@ -91,7 +91,6 @@
const store = useStore()
const userDepartment = store.state.user.userInfo?.dept_id
const permission = computed(() => store.state.user.permission);
console.log('ppppppp', permission.value.sjyy_shtg)
// 初始化查询参数
const initSearchParams = () => ({
    title: '', // 标题
uniapps/work-wx/src/pages/page/index.vue
@@ -78,7 +78,9 @@
<script setup>
  import { onMounted, reactive, ref } from 'vue'
  import lbPng from '@/static/images/lbt.png'
  import lbPng1 from '@/static/images/lbt1.png'
  import lbPng2 from '@/static/images/lbt2.png'
  import lbPng3 from '@/static/images/lbt3.png'
  import kyxxPng from '@/static/images/kyxx.png'
  import fxsqPng from '@/static/images/fxsq.png'
  import flfgPng from '@/static/images/flfg.png'
@@ -91,15 +93,31 @@
import { useAppStore } from "@/store";
const appStore = useAppStore()
const lbList = reactive([]);
// lbPng 轮播图 5次
for (let i = 0; i < 5; i++) {
  lbList.push({
    image: lbPng,
const lbList = reactive([
  {
    image: lbPng1,
    title: '法律政策',
    link: '/pages/legalPolicy/index',
  })
}
  },
  {
    image: lbPng2,
    title: '法律政策',
    link: '/pages/legalPolicy/index',
  },
  {
    image: lbPng3,
    title: '法律政策',
    link: '/pages/legalPolicy/index',
  },
]);
// lbPng 轮播图 5次
// for (let i = 0; i < 5; i++) {
//   lbList.push({
//     image: lbPng,
//     title: '法律政策',
//     link: '/pages/legalPolicy/index',
//   })
// }
// const change = (index) => {
//   console.log('轮播图切换到第', index + 1, '张');
uniapps/work-wx/src/static/images/lbt1.png
uniapps/work-wx/src/static/images/lbt2.png
uniapps/work-wx/src/static/images/lbt3.png