eight
2024-09-12 904ffb487a6c2181a65feb925760108006b87a61
src/views/ecg/doctor/components/DevInstallPanel.vue
@@ -23,8 +23,9 @@
      </el-form-item>
    </el-form>
    <el-button @click="submitForm" type="primary" :disabled="formLoading">装机完成</el-button>
    <el-button @click="cancelInstall" type="primary" :disabled="formLoading">放弃装机</el-button>
    <el-button @click="resetForm()">重 置</el-button>
    <el-button @click="printBill()">打印小票</el-button>
    <el-button @click="cancelInstall"  :disabled="formLoading">放弃装机</el-button>
  <!-- 医生拆机列表 -->
@@ -46,7 +47,8 @@
          label="作业时间"
          align="center"
          prop="jobTime"
          :formatter="timeFormatter"
          :formatter="dateFormatter"
          width="180px"
      />
<!--      <el-table-column label="作业概要" align="center" prop="summary" />-->
      <el-table-column label="备注" align="center" prop="remark" />
@@ -242,6 +244,14 @@
  formData.value = await DevRentApi.getDevRent(rentId)
}
const printBill = async () => {
  ElNotification({
    title: '温馨提示',
    message: '待实现!',
    type: 'warning'
  })
}
/** 初始化 **/
onMounted(() => {
  getList()