From 76bd95ca79b03b84f6d011a81794aabcdeef169b Mon Sep 17 00:00:00 2001
From: yxh <172933527@qq.com>
Date: 星期二, 21 三月 2023 10:35:46 +0800
Subject: [PATCH] Merge branch 'master' of http://116.62.18.175:6699/r/~yxh/smartor-web

---
 ruoyi-ui/src/smartor/dataobject/dw_svytopicoption_list.vue |  128 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 128 insertions(+), 0 deletions(-)

diff --git a/ruoyi-ui/src/smartor/dataobject/dw_svytopicoption_list.vue b/ruoyi-ui/src/smartor/dataobject/dw_svytopicoption_list.vue
new file mode 100644
index 0000000..d5337f4
--- /dev/null
+++ b/ruoyi-ui/src/smartor/dataobject/dw_svytopicoption_list.vue
@@ -0,0 +1,128 @@
+<template>
+    <div class="app-container">
+       <el-row :gutter="10" class="mb8">
+        <el-col :span="1.5">
+          <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
+            v-hasPermi="['smartor:svytopicoption:add']">鏂板</el-button>
+        </el-col>
+        <el-col :span="1.5">
+          <el-button type="success" plain icon="el-icon-edit" size="mini" :disabled="single" @click="handleUpdate"
+            v-hasPermi="['smartor:svytopicoption:edit']">淇敼</el-button>
+        </el-col>
+        <el-col :span="1.5">
+          <el-button type="danger" plain icon="el-icon-delete" size="mini" :disabled="multiple" @click="handleDelete"
+            v-hasPermi="['smartor:svytopicoption:remove']">鍒犻櫎</el-button>
+        </el-col>
+        <el-col :span="1.5">
+          <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
+            v-hasPermi="['smartor:svytopicoption:export']">瀵煎嚭</el-button>
+        </el-col>
+        <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
+      </el-row>
+  
+      <el-table v-loading="loading" :data="svytopicoptionList" @selection-change="handleSelectionChange">
+        <el-table-column type="selection" width="55" align="center" />
+        <el-table-column label=" 棰樼洰绫诲瀷 " width="150" align="center" prop="topictype" />
+        <el-table-column label=" 閫夐」鍐呭 " width="200" align="center" prop="optioncontent" />
+        <el-table-column label=" 鎻愮ず " width="200" align="center" prop="prompt" />
+        <el-table-column label=" 鍒嗘暟 " width="55" align="center" prop="score" />
+        <el-table-column label=" 楠岃瘉瑙勫垯 " width="250" align="center" prop="verifyrule" />
+        <el-table-column label=" 鏄惁瀛樺湪鏄庣粏 " width="150" align="center" prop="isexistdetail" />
+        <el-table-column label=" 褰掑睘鏈烘瀯 " width="200" align="center" prop="orgid" />
+        <el-table-column label="鎿嶄綔" align="center" class-name="small-padding fixed-width">
+          <template slot-scope="scope">
+            <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
+              v-hasPermi="['smartor:svytopicoption:edit']">淇敼</el-button>
+            <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
+              v-hasPermi="['smartor:svytopicoption:remove']">鍒犻櫎</el-button>
+          </template>
+        </el-table-column>
+      </el-table>
+      <maintdlg ref="maint"/>
+    </div>
+  </template>
+  
+  <script>
+  import { listSvytopicoption, getSvytopicoption, delSvytopicoption, addSvytopicoption, updateSvytopicoption } from "@/api/smartor/svytopicoption";
+  import maintdlg from  "@/smartor/dataobject/dw_svytopicoption_maint.vue";
+  
+  export default {
+    name: "Svytopicoption",
+    data() {
+      return {
+        single: true,
+        // 闈炲涓鐢�
+        multiple: true,
+        // 鏄剧ず鎼滅储鏉′欢
+        showSearch: true,
+        loading : false,
+        showSearch: true,
+        // 鎬绘潯鏁�
+        total: 0,
+        // 闂嵎闂閫夐」琛ㄦ牸鏁版嵁
+        svytopicoptionList: [],
+         // 鏌ヨ鍙傛暟
+        queryParams: {
+          topicid: null
+        },
+      };
+    },
+    components:
+    {
+      maintdlg: maintdlg //()=>import("@/smartor/dataobject/dw_svytopicoption_maint")
+    },
+    created() {
+     },
+    mounted() {
+      
+    },
+    methods: {
+      /** 鏌ヨ闂嵎闂閫夐」鍒楄〃 */
+      getList(topicId) {
+        this.loading = true;
+        this.queryParams.topicid = topicId;
+        listSvytopicoption(this.queryParams).then(response => {
+          this.svytopicoptionList = response.rows;
+          this.total = response.total;
+          this.loading = false;
+        });
+      },
+      
+      // 澶氶�夋閫変腑鏁版嵁
+      handleSelectionChange(selection) {
+        this.ids = selection.map(item => item.optionid)
+        this.single = selection.length !== 1
+        this.multiple = !selection.length
+      },
+      /** 鏂板鎸夐挳鎿嶄綔 */
+      handleAdd() {
+        this.$refs["maint"].handleUpdate(null)
+        return
+      },
+      /** 淇敼鎸夐挳鎿嶄綔 */
+      handleUpdate(row) {
+        const optionid = row.optionid || this.ids
+        this.$refs["maint"].handleUpdate(optionid) 
+        return 
+      },
+      
+      /** 鍒犻櫎鎸夐挳鎿嶄綔 */
+      handleDelete(row) {
+        const optionids = row.optionid || this.ids;
+        this.$modal.confirm('鏄惁纭鍒犻櫎闂嵎闂閫夐」缂栧彿涓�"' + optionids + '"鐨勬暟鎹」锛�').then(function () {
+          return delSvytopicoption(optionids);
+        }).then(() => {
+          this.getList();
+          this.$modal.msgSuccess("鍒犻櫎鎴愬姛");
+        }).catch(() => { });
+      },
+      /** 瀵煎嚭鎸夐挳鎿嶄綔 */
+      handleExport() {
+        this.download('smartor/svytopicoption/export', {
+          ...this.queryParams
+        }, `svytopicoption_${new Date().getTime()}.xlsx`)
+      }
+    }
+  };
+  </script>
+  
\ No newline at end of file

--
Gitblit v1.9.3