话术
This commit is contained in:
parent
7335eb6769
commit
6b502160c7
@ -190,6 +190,22 @@
|
|||||||
@click="handlesee(scope.row)"
|
@click="handlesee(scope.row)"
|
||||||
>预览</el-button
|
>预览</el-button
|
||||||
>
|
>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-search"
|
||||||
|
@click="see(scope.row)"
|
||||||
|
>话术</el-button
|
||||||
|
>
|
||||||
|
<el-button
|
||||||
|
size="mini"
|
||||||
|
type="text"
|
||||||
|
icon="el-icon-search"
|
||||||
|
@click="seescript(scope.row)"
|
||||||
|
>话术预览</el-button
|
||||||
|
>
|
||||||
|
|
||||||
|
|
||||||
<el-button
|
<el-button
|
||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
@ -536,10 +552,11 @@
|
|||||||
</el-dialog>
|
</el-dialog>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { listScript, getScript, delScript, addScript, updateScript, departmentDisease, department, listDisease, listScriptNum } from "@/api/manage/script";
|
import { listScript, getScript, delScript, addScript, updateScript, departmentDisease, department, listDisease, listScriptNum } from "@/api/manage/script";
|
||||||
import stationAcatar from "../../system/stationAvatar/index.vue";
|
import stationAcatar from "../../system/stationAvatar/index.vue";
|
||||||
|
import Cookies from 'js-cookie'
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: { stationAcatar },
|
components: { stationAcatar },
|
||||||
name: "Script",
|
name: "Script",
|
||||||
@ -553,11 +570,6 @@ export default {
|
|||||||
departmentId: null,
|
departmentId: null,
|
||||||
count: '',//全部
|
count: '',//全部
|
||||||
sumcount: '',
|
sumcount: '',
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
innerVisibleshow: false, //科室弹框
|
innerVisibleshow: false, //科室弹框
|
||||||
// 科室
|
// 科室
|
||||||
informationqueryParams: {
|
informationqueryParams: {
|
||||||
@ -769,6 +781,26 @@ export default {
|
|||||||
imgUrl(imgUrl) {
|
imgUrl(imgUrl) {
|
||||||
this.form.scriptFilePath = imgUrl;
|
this.form.scriptFilePath = imgUrl;
|
||||||
},
|
},
|
||||||
|
// 话术
|
||||||
|
see(row){
|
||||||
|
Cookies.set("id",row.id)
|
||||||
|
this.$router.push({
|
||||||
|
path: "/knowledge/preview",
|
||||||
|
query: {
|
||||||
|
id: row.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
seescript(row){
|
||||||
|
this.$router.push({
|
||||||
|
path: "/knowledge/Scriptpreview",
|
||||||
|
query: {
|
||||||
|
id: row.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
// 预览点击
|
// 预览点击
|
||||||
handlesee(row) {
|
handlesee(row) {
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user