From 37d2ba3d2c1902202c8c7ee9485267b5a1945742 Mon Sep 17 00:00:00 2001 From: WXL <1785969728@qq.com> Date: 星期三, 11 六月 2025 10:26:36 +0800 Subject: [PATCH] 测试完成 --- src/views/patient/propaganda/index.vue | 109 ++++++++++++++++++++++++++++++++++++++++-------------- 1 files changed, 81 insertions(+), 28 deletions(-) diff --git a/src/views/patient/propaganda/index.vue b/src/views/patient/propaganda/index.vue index 8b7a8cf..46575a2 100644 --- a/src/views/patient/propaganda/index.vue +++ b/src/views/patient/propaganda/index.vue @@ -51,6 +51,15 @@ </el-option> </el-select> </el-form-item> + <el-form-item label="鎮h�呰寖鍥�" prop="status"> + <el-cascader + v-model="topqueryParams.scopetype" + placeholder="榛樿鍏ㄩ儴" + :options="sourcetype" + :props="{ expandTrigger: 'hover' }" + @change="handleChange" + ></el-cascader> + </el-form-item> <el-form-item label="瀹f暀鐘舵��" prop="status"> <el-select v-model="topqueryParams.sendstate" placeholder="璇烽�夋嫨"> @@ -266,9 +275,7 @@ prop="endDay" > <template slot-scope="scope"> - <span>{{ - scope.row.endDay ? scope.row.endDay + "澶�" : "" - }}</span> + <span>{{ scope.row.endDay ? scope.row.endDay + "澶�" : "" }}</span> </template> </el-table-column> <el-table-column @@ -292,7 +299,6 @@ key="drname" prop="drname" /> - <!-- <el-table-column label="鐥呭巻鍙�" @@ -366,20 +372,28 @@ </template> </el-table-column> --> <el-table-column - fixed="right" + fixed="right" label="浠诲姟缁撴灉璁板綍" width="120" align="center" key="remark" prop="remark" > - <template slot-scope="scope" v-if="scope.row.remark"> - <el-tag type="success" v-if="scope.row.sendstate!=5&&scope.row.sendstate!=4&&scope.row.remark">{{ scope.row.remark }}</el-tag> - <el-tag type="warning" v-else>{{ scope.row.remark }}</el-tag> - </template> - </el-table-column> + <template slot-scope="scope" v-if="scope.row.remark"> + <el-tag + type="success" + v-if=" + scope.row.sendstate != 5 && + scope.row.sendstate != 4 && + scope.row.remark + " + >{{ scope.row.remark }}</el-tag + > + <el-tag type="warning" v-else>{{ scope.row.remark }}</el-tag> + </template> + </el-table-column> <el-table-column - fixed="right" + fixed="right" label="瀹f暀鏃堕棿" sortable align="center" @@ -597,6 +611,22 @@ ruleForm: { type: [], }, + sourcetype: [ + { + value: 1, + label: "绉戝", + children: [], + }, + { + value: 2, + label: "鐥呭尯", + children: [], + }, + { + value: 3, + label: "鍏ㄩ儴", + }, + ], dynamicTags: ["閫夐」涓�", "閫夐」浜�", "閫夐」涓�"], //閫夐」 inputVisible: false, inputValue: "", @@ -723,7 +753,7 @@ pageSize: 10, serviceType: 4, searchscope: 2, - sendstate:2, + sendstate: 2, }, propss: { multiple: true }, options: [], @@ -772,7 +802,18 @@ watch: {}, created() { this.serviceState = store.getters.serviceState; - console.log(this.serviceState,'this.serviceState'); + this.sourcetype[0].children = store.getters.belongDepts.map((dept) => { + return { + label: dept.deptName, + value: dept.deptCode, + }; + }); + this.sourcetype[1].children = store.getters.belongWards.map((dept) => { + return { + label: dept.districtName, + value: dept.districtCode, + }; + }); this.getList(); this.getConfigKey("sys.user.initPassword").then((response) => { @@ -791,16 +832,7 @@ methods: { /** 鏌ヨ闂ㄨ瘖瀹f暀鏈嶅姟鍒楄〃 */ getList() { - if (this.topqueryParams.searchscope == 1) { - this.topqueryParams.leaveldeptcodes = store.getters.belongDepts.map( - (obj) => obj.deptCode - ); - this.topqueryParams.leavehospitaldistrictcodes = []; - } else if (this.topqueryParams.searchscope == 2) { - this.topqueryParams.leavehospitaldistrictcodes = - store.getters.belongWards.map((obj) => obj.districtCode); - this.topqueryParams.leaveldeptcodes = []; - } else { + if (this.topqueryParams.searchscope == 3) { this.topqueryParams.leaveldeptcodes = store.getters.belongDepts.map( (obj) => obj.deptCode ); @@ -809,10 +841,13 @@ } this.loading = true; - if (this.topqueryParams.leavehospitaldistrictcodes[0]&&this.topqueryParams.leaveldeptcodes[0]) { - this.topqueryParams.deptOrDistrict=2; - }else{ - this.topqueryParams.deptOrDistrict=1; + if ( + this.topqueryParams.leavehospitaldistrictcodes[0] && + this.topqueryParams.leaveldeptcodes[0] + ) { + this.topqueryParams.deptOrDistrict = 2; + } else { + this.topqueryParams.deptOrDistrict = 1; } getTaskservelist(this.topqueryParams).then((response) => { this.userList = response.rows[0].serviceSubtaskList; @@ -841,6 +876,24 @@ }, 200); } else { this.options = []; + } + }, + // 鎮h�呰寖鍥村鐞� + handleChange(value) { + let type = value[0]; + let code = value.slice(-1)[0]; + this.topqueryParams.leavehospitaldistrictcodes = []; + this.topqueryParams.leaveldeptcodes = []; + if (type == 1) { + this.topqueryParams.leaveldeptcodes.push(code); + this.topqueryParams.leavehospitaldistrictcodes = []; + this.topqueryParams.searchscope = 1; + } else if (type == 2) { + this.topqueryParams.leavehospitaldistrictcodes.push(code); + this.topqueryParams.leaveldeptcodes = []; + this.topqueryParams.searchscope = 2; + } else { + this.topqueryParams.searchscope = 3; } }, // 闂ㄨ瘖瀹f暀鐘舵�佷慨鏀� @@ -912,7 +965,7 @@ pageNum: 1, pageSize: 10, serviceType: 4, - sendstate:2, + sendstate: 2, }; this.handleQuery(); }, -- Gitblit v1.9.3